|
Revision 17708, 437 bytes
(checked in by frsyuki, 5 years ago)
|
|
lang/c/msgpack: added Messagepack, a binary-based efficient data interchange format.
|
-
Property svn:executable set to
*
|
| Rev | Line | |
|---|
| [17708] | 1 | #!/usr/bin/env ruby |
|---|
| 2 | # File: script/console |
|---|
| 3 | irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb' |
|---|
| 4 | |
|---|
| 5 | libs = " -r irb/completion" |
|---|
| 6 | # Perhaps use a console_lib to store any extra methods I may want available in the cosole |
|---|
| 7 | # libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}" |
|---|
| 8 | libs << " -r #{File.dirname(__FILE__) + '/../lib/msgpack.rb'}" |
|---|
| 9 | puts "Loading msgpack gem" |
|---|
| 10 | exec "#{irb} #{libs} --simple-prompt" |
|---|