Skip to content

Instantly share code, notes, and snippets.

@Yorkshireman
Last active June 16, 2016 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yorkshireman/551e4c04619650ec7adab64411747f29 to your computer and use it in GitHub Desktop.
Save Yorkshireman/551e4c04619650ec7adab64411747f29 to your computer and use it in GitHub Desktop.
Basic Sinatra starter Gemfile
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