A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.6 KiB
107 lines
2.6 KiB
source 'https://rubygems.org' |
|
|
|
|
|
gem 'rails', '~> 4.1.0.rc1' |
|
# Use SCSS for stylesheets |
|
gem 'sass-rails', '~> 4.0.1' |
|
|
|
# Use Uglifier as compressor for JavaScript assets |
|
gem 'uglifier' |
|
|
|
# Use CoffeeScript for .js.coffee assets and views |
|
gem 'coffee-rails' |
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes |
|
gem 'therubyracer', platforms: :ruby |
|
|
|
# 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 |
|
gem 'turbolinks' |
|
gem 'jquery-turbolinks' |
|
|
|
# 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 |
|
|
|
# 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 |
|
# gem 'capistrano-rails', group: :development |
|
|
|
# Use debugger |
|
# gem 'debugger', group: [:development, :test] |
|
|
|
gem 'haml-rails' |
|
gem 'compass-rails' |
|
gem 'modernizr-rails' |
|
|
|
# Patch older browsers so they do understand html5 |
|
gem 'webshims-rails' |
|
|
|
gem 'devise' |
|
gem 'devise-i18n' |
|
gem 'rails-i18n' |
|
# Store some specific content, like application name and static pages contents |
|
gem 'i18n-active_record', |
|
git: 'git://github.com/svenfuchs/i18n-active_record.git', |
|
require: 'i18n/active_record' |
|
# A superb font to use as icons |
|
gem 'font-awesome-rails' |
|
# Validate mails submitted |
|
gem 'email_validator' |
|
# To display a patched diff for event descriptions |
|
gem 'differ' |
|
|
|
# The central piece of this application: the month calendar view |
|
gem 'simple_calendar' |
|
|
|
# A generic library to administrate the tool |
|
gem 'activeadmin', github: 'gregbell/active_admin' |
|
# A nicer markdown editor in active admin |
|
gem 'activeadmin_pagedown' |
|
|
|
# Markdown display |
|
gem 'redcarpet' |
|
|
|
# email adress obfuscation |
|
gem 'actionview-encoded_mail_to' |
|
|
|
# Carte openstreetmap |
|
gem 'leaflet-rails' |
|
|
|
# Tiny MCE integration |
|
gem 'tinymce-rails' |
|
gem 'tinymce-rails-langs' |
|
|
|
# SEO optimisations |
|
gem 'meta-tags' |
|
|
|
group :development do |
|
gem 'sqlite3' |
|
gem 'guard-livereload' |
|
gem 'guard-bundler' |
|
gem 'guard-minitest' |
|
gem 'quiet_assets' |
|
gem 'guard-rubocop' |
|
gem 'webrick', '>= 1.3.1' |
|
# Security checks |
|
gem 'brakeman', require: false |
|
gem 'guard-brakeman' |
|
end |
|
|
|
group :production do |
|
# Use mysql as the database for Active Record |
|
gem 'mysql2' |
|
end
|
|
|