Last active
June 16, 2016 11:26
-
-
Save Yorkshireman/551e4c04619650ec7adab64411747f29 to your computer and use it in GitHub Desktop.
Basic Sinatra starter Gemfile
This file contains hidden or 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.3.1' | |
gem 'sinatra' | |
group :development, :test do | |
gem 'byebug' | |
end | |
group :test do | |
gem 'rspec' | |
gem 'guard-rspec', require: false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment