mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-15 00:00:44 -04:00
15 lines
268 B
Ruby
Executable File
15 lines
268 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
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 "Loading stripe gem"
|
|
|
|
IRB.start
|