Sha256: a76efc929c88a580156cf68de4b4636ce93eb8ec634743df197617911aacd49c
Contents?: true
Size: 576 Bytes
Versions: 12
Compression:
Stored size: 576 Bytes
Contents
#!/usr/bin/env ruby # Use this file directly like `ruby start.rb` if you don't want to use the # `ramaze start` command. # # All application related things should go into `app.rb`, this file is simply # for options related to running the application locally. # # You can run this file as following: # # $ ruby start.rb # $ ./start.rb # # If you want to be able to do the latter you'll have to make sure the file can be # executed: # # $ chmod +x ./start.rb require File.expand_path('../app', __FILE__) Ramaze.start(:adapter => :webrick, :port => 7000, :file => __FILE__)
Version data entries
12 entries across 8 versions & 1 rubygems