Newer
Older
gem 'rails', '~> 4.1.0.rc1'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.1'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use Uglifier as compressor for JavaScript assets
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Messages and notifications displayed nicely using javascript
gem 'gritter'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'jquery-turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'activeadmin', github: 'gregbell/active_admin'
# To correct some 4.1 issue with active_admin:
gem 'polyamorous', github: 'activerecord-hackery/polyamorous'
gem "formtastic", github: "justinfrench/formtastic"
gem "ransack", github: "activerecord-hackery/ransack", branch: "rails-4.1"
gem 'rails-i18n'
gem 'devise-i18n'
# Store some specific content, like application name and some important documentation
gem 'i18n-active_record',
git: 'git://github.com/svenfuchs/i18n-active_record.git',
require: 'i18n/active_record'
gem 'font-awesome-rails'
echarp
a validé
gem 'simple_calendar', github: 'echarp/simple_calendar'
#gem 'simple_calendar', github: 'excid3/simple_calendar', branch: '1.0'
# Markdown display
group :development do
gem 'guard-livereload'
gem 'guard-bundler'
gem 'quiet_assets'
gem 'webrick', '>= 1.3.1'