2015-10-02 21:05:03 +02:00
|
|
|
source 'https://rubygems.org'
|
2017-03-28 00:37:39 +02:00
|
|
|
ruby '2.3.1'
|
2015-10-02 21:05:03 +02:00
|
|
|
# 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'
|
2017-03-31 14:42:37 +02:00
|
|
|
|
2015-10-02 21:05:03 +02:00
|
|
|
# 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-28 00:25:41 +02:00
|
|
|
# Easily generate a Twitter Bootstrap navbar in your Rails app
|
2017-03-22 22:57:01 +01:00
|
|
|
gem 'rails_bootstrap_navbar'
|
|
|
|
|
|
2017-03-28 00:25:41 +02:00
|
|
|
# Kaminari Mongoid adapter.
|
|
|
|
|
gem 'kaminari-mongoid'
|
2017-04-03 08:13:06 +02:00
|
|
|
gem 'kaminari-actionview'
|
|
|
|
|
|
2017-03-25 18:21:58 +01:00
|
|
|
# This gem hooks up your Rails application with Roadie to help you generate HTML emails.
|
|
|
|
|
gem 'roadie-rails', '~> 1.0'
|
|
|
|
|
|
2017-03-28 01:14:45 +02:00
|
|
|
# Devise is a flexible authentication solution for Rails based on Warden.
|
|
|
|
|
gem 'devise'
|
|
|
|
|
|
2017-03-31 14:42:37 +02:00
|
|
|
# Translations for devise
|
|
|
|
|
gem 'devise-i18n'
|
|
|
|
|
|
|
|
|
|
# Simulate data
|
|
|
|
|
gem 'faker'
|
|
|
|
|
|
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'
|
|
|
|
|
|
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
|
2017-04-10 20:36:41 +02:00
|
|
|
# A series of things you can use to benchmark a Rails or Ruby app.
|
|
|
|
|
gem 'derailed_benchmarks'
|
|
|
|
|
|
|
|
|
|
# To use all profiling methods available
|
|
|
|
|
gem 'stackprof'
|
|
|
|
|
|
2015-10-02 21:05:03 +02:00
|
|
|
# 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
|