Created
January 31, 2018 08:57
-
-
Save miyucy/7a62ee8f397dfe3106144277f157423a to your computer and use it in GitHub Desktop.
サンプル
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
ENV['RACK_ENV'] ||= 'development' | |
require 'bundler' | |
Bundler.require 'default', ENV['RACK_ENV'] | |
class App < Sinatra::Base | |
end |
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
require_relative 'app' | |
run 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
source 'https://rubygems.org' | |
ruby '2.5.0' | |
gem 'puma' | |
gem 'rack' | |
gem 'sinatra', require: 'sinatra/base' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment