mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
17 lines
302 B
Ruby
Executable File
17 lines
302 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# frozen_string_literal: true
|
|
|
|
require "irb"
|
|
require "irb/completion"
|
|
|
|
require "#{::File.dirname(__FILE__)}/../lib/stripe"
|
|
|
|
# Config IRB to enable --simple-prompt and auto indent
|
|
IRB.conf[:PROMPT_MODE] = :SIMPLE
|
|
IRB.conf[:AUTO_INDENT] = true
|
|
|
|
puts "Loaded gem 'stripe'"
|
|
|
|
IRB.start
|