Skip to content

Instantly share code, notes, and snippets.

@paulmars
Created April 8, 2015 23:25
Show Gist options
  • Select an option

  • Save paulmars/7b9f79bf93f46a58e7da to your computer and use it in GitHub Desktop.

Select an option

Save paulmars/7b9f79bf93f46a58e7da to your computer and use it in GitHub Desktop.
rails basics
source 'https://rubygems.org'
ruby '2.1.4'
gem 'rails', '4.2.1'
gem 'sqlite3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'aws-sdk', '~> 2'
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment