parsley/Gemfile

49 lines
1.3 KiB
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2016-03-09 11:51:27 -06:00
gem 'rails', '4.2.6'
2016-01-12 18:43:00 -06:00
gem 'sqlite3'
2016-01-18 20:50:19 -06:00
gem 'mysql2', '~> 0.3.18'
2016-07-06 16:25:17 -05:00
gem 'pg', '~> 0.18.4'
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
2016-03-09 11:51:27 -06:00
gem 'jquery-rails', '~> 4.1.0'
2016-01-12 18:43:00 -06:00
gem 'bootstrap-sass', '~> 3.3.6'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
2016-03-09 11:51:27 -06:00
gem 'turbolinks', '~> 2.5.3'
gem 'jbuilder', '~> 2.4'
gem 'cocoon', '~> 1.2.8'
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-03-09 11:51:27 -06:00
gem 'bcrypt', '~> 3.1.11'
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 'guard', '~> 2.13.0'
gem 'guard-rspec', require: false
2016-01-12 18:43:00 -06:00
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