Created
January 24, 2017 17:18
-
-
Save datanoise/a5552e9accfa62e318ce8e6fc0370cb8 to your computer and use it in GitHub Desktop.
This file contains 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' | |
gem 'rails', '5.0.1' | |
gem 'mysql2' | |
gem 'bcrypt' | |
gem 'jbuilder' | |
gem 'progress' | |
gem 'prawn' | |
gem 'prawn-table' | |
gem 'prawn-svg' | |
gem 'axlsx' | |
gem 'exception_notification' | |
gem 'systemu' | |
gem 'chunky_png' | |
gem 'barby' | |
gem 'thor', '0.19.1' | |
gem 'gpx' | |
# locked version number to avoid DEPRECATION warning. | |
# if we need to upgrade rake, we have to upgrade rspec as well | |
gem 'rake', '= 10.5.0' | |
group :development do | |
gem 'execjs', '1.4.0' | |
gem 'puma' | |
gem 'wdm', '>= 0.1.0', platforms: [:mingw, :mswin, :x64_mingw] | |
# 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.5' | |
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | |
gem 'byebug', platform: :mri | |
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
gem 'spring' | |
gem 'spring-watcher-listen', '~> 2.0.0' | |
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | |
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | |
end | |
group :test, :development do | |
gem 'pry' | |
gem 'pry-doc' | |
gem 'pry-rails' | |
gem 'pry-nav' | |
gem 'rspec-rails', '= 2.14.2' | |
gem 'test-unit' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment