public
Fork of wycats/merb-core
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/auser/merb-core.git
Search Repo:
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