parsley/Gemfile

39 lines
810 B
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
source 'https://rubygems.org'
gem 'rails', '5.0.2'
2016-01-12 18:43:00 -06:00
gem 'sqlite3'
gem 'pg', '~> 0.20.0'
2016-01-12 18:43:00 -06:00
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
2016-10-14 12:19:00 -05:00
gem 'puma'
2016-01-12 18:43:00 -06:00
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3.1'
gem 'bootstrap-sass', '~> 3.3.7'
gem 'kaminari', '~> 1.0.1'
gem 'turbolinks', '~> 5.0.1'
gem 'jbuilder', '~> 2.6'
2016-07-07 17:47:47 -05:00
gem 'cocoon', '~> 1.2.9'
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
group :development, :test do
2016-07-07 17:47:47 -05:00
gem 'guard', '~> 2.14.0'
gem 'guard-rspec', require: false
2016-07-07 17:47:47 -05:00
gem 'rspec-rails', '~> 3.5.0'
2016-10-14 12:19:00 -05:00
gem 'rails-controller-testing'
2017-04-13 12:08:29 -05:00
gem 'factory_girl_rails', '~> 4.8.0'
2016-07-07 17:47:47 -05:00
gem 'database_cleaner', '~> 1.5.3'
2016-01-12 18:43:00 -06:00
end
2017-04-13 12:08:29 -05:00
2016-01-12 18:43:00 -06:00