public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
jherdman (author)
Tue Mar 25 07:01:50 -0700 2008
michaelklishin (committer)
Thu May 01 22:48:28 -0700 2008
commit  92dcf722b7e34f8562340b42ed9ada44201fea91
tree    67e69491ab02bf98b34347df1c0609c48736f106
parent  63aac504c23418b4c63f9f35b241061a256f0feb
merb-core / bin / merb
100755 9 lines (6 sloc) 0.174 kb
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby
require "merb-core"
 
unless %w[-a --adapter -i --irb-console -r --script-runner].any? { |o| ARGV.index(o) }
  ARGV.push *%w[-a mongrel]
end
  
Merb.start