2016-01-12 18:43:00 -06:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
|
|
gem 'rails', '4.2.5'
|
|
|
|
gem 'sqlite3'
|
2016-01-18 20:50:19 -06:00
|
|
|
gem 'mysql2', '~> 0.3.18'
|
2016-01-12 18:43:00 -06:00
|
|
|
gem 'sass-rails', '~> 5.0'
|
|
|
|
gem 'uglifier', '>= 1.3.0'
|
|
|
|
|
|
|
|
# See https://github.com/rails/execjs#readme for more supported runtimes
|
|
|
|
gem 'therubyracer', platforms: :ruby
|
|
|
|
|
|
|
|
# Use jquery as the JavaScript library
|
|
|
|
gem 'jquery-rails'
|
|
|
|
gem 'bootstrap-sass', '~> 3.3.6'
|
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
|
|
gem 'turbolinks'
|
|
|
|
gem 'jbuilder', '~> 2.0'
|
2016-01-13 17:10:43 -06:00
|
|
|
gem 'cocoon', '~> 1.2.6'
|
2016-01-14 15:22:15 -06:00
|
|
|
gem 'unitwise', '~> 2.0.0'
|
2016-01-12 18:43:00 -06:00
|
|
|
|
|
|
|
# Use ActiveModel has_secure_password
|
2016-01-19 16:50:39 -06:00
|
|
|
gem 'bcrypt', '~> 3.1.7'
|
2016-01-12 18:43:00 -06:00
|
|
|
|
2016-01-22 17:46:28 -06:00
|
|
|
gem 'usda-nutrient-database', path: '/Users/delbert/Development/usda-nutrient-database-fork'
|
|
|
|
|
2016-01-12 18:43:00 -06:00
|
|
|
# Use Unicorn as the app server
|
|
|
|
# gem 'unicorn'
|
|
|
|
|
|
|
|
# Use Capistrano for deployment
|
|
|
|
# gem 'capistrano-rails', group: :development
|
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
|
|
|
|
gem 'rspec-rails', '~> 3.4.0'
|
|
|
|
gem 'factory_girl_rails', '~> 4.5.0'
|
|
|
|
gem 'database_cleaner', '~> 1.5.1'
|
|
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
|
|
gem 'byebug'
|
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
|
|
|
gem 'web-console', '~> 2.0'
|
|
|
|
end
|
|
|
|
|