Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- source 'https://rubygems.org'
- # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
- gem 'rails', '5.0.2'
- # Use Puma as the app server
- gem 'puma', '3.8.1'
- # Use SCSS for stylesheets
- gem 'sass-rails', '5.0.6'
- # Use Uglifier as compressor for JavaScript assets
- gem 'uglifier', '3.1.7'
- # Use CoffeeScript for .coffee assets and views
- gem 'coffee-rails', '4.2.1'
- # See https://github.com/rails/execjs#readme for more supported runtimes
- #gem 'therubyracer', platforms: :ruby
- gem 'coffee-script-source', '1.12.2'
- # Use jquery as the JavaScript library
- gem 'jquery-rails', '4.2.2'
- # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
- gem 'turbolinks', '5.0.1'
- # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
- gem 'jbuilder', '2.6.3'
- # Use Redis adapter to run Action Cable in production
- # gem 'redis', '~> 3.0'
- # Twitter Bootstrap
- gem 'bootstrap-sass', '3.3.7'
- # To display pretty charts and graphs, using Google Charts
- gem 'chartkick', '2.2.4'
- # Used for the dynamic forms:
- gem 'simple_form', '3.4.0'
- gem 'cocoon', '1.2.9'
- gem 'bindex', '0.5.0'
- gem 'devise', '4.2.1'
- gem 'cancancan', '2.0.0'
- # Use ActiveModel has_secure_password
- gem 'bcrypt', '3.1.11'
- group :development, :test do
- # Use sqlite3 as the database for Active Record
- gem 'sqlite3'
- # Call 'byebug' anywhere in the code to stop execution and get a debugger console
- gem 'byebug', platform: :mri
- end
- group :development do
- # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
- gem 'web-console', '>= 3.3.0'
- gem 'listen', '3.0.8'
- gem 'spring', '2.0.0'
- gem 'spring-watcher-listen', '2.0.1'
- end
- group :production do
- gem 'pg', '0.18.4'
- end
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
- gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement