osem-fcy/Gemfile

140 lines
3.3 KiB
Text
Raw Normal View History

2013-01-07 09:04:09 +01:00
source 'https://rubygems.org'
# Use rails as framework
2014-04-23 17:23:21 +02:00
gem 'rails', '~> 4.1'
2014-04-23 15:45:55 +02:00
# Use mysql as the database for Active Record
gem 'mysql2'
# Use rails-observers for observing records
gem 'rails-observers'
# User paper_trail for tracking data changes
gem 'paper_trail'
# Use devise as authentification framework
gem 'devise'
2014-06-18 16:58:30 +03:00
# Use omniauth to support openID authentication
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-07-23 16:24:05 +02:00
# Use cancancan as authorization framework
gem 'cancancan'
2014-08-12 11:51:59 +03:00
# Use rolify to set roles
gem 'rolify'
2014-04-23 15:45:55 +02:00
# Use transitions 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
# Use acts_as_commentable_with_threading 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
# Use haml as templating language
2014-04-30 15:26:38 +02:00
gem 'haml-rails'
2014-04-23 15:45:55 +02:00
# Use SCSS for stylesheets
2014-04-30 15:26:38 +02:00
gem 'sass-rails', '>= 4.0.2'
2014-04-23 15:45:55 +02:00
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use bootstrap as the front-end framework
gem 'bootstrap-sass'
gem 'formtastic-bootstrap'
gem 'formtastic', '~> 2.3.0.rc3'
gem 'momentjs-rails', '>= 2.8.1'
gem 'bootstrap3-datetimepicker-rails', '~> 3.0.2'
2014-04-23 15:45:55 +02:00
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-fileupload-rails'
gem 'cocoon'
# Use gravtastic for user avatars
gem 'gravtastic'
# Use paperclip for upload management
gem 'paperclip'
# Use prawn as PDF generator
2013-01-07 09:04:09 +01:00
gem 'prawn_rails'
2014-04-23 15:45:55 +02:00
# Use axlsx_rails to render XLS spreadsheets
2013-07-16 09:47:23 +02:00
gem 'axlsx_rails'
2014-04-23 15:45:55 +02:00
# Use d3js for building our statistics
gem 'd3_rails'
gem 'chart-js-rails'
2014-04-23 15:45:55 +02:00
2014-04-11 12:32:15 +02:00
# Use a self-hosted errbit with the old notifier
2014-04-30 15:26:38 +02:00
gem 'hoptoad_notifier', '~> 2.3'
2014-04-23 15:45:55 +02:00
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Use active_model_serializers for JSON serializatioin our API
gem 'active_model_serializers'
2014-06-24 15:17:17 +05:30
# Use FontAwesome for splash themes
gem 'font-awesome-rails'
#Use Redcarpet for Markdown in description
gem 'redcarpet'
# FIXME: We should use http://weblog.rubyonrails.org/2012/3/21/strong-parameters/
2014-04-23 15:45:55 +02:00
gem 'protected_attributes'
# We use this bootstrap/html5 rdoc generator
gem 'rdoc-generator-fivefish'
2014-04-11 12:32:15 +02:00
# We use factory_girl for seeds
2014-04-23 15:45:55 +02:00
gem 'factory_girl_rails'
2014-07-20 07:48:03 +05:30
gem 'delayed_job_active_record'
# We use ahoy for visitor tracking
gem 'ahoy_matey'
gem 'activeuuid'
# We use whenever for recurring jobs
gem 'whenever', :require => false
# Use guard and spring for testing in development
group :development do
2014-04-30 15:26:38 +02:00
# rspec Guard rules
gem 'guard-rspec', '~> 4.2.8'
gem 'spring-commands-rspec'
2014-06-17 22:50:00 +03:00
# Get HoundCi comments locally
gem 'rubocop'
2014-04-30 15:26:38 +02:00
# Silence rack assests messages
gem 'quiet_assets'
# Use sqlite3 as the database in development
gem 'sqlite3'
# Use letter_opener to open mails in development
gem 'letter_opener'
2014-07-07 16:08:53 +02:00
# mina is a blazing fast deployment system
gem 'mina'
end
# Use rspec and capybara as testing framework
group :test do
# We use coveralls for measuring test coverage
gem 'coveralls', require: false
gem 'rspec-rails'
gem 'capybara'
gem 'database_cleaner'
gem 'poltergeist'
# Set of rails validations matchers to describe models
gem 'shoulda'
2014-07-04 22:55:01 +02:00
# Extracted from RSpec 3 stub_model and mock_model
gem 'rspec-activemodel-mocks'
gem 'timecop'
end
2014-07-21 14:27:32 +02:00
group :development, :test do
gem 'byebug'
2014-07-21 14:27:32 +02:00
end