Created
January 12, 2017 16:34
-
-
Save trevorturk/9b74f03ea149a807493b29769a0bffeb to your computer and use it in GitHub Desktop.
Single page Rails 5 app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gem install bundler | |
# ruby hello_world.rb | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'rails', '~> 5.0' | |
end | |
require 'action_controller/railtie' | |
class HelloWorld < Rails::Application | |
routes.append do | |
root to: 'hello#world' | |
end | |
config.secret_key_base = SecureRandom.hex(30) | |
config.eager_load = false | |
config.logger = Logger.new(STDOUT) | |
end | |
class HelloController < ActionController::Base | |
def world | |
render plain: 'Hello, World!' | |
end | |
end | |
HelloWorld.initialize! | |
Rack::Server.start app: HelloWorld |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment