agenda-libre-ruby/Gemfile

125 lines
2.9 KiB
Ruby
Raw Normal View History

2013-11-13 23:09:38 +01:00
source 'https://rubygems.org'
# The central piece of this application: the month calendar view
gem 'simple_calendar'
2014-08-17 15:43:04 +02:00
gem 'rails'
gem 'has_scope'
2013-11-13 23:09:38 +01:00
2014-11-30 20:52:38 +01:00
# Use SASS for stylesheets
2014-12-14 11:42:19 +01:00
gem 'sass-rails'
2014-11-30 20:52:38 +01:00
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .coffee assets and views
2013-11-24 16:09:03 +01:00
gem 'coffee-rails'
2013-11-13 23:09:38 +01:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
2013-11-13 23:09:38 +01:00
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more:
# https://github.com/rails/turbolinks
2013-11-13 23:09:38 +01:00
gem 'turbolinks'
gem 'jquery-turbolinks'
2013-11-13 23:09:38 +01:00
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
2014-11-18 14:27:05 +01:00
gem 'jbuilder'
2014-03-18 15:40:13 +01:00
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
2013-11-13 23:09:38 +01:00
# Use ActiveModel has_secure_password
2014-11-30 20:52:38 +01:00
# gem 'bcrypt', '~> 3.1.7'
2013-11-13 23:09:38 +01:00
2014-11-30 20:52:38 +01:00
# Use Unicorn as the app server
2013-11-13 23:09:38 +01:00
# gem 'unicorn'
# Use Capistrano for deployment
2014-03-18 15:40:13 +01:00
# gem 'capistrano-rails', group: :development
2013-11-13 23:09:38 +01:00
gem 'haml-rails'
2014-03-18 15:40:13 +01:00
gem 'compass-rails'
gem 'modernizr-rails'
# Patch older browsers so they do understand html5
gem 'webshims-rails'
# Improve the html select element
gem 'select2-rails'
2014-05-17 13:36:58 +02:00
gem 'devise'
gem 'devise-i18n'
2014-05-17 13:36:58 +02:00
gem 'rails-i18n'
# Store some specific content, like application name and static pages contents
gem 'i18n-active_record',
github: 'svenfuchs/i18n-active_record',
require: 'i18n/active_record'
2014-09-20 17:20:40 +02:00
gem 'http_accept_language'
# A superb font to use as icons
gem 'font-awesome-rails'
# Validate mails submitted
2014-05-26 01:06:43 +02:00
gem 'email_validator'
# Email address obfuscation
gem 'actionview-encoded_mail_to'
2014-06-09 12:18:40 +02:00
# To display a patched diff for event descriptions
gem 'differ'
# A generic library to administrate the tool
gem 'activeadmin', github: 'activeadmin'
2014-07-18 17:01:51 +02:00
# A nicer markdown editor in active admin
gem 'activeadmin_pagedown'
gem 'jquery-sparkline-rails', github: 'cubus/jquery-sparkline-rails'
# Markdown display
gem 'redcarpet'
2013-11-24 16:09:03 +01:00
# Carte openstreetmap
gem 'leaflet-rails'
gem 'leaflet-markercluster-rails'
2014-08-23 16:59:42 +02:00
gem 'geocoder'
# Tiny MCE integration
gem 'tinymce-rails'
gem 'tinymce-rails-langs'
# Remove leading and trailing white spaces
gem 'strip_attributes'
# SEO optimisations
gem 'meta-tags'
gem 'twitter'
2013-11-24 16:09:03 +01:00
group :development do
2014-08-23 16:59:42 +02:00
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'spring'
# Removed, because requires ruby > 2
# gem 'better_errors'
# gem 'binding_of_caller'
2014-08-23 16:59:42 +02:00
gem 'sqlite3'
2013-11-24 16:09:03 +01:00
gem 'guard-livereload'
2014-12-12 21:58:12 +01:00
gem 'guard-migrate'
2013-11-24 16:09:03 +01:00
gem 'guard-bundler'
2013-11-25 18:26:50 +01:00
gem 'guard-minitest'
gem 'quiet_assets'
gem 'guard-rubocop'
2014-12-12 21:58:12 +01:00
gem 'haml-lint'
gem 'webrick', '>= 1.3.1'
# Security checks
gem 'brakeman', require: false
gem 'guard-brakeman'
2013-11-24 16:09:03 +01:00
end
2014-09-02 01:02:51 +02:00
group :test do
gem 'simplecov'
end
group :production do
# Use mysql as the database for Active Record
gem 'mysql2'
end