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.
62 lines
1.5 KiB
62 lines
1.5 KiB
source 'https://rubygems.org' |
|
|
|
gem 'rails' |
|
|
|
# Use mysql as the database for Active Record |
|
gem 'mysql2' |
|
|
|
# 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' |
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
|
gem 'jbuilder' |
|
|
|
group :doc do |
|
# bundle exec rake doc:rails generates the API under doc/api. |
|
gem 'sdoc', require: false |
|
end |
|
|
|
# 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', group: :development |
|
|
|
# Use debugger |
|
# gem 'debugger', group: [:development, :test] |
|
|
|
gem 'haml-rails' |
|
gem 'compass-rails', '1.1.3' |
|
gem 'modernizr-rails' |
|
gem 'activeadmin', github: 'gregbell/active_admin' |
|
gem 'rails-i18n' |
|
gem 'devise-i18n' |
|
gem 'jquery-turbolinks' |
|
gem 'font-awesome-rails' |
|
gem 'has_scope' |
|
gem 'simple_calendar', github: 'echarp/simple_calendar' |
|
#gem 'simple_calendar', github: 'excid3/simple_calendar', branch: '1.0' |
|
gem 'redcarpet' |
|
|
|
group :development do |
|
gem 'guard-livereload' |
|
gem 'guard-bundler' |
|
gem 'guard-minitest' |
|
gem 'quiet_assets' |
|
gem 'webrick', '>= 1.3.1' |
|
end
|
|
|