41 lines
1003 B
Ruby
41 lines
1003 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'rails', '5.0.0'
|
|
gem 'sqlite3'
|
|
gem 'pg', '~> 0.18.4'
|
|
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', '~> 4.1.1'
|
|
gem 'bootstrap-sass', '~> 3.3.6'
|
|
gem 'kaminari', '~> 0.17.0'
|
|
gem 'turbolinks', '~> 5.0.0'
|
|
gem 'jbuilder', '~> 2.5'
|
|
gem 'cocoon', '~> 1.2.9'
|
|
gem 'unitwise', '~> 2.0.0'
|
|
|
|
# Use ActiveModel has_secure_password
|
|
gem 'bcrypt', '~> 3.1.11'
|
|
|
|
|
|
group :development, :test do
|
|
|
|
gem 'guard', '~> 2.14.0'
|
|
gem 'guard-rspec', require: false
|
|
gem 'rspec-rails', '~> 3.5.0'
|
|
gem 'factory_girl_rails', '~> 4.7.0'
|
|
gem 'database_cleaner', '~> 1.5.3'
|
|
# 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', '~> 3.3.1'
|
|
end
|
|
|