Initial commit
parents
Showing
.env.example
0 → 100644
.gitignore
0 → 100644
.pryrc
0 → 100644
.rspec
0 → 100644
.ruby-version
0 → 100644
CONTRIBUTING.md
0 → 100644
Gemfile
0 → 100644
# | ||
# OLIGAA - Stands for "Outil en Ligne d'Information et de Gestion des Activités | ||
# des Associations" which is an online tool for associations to manage news, | ||
# actors and activities. | ||
# Copyright (C) 2010-2015 Comité Départemental du Sport Adapté de la Gironde (CDSA | ||
# 33) <contact@cdsa33.org> | ||
# | ||
# This file is part of OLIGAA. | ||
# | ||
# OLIGAA is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# OLIGAA is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Affero General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Affero General Public License | ||
# along with OLIGAA. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
source 'https://rubygems.org' | ||
gem "rails", "3.2.22" | ||
gem 'dotenv-rails' | ||
gem "paperclip" | ||
gem "hirb" | ||
gem "acts_as_list" | ||
gem "pdfkit" | ||
gem "will_paginate" | ||
gem "truncate_html" | ||
gem 'google-api-client', '~> 0.7.0' | ||
gem 'delayed_job' | ||
gem 'delayed_job_active_record' | ||
gem 'daemons' | ||
gem 'rdoc' | ||
gem 'event-calendar', '~> 2.3.3', require: 'event_calendar' | ||
gem 'jquery-rails' | ||
gem 'formatize' | ||
gem 'simple_form' | ||
gem "nested_form" | ||
gem 'geocoder' | ||
gem 'gmaps4rails' | ||
gem 'gretel', '3.0.5' | ||
gem 'gretel-trails', '~> 0.0.5' | ||
gem 'piwik_analytics', git: 'https://git.framasoft.org/infopiiaf/piwik_analytics.git' | ||
group :assets do | ||
gem 'sass-rails', " ~> 3.2.3" | ||
gem 'coffee-rails', "~> 3.2.1" | ||
gem 'uglifier', '>= 1.0.3' | ||
gem 'jquery-ui-rails' | ||
gem 'compass-rails' | ||
# See https://github.com/sstephenson/execjs for javascript runtime library | ||
# gem 'therubyracer', platforms: :ruby | ||
gem 'susy' | ||
gem 'turbo-sprockets-rails3' | ||
gem 'zeroclipboard-rails' | ||
gem 'fitvidsjs_rails' | ||
gem 'font-awesome-rails' | ||
gem 'jquery-colorpicker-rails' | ||
end | ||
group :development, :test do | ||
gem "sqlite3" | ||
gem 'rspec-rails' | ||
gem 'pry-rails' | ||
end | ||
group :test do | ||
gem 'simplecov', '>= 0.4.0', require: false | ||
gem 'webmock', '~> 1.17.4' | ||
gem 'vcr', '~> 2.9.3' | ||
gem 'timecop', '~> 0.8.0' | ||
gem 'capybara' | ||
gem 'launchy' | ||
gem 'factory_girl_rails' | ||
gem 'shoulda-matchers' | ||
gem 'database_cleaner' | ||
gem 'selenium-webdriver' | ||
gem 'capybara-webkit' | ||
gem 'fuubar' | ||
end | ||
group :development do | ||
gem 'mailcatcher' | ||
gem 'brakeman' | ||
end |
Gemfile.lock
0 → 100644
LICENSE.txt
0 → 100644
This diff is collapsed.
README.md
0 → 100644