Sha256: a385e5483014a8063c0ddd6b4e5d71c06c6e6a3fcbd8e5421416e978268b43f9
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
#!/usr/bin/env ruby # encoding: utf-8 # irb = 'irb' require 'optparse' options = { :sandbox => false, :irb => irb } OptionParser.new do |opt| opt.banner = "Usage: console [environment] [options]" opt.on("--irb=[#{irb}]", 'Invoke a different irb.') { |v| options[:irb] = v } opt.parse!(ARGV) end libs = " -r irb/completion" libs << %( -r "picky" ) ENV['PICKY_ENV'] = case ARGV.first when "p"; "production" when "d"; "development" when "t"; "test" else ARGV.first || ENV['PICKY_ENV'] || 'development' end puts "Use \x1b[1;30mLoader.load_application\x1b[m to load app." puts "Use \x1b[1;30mIndexes.load_from_cache\x1b[m after that to load indexes." puts "Copy the following line to do just that:" puts "\x1b[1;30mLoader.load_application; Indexes.load_from_cache; nil\x1b[m" puts "" puts "Now you can for example create a query instance." puts "\x1b[1;30mfull_books = Query::Full.new(Indexes[:books]); nil\x1b[m" puts "and search on it" puts "\x1b[1;30mfull_books.search_with_text 'bla'\x1b[m" exec "#{options[:irb]} #{libs} --simple-prompt"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
picky-0.0.8 | prototype_project/script/console |
picky-0.0.7 | prototype_project/script/console |
picky-0.0.6 | prototype_project/script/console |