1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/Gemfile

114 lines
2.2 KiB
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.1'
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.1'
gem 'compass-rails', '2.0.4'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# 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
gem 'forgery'
gem 'responders', '~> 2.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# 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
gem 'spring'
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'spring-commands-rspec'
gem 'guard-rspec', require: false
end
group :development do
# Preview mail in the browser
gem 'letter_opener'
gem 'awesome_print'
gem "puma"
gem 'foreman'
gem 'capistrano'
gem 'rvm-capistrano', require: false
gem 'capistrano-sidekiq', require: false
end
group :test do
gem 'database_cleaner'
gem 'faker'
end
group :production do
gem 'unicorn'
gem 'rails_12factor'
end
gem 'seed_dump'
gem 'pg'
gem 'devise'
gem 'devise-async'
gem 'rolify'
gem 'kaminari'
gem 'figaro'
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'angularjs-rails'
# Image processing ruby wrapper for ImageMagick
gem 'mini_magick'
# upload files
gem 'carrierwave'
gem 'twitter'
gem 'twitter-text'
# slug url
gem 'friendly_id', '~> 5.1.0'
# state machine
gem 'aasm'
# Background job processing
gem 'sidekiq'
gem 'sinatra', require: false
# Recurring jobs for Sidekiq
gem 'sidekiq-cron'
gem 'recurrence'
# Fork de la gem avec support Attachments
gem 'mandrill_dm', github: 'AbleTech/mandrill_dm'
gem 'disqus_api'
gem 'notify_with'
gem 'pundit'