Sha256: 3e859b0a63077cc0fc44abe5d462ca8fc1dd0ec8091f89924d7f059c8d4ebaf6
Contents?: true
Size: 466 Bytes
Versions: 3
Compression:
Stored size: 466 Bytes
Contents
#!/usr/bin/env ruby begin # Just in case the bundle was locked # This shouldn't happen in a dev environment but lets be safe require File.expand_path('.bundle/environment', __FILE__) rescue LoadError require 'rubygems' require 'bundler' Bundler.setup end require 'merb-core' ARGV.push '-H' if ARGV[0] && ARGV[0] =~ /^[^-]/ unless %w[-a --adapter -i --irb-console -r --script-runner].any? { |o| ARGV.index(o) } ARGV.push *%w[-a thin] end Merb.start
Version data entries
3 entries across 3 versions & 1 rubygems