github.com/walf443/mgr@v0.0.0-20150203144449-6f7a3a548462/cli/railssample/Gemfile (about)

     1  source 'https://rubygems.org'
     2  
     3  
     4  # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
     5  gem 'rails', '4.2.0'
     6  # Use sqlite3 as the database for Active Record
     7  gem 'sqlite3'
     8  # Use SCSS for stylesheets
     9  gem 'sass-rails', '~> 5.0'
    10  # Use Uglifier as compressor for JavaScript assets
    11  gem 'uglifier', '>= 1.3.0'
    12  # Use CoffeeScript for .coffee assets and views
    13  gem 'coffee-rails', '~> 4.1.0'
    14  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
    15  # gem 'therubyracer', platforms: :ruby
    16  
    17  # Use jquery as the JavaScript library
    18  gem 'jquery-rails'
    19  # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
    20  gem 'turbolinks'
    21  # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
    22  gem 'jbuilder', '~> 2.0'
    23  # bundle exec rake doc:rails generates the API under doc/api.
    24  gem 'sdoc', '~> 0.4.0', group: :doc
    25  
    26  # Use ActiveModel has_secure_password
    27  # gem 'bcrypt', '~> 3.1.7'
    28  
    29  # Use Unicorn as the app server
    30  # gem 'unicorn'
    31  
    32  # Use Capistrano for deployment
    33  # gem 'capistrano-rails', group: :development
    34  
    35  group :development, :test do
    36    # Call 'byebug' anywhere in the code to stop execution and get a debugger console
    37    gem 'byebug'
    38  
    39    # Access an IRB console on exception pages or by using <%= console %> in views
    40    gem 'web-console', '~> 2.0'
    41  
    42    # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
    43    gem 'spring'
    44  end
    45