Skip to content

Instantly share code, notes, and snippets.

@jasontorres
Last active December 22, 2015 00:19
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 jasontorres/6388104 to your computer and use it in GitHub Desktop.
Save jasontorres/6388104 to your computer and use it in GitHub Desktop.
Rails 4 Designers Gemfile
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
# ruby '1.9.3'
gem 'rails', '4.0.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# Use debugger
# gem 'debugger', group: [:development, :test]
# Use SQLITE3
gem 'sqlite3'
gem 'devise', '3.1.0.rc2'
gem 'haml-rails'
gem 'less-rails'
gem 'therubyracer', :platform=>:ruby
gem 'bootstrap-on-rails'
gem 'carrierwave'
group :development do
gem 'html2haml'
gem 'thin'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'selenium-webdriver'
gem 'cucumber-rails', :require=>false
gem 'database_cleaner', '1.0.1'
gem 'email_spec'
gem 'launchy'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment