Files

113 lines
2.7 KiB
Ruby
Raw Permalink Normal View History

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
2017-04-13 17:16:03 +02:00
# Integrate Paperclip into Mongoid.
2017-10-18 23:32:28 +02:00
gem 'mongoid-paperclip'
2017-11-12 13:27:10 +01:00
# Markdown rendering
gem 'redcarpet'
2017-10-18 23:32:28 +02:00
# Stripe integration
gem 'stripe'
2017-04-13 17:16:03 +02:00
2017-11-10 12:18:05 +01:00
# Render your navigation as HTML list, link list or breadcrumbs.
gem 'simple-navigation'
2017-04-13 17:16:03 +02:00
# To extend paperclip with locales
gem 'paperclip-i18n'
# Amazon's S3 file hosting service
2017-10-07 20:29:58 +02:00
gem 'aws-sdk', '< 3.0' # see https://github.com/thoughtbot/paperclip/issues/2484
2017-04-13 17:16:03 +02:00
# A fixtures replacement
gem 'factory_girl'
2017-05-20 15:24:44 +02:00
# It's a small library to provide the Rails I18n translations on the JavaScript.
gem "i18n-js"
2015-10-02 21:05:03 +02:00
# 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
# Kaminari Mongoid adapter.
gem 'kaminari-mongoid'
2017-04-03 08:13:06 +02:00
gem 'kaminari-actionview'
2017-04-11 08:06:32 +02:00
# Translate routing
gem 'route_translator'
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