2012-04-05 10:43:56 +02:00
|
|
|
source 'https://rubygems.org'
|
2011-08-17 16:09:28 -05:00
|
|
|
|
2014-05-16 10:19:27 -04:00
|
|
|
gem 'rails', '~>4.1.0'
|
2014-04-11 22:45:57 +02:00
|
|
|
gem 'sass-rails', '~>4.0'
|
|
|
|
gem 'coffee-rails', '~>4.0'
|
2013-05-11 23:12:20 +02:00
|
|
|
|
2014-04-11 22:45:57 +02:00
|
|
|
#gem 'json'
|
2013-07-28 13:36:47 +02:00
|
|
|
|
2013-12-26 22:01:17 -06:00
|
|
|
# todo: remove xml api
|
2014-05-16 18:14:30 -04:00
|
|
|
gem 'actionpack-xml_parser', '>=1.0.1'
|
2013-05-11 23:12:20 +02:00
|
|
|
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
|
|
gem 'therubyracer'
|
|
|
|
|
|
|
|
gem 'uglifier', '>=1.3.0'
|
|
|
|
|
|
|
|
gem 'jquery-rails'
|
2012-03-19 14:05:54 +01:00
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
# you may comment out the database driver you will not be using.
|
2013-12-26 22:01:17 -06:00
|
|
|
# This will prevent a native build of the driver. Building native drivers is not
|
2012-12-23 23:16:22 +01:00
|
|
|
# always possible on all hosters
|
2012-04-05 22:19:47 +02:00
|
|
|
gem "sqlite3"
|
|
|
|
gem "mysql2"
|
2011-08-17 16:09:28 -05:00
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
gem "RedCloth"
|
2012-04-27 16:13:29 +02:00
|
|
|
gem "sanitize"
|
2012-04-11 17:36:22 +02:00
|
|
|
gem "will_paginate"
|
2012-04-27 16:13:29 +02:00
|
|
|
gem "acts_as_list"
|
|
|
|
gem "aasm"
|
|
|
|
gem "htmlentities"
|
2012-04-11 17:36:22 +02:00
|
|
|
gem "swf_fu"
|
|
|
|
gem "rails_autolink"
|
2013-01-25 20:21:06 -05:00
|
|
|
gem "cache_digests"
|
2012-04-11 17:36:22 +02:00
|
|
|
|
2012-04-05 10:43:56 +02:00
|
|
|
# To use ActiveModel has_secure_password
|
2014-06-02 20:52:59 -04:00
|
|
|
gem 'bcrypt', '~> 3.1.3'
|
2012-04-05 10:43:56 +02:00
|
|
|
|
2013-05-11 23:12:20 +02:00
|
|
|
# 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
|
2013-06-25 16:50:07 +02:00
|
|
|
# gem 'jbuilder', '~> 1.2'
|
2013-05-11 23:12:20 +02:00
|
|
|
|
2012-04-12 17:30:05 +02:00
|
|
|
group :development do
|
2014-05-16 11:02:08 -04:00
|
|
|
gem "spring"
|
|
|
|
gem "spring-commands-cucumber"
|
2012-04-12 17:30:05 +02:00
|
|
|
gem "yard"
|
2014-05-02 11:26:10 -04:00
|
|
|
gem 'tolk', '>=1.5.0'
|
2012-08-27 21:00:51 +02:00
|
|
|
gem "bullet"
|
2014-01-11 14:33:14 +01:00
|
|
|
gem "rack-mini-profiler"
|
2012-04-12 17:30:05 +02:00
|
|
|
end
|
2012-04-27 14:22:16 +02:00
|
|
|
|
|
|
|
group :test do
|
2012-04-27 16:13:29 +02:00
|
|
|
gem "factory_girl_rails"
|
|
|
|
gem "capybara"
|
2012-11-27 23:03:32 -06:00
|
|
|
gem "cucumber-rails", :require => false
|
2013-02-23 15:16:03 +01:00
|
|
|
gem "rspec-expectations"
|
2012-12-23 23:16:22 +01:00
|
|
|
gem "database_cleaner"
|
2013-03-02 22:26:31 -06:00
|
|
|
gem "mocha", :require => false
|
2013-02-23 15:16:03 +01:00
|
|
|
|
2014-05-16 18:14:30 -04:00
|
|
|
gem "aruba", ">=0.5.4", :require => false
|
2012-12-23 23:16:22 +01:00
|
|
|
|
2013-12-26 22:01:17 -06:00
|
|
|
# Note that > 2.14 has problems, see:
|
2012-12-23 23:16:22 +01:00
|
|
|
# https://code.google.com/p/selenium/issues/detail?id=3075
|
2013-12-26 22:01:17 -06:00
|
|
|
gem "selenium-webdriver"
|
|
|
|
|
2013-06-17 10:06:38 +02:00
|
|
|
# uncomment to use the webkit option. This depends on Qt being installed
|
2013-02-15 20:51:35 +01:00
|
|
|
# gem "capybara-webkit"
|
2013-12-26 22:01:17 -06:00
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
# uncomment to be able to make screenshots from scenarios
|
|
|
|
#gem "capybara-screenshot"
|
|
|
|
#gem "launchy"
|
2013-09-16 09:40:41 +02:00
|
|
|
|
2013-09-23 16:49:59 +02:00
|
|
|
gem "simplecov"
|
2013-09-16 09:40:41 +02:00
|
|
|
# get test coverage info on codeclimate
|
|
|
|
gem "codeclimate-test-reporter", group: :test, require: nil
|
2012-08-28 08:41:25 -05:00
|
|
|
end
|