Files
ch420/Gemfile
T

69 lines
1.8 KiB
Ruby
Raw Normal View History

2015-10-02 21:05:03 +02:00
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2016-03-27 11:03:33 +02:00
gem 'rails', '~> 4.2'
2015-10-02 21:05:03 +02:00
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.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'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
2017-03-22 22:57:01 +01:00
gem 'rails_bootstrap_navbar'
2015-10-02 21:05:03 +02:00
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
2015-10-02 21:10:17 +02:00
gem 'mongoid', '~> 5.0.0'
2015-10-03 06:38:11 +02:00
gem 'bootstrap-sass', '~> 3.3.5'
2015-10-02 21:12:03 +02:00
gem 'slim'
gem 'slim-rails'
2015-10-05 12:40:08 +02:00
gem 'simple_form'
gem 'capybara'
gem 'rails-i18n'
2015-10-05 16:42:27 +02:00
gem 'puma'
2015-10-06 13:07:01 +02:00
gem 'geocoder'
2015-10-19 10:44:37 +02:00
gem 'rails_12factor'
2015-10-02 21:12:03 +02:00
2016-11-15 10:05:53 +01:00
2016-04-22 11:10:40 +02:00
gem 'rails_admin'
gem 'mongoid_paranoia'
2016-04-25 12:07:53 +02:00
gem 'mailchimp-api', require: 'mailchimp'
2015-10-02 21:05:03 +02:00
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
2015-10-02 22:03:51 +02:00
gem 'mongoid-rspec', '3.0.0'
2015-10-02 21:36:46 +02:00
gem 'rspec-rails', '~> 3.0'
2015-10-06 09:16:07 +02:00
gem 'pry-rails'
2016-11-15 10:05:53 +01:00
gem 'dotenv-rails'
2015-10-02 21:05:03 +02:00
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
2016-04-25 12:07:53 +02:00
# gem 'spring'
2015-10-02 21:05:03 +02:00
end