mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
10 lines
428 B
Text
10 lines
428 B
Text
|
#!/usr/bin/env ruby
|
||
|
# File: script/console
|
||
|
irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
|
||
|
|
||
|
libs = " -r irb/completion"
|
||
|
# Perhaps use a console_lib to store any extra methods I may want available in the cosole
|
||
|
# libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
|
||
|
libs << " -r #{File.dirname(__FILE__) + '/../lib/web.rb'}"
|
||
|
puts "Loading web gem"
|
||
|
exec "#{irb} #{libs} --simple-prompt"
|