osem-fcy/Gemfile

227 lines
4.8 KiB
Text
Raw Normal View History

2013-01-07 09:04:09 +01:00
source 'https://rubygems.org'
# rails-assets requires >= 1.8.4
2016-03-08 21:14:44 +05:30
if Gem::Version.new(Bundler::VERSION) < Gem::Version.new('1.8.4')
abort "Bundler version >= 1.8.4 is required"
end
2014-11-12 10:45:44 +01:00
# as web framework
gem 'rails', '~> 4.2'
# enables serving assets in production and setting your logger to standard out
# both of which are required to run an application on a twelve-factor provider
# like heroku.com
gem 'rails_12factor', group: :production
# respond_to methods have been extracted to the responders gem
# http://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#responders
gem 'responders', '~> 2.0'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# as the database for Active Record
2014-04-23 15:45:55 +02:00
gem 'mysql2'
2014-11-12 10:45:44 +01:00
# for observing records
2014-04-23 15:45:55 +02:00
gem 'rails-observers'
2014-11-12 10:45:44 +01:00
# for tracking data changes
2014-04-23 15:45:55 +02:00
gem 'paper_trail'
# for upload management
gem 'carrierwave'
gem 'mini_magick'
2016-04-27 16:03:29 +02:00
gem 'carrierwave-bombshelter'
# for internationalizing
gem 'rails-i18n', '~> 4.0.0'
2014-11-12 10:45:44 +01:00
# as authentification framework
gem 'devise'
2014-11-04 17:42:47 +01:00
gem 'devise_ichain_authenticatable'
# for openID authentication
2014-06-18 16:58:30 +03:00
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-openid'
gem 'omniauth-google-oauth2'
2014-07-24 23:18:57 +03:00
gem 'omniauth-github'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# as authorization framework
2014-07-23 16:24:05 +02:00
gem 'cancancan'
# for roles
2014-08-12 11:51:59 +03:00
gem 'rolify'
2014-04-23 15:45:55 +02:00
# to show flash messages from ajax requests
gem 'unobtrusive_flash', '>=3'
2014-11-12 10:45:44 +01:00
# as state machine
2014-04-30 15:26:38 +02:00
gem 'transitions', :require => %w( transitions active_record/transitions )
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# for comments
gem 'awesome_nested_set', '~> 3.0.0.rc.5'
2013-01-07 09:04:09 +01:00
gem 'acts_as_commentable_with_threading'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# as templating language
2014-04-30 15:26:38 +02:00
gem 'haml-rails'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# for stylesheets
2014-04-30 15:26:38 +02:00
gem 'sass-rails', '>= 4.0.2'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# as compressor for JavaScript assets
2014-04-23 15:45:55 +02:00
gem 'uglifier', '>= 1.3.0'
2014-11-12 10:45:44 +01:00
# as the front-end framework
gem 'bootstrap-sass', '~> 3.3.4.1'
gem 'autoprefixer-rails'
2014-04-23 15:45:55 +02:00
gem 'formtastic-bootstrap'
gem 'formtastic', '~> 3.1.1'
gem 'cocoon'
2014-11-12 10:45:44 +01:00
# as the JavaScript library
2014-04-23 15:45:55 +02:00
gem 'jquery-rails'
# frontend javascripts
source 'https://rails-assets.org' do
# for placeholder images
gem 'rails-assets-holderjs'
# for formating dates
gem 'rails-assets-date.format'
# for or parsing, validating, manipulating, and formatting dates
gem 'rails-assets-momentjs'
# for smooth scrolling
gem 'rails-assets-jquery-smooth-scroll'
# as color picker
gem 'rails-assets-spectrum'
# for color manipulation
gem 'rails-assets-tinycolor'
# for drawing triangle backgrounds
gem 'rails-assets-trianglify'
# for scroll way points
gem 'rails-assets-waypoints'
# for markdown editors
gem 'rails-assets-bootstrap-markdown'
gem 'rails-assets-to-markdown'
gem 'rails-assets-markdown'
end
# as date picker
gem 'bootstrap3-datetimepicker-rails', '~> 3.0.2'
gem 'jquery-datatables-rails', '~> 2.2.1'
# for charts
gem 'chart-js-rails'
# for displaying maps
gem 'leaflet-rails'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# for user avatars
2014-04-23 15:45:55 +02:00
gem 'gravtastic'
# for country selects
gem 'country_select'
2014-11-12 10:45:44 +01:00
# as PDF generator
2013-01-07 09:04:09 +01:00
gem 'prawn_rails'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# to render XLS spreadsheets
2013-07-16 09:47:23 +02:00
gem 'axlsx_rails'
2014-04-23 15:45:55 +02:00
2014-11-12 10:45:44 +01:00
# as error catcher
2014-04-30 15:26:38 +02:00
gem 'hoptoad_notifier', '~> 2.3'
2014-04-23 15:45:55 +02:00
# to make links faster
2014-04-23 15:45:55 +02:00
gem 'turbolinks'
2014-11-12 10:45:44 +01:00
# for JSON serialization of our API
2014-04-23 15:45:55 +02:00
gem 'active_model_serializers'
# as icon font
2014-06-24 15:17:17 +05:30
gem 'font-awesome-rails'
# for markdown
gem 'redcarpet'
2014-11-12 10:45:44 +01:00
# as rdoc generator
2014-04-23 15:45:55 +02:00
gem 'rdoc-generator-fivefish'
2014-04-11 12:32:15 +02:00
2014-11-12 10:45:44 +01:00
# for visitor tracking
gem 'ahoy_matey'
gem 'activeuuid'
2014-11-12 10:45:44 +01:00
gem 'piwik_analytics', '~> 1.0.1'
2014-11-12 10:45:44 +01:00
# for recurring jobs
gem 'whenever', :require => false
2014-11-12 10:45:44 +01:00
gem 'delayed_job_active_record'
2014-11-12 10:45:44 +01:00
# to run scripts
gem 'daemons'
2014-11-12 10:45:44 +01:00
# to encapsulate money in objects
gem 'money-rails'
# for lists
gem 'acts_as_list'
2014-12-13 21:13:19 +02:00
# for switch checkboxes
gem 'bootstrap-switch-rails', '~> 3.0.0'
# for parsing OEmbed data
gem 'ruby-oembed'
# for uploading images to the cloud
gem 'cloudinary'
2016-04-22 16:14:41 +02:00
# for setting app configuration in the environment
gem 'dotenv-rails'
2016-04-29 17:19:23 +02:00
# for fake data
# this is not in a group as we use it also for rake data:demo
gem 'faker'
2016-04-22 16:14:41 +02:00
# Use guard and spring for testing in development
group :development do
# to launch specs when files are modified
gem 'guard-rspec', '~> 4.2.8'
gem 'spring-commands-rspec'
# for static code analisys
2016-04-29 17:19:23 +02:00
gem 'rubocop', require: false
# to silence rack assests messages
2014-04-30 15:26:38 +02:00
gem 'quiet_assets'
# as database
2014-04-30 15:26:38 +02:00
gem 'sqlite3'
# to open mails
2014-04-30 15:26:38 +02:00
gem 'letter_opener'
# to open mails in browser
gem 'letter_opener_web'
# as deployment system
2014-07-07 16:08:53 +02:00
gem 'mina'
# as debugger on error pages
gem 'web-console', '~> 2.0'
end
group :test do
# as test framework
gem 'rspec-rails'
gem 'database_cleaner'
gem 'capybara'
gem 'poltergeist'
gem 'phantomjs', :require => 'phantomjs/poltergeist'
# for measuring test coverage
gem 'coveralls', require: false
# for describing models
gem 'shoulda-matchers', require: false
# for stubing/mocking models
2014-07-04 22:55:01 +02:00
gem 'rspec-activemodel-mocks'
# to freeze time
gem 'timecop'
# for mocking external requests
gem 'webmock'
end
2014-07-21 14:27:32 +02:00
group :development, :test do
# as debugger
gem 'byebug'
# for seeds
gem 'factory_girl_rails'
2014-07-21 14:27:32 +02:00
end