Created
September 11, 2014 18:58
-
-
Save natchiketa/cefbc5df05c0d945013a to your computer and use it in GitHub Desktop.
Rails 4 Gemfile example
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.1.2' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
| gem 'rails', '4.1.1' | |
| # Use postgresql as the database for Active Record | |
| gem 'pg' | |
| # Use HAML for templates | |
| gem 'haml-rails' | |
| # Use SCSS for stylesheets | |
| gem 'sass-rails', '~> 4.0.3' | |
| # 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' | |
| # See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
| # gem 'therubyracer', platforms: :ruby | |
| # 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', '~> 2.0' | |
| # bundle exec rake doc:rails generates the API under doc/api. | |
| gem 'sdoc', '~> 0.4.0', group: :doc | |
| # Use unicorn as the app server | |
| gem 'unicorn' | |
| group :development do | |
| gem 'foreman' | |
| gem 'rails-erd' | |
| gem 'fontcustom', '~> 1.3.3' | |
| end | |
| group :development, :test do | |
| gem 'spring' | |
| gem 'minitest' # required to get rspec working with Rails 4.1 | |
| gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger' | |
| gem 'pry-byebug' # This may or may not work with 2.1.2 either, so remove if you still get errorrs | |
| gem "awesome_print" | |
| gem 'rspec-rails', '~> 2.0' | |
| gem 'factory_girl_rails', '>= 4.2.0' | |
| gem 'capybara' | |
| gem 'selenium-webdriver' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment