Sha256: 5d594c287f3e63ff5ea4dab74d2fb36d0a52518c58d12863be783d05ddce8109

Contents?: true

Size: 742 Bytes

Versions: 82

Compression:

Stored size: 742 Bytes

Contents

#!/usr/bin/env ruby
                                                               
require 'rubygems'
require 'merb-core'

# this is Merb.root, change this if you have some funky setup.
merb_root = File.expand_path(File.dirname(__FILE__) / '../')
        
# If the fcgi process runs as apache, make sure
# we have an inlinedir set for Rubyinline action-args to work
unless ENV["INLINEDIR"] || ENV["HOME"]
  tmpdir = merb_root / "tmp"
  unless File.directory?(tmpdir)
    Dir.mkdir(tmpdir)
  end                
  ENV["INLINEDIR"] = tmpdir
end
   
# start merb with the fcgi adapter, add options or change the log dir here
Merb.start(:adapter => 'fcgi',
           :merb_root => merb_root,
           :log_file => merb_root /'log'/'merb.log')

Version data entries

82 entries across 52 versions & 6 rubygems

Version Path
merb-gen-1.0.9 lib/generators/templates/application/merb_core/public/merb.fcgi
thorero-gen-0.9.4 templates/application/merb/public/merb.fcgi