tracks/Gemfile

73 lines
1.9 KiB
Text
Raw Normal View History

2012-04-05 10:43:56 +02:00
source 'https://rubygems.org'
2013-01-27 13:18:42 +01:00
gem 'rails', '~>3.2'
2012-03-19 14:05:54 +01:00
# you may comment out the database driver you will not be using.
# This will prevent a native build of the driver. Building native drivers is not
# always possible on all hosters
2013-01-27 13:18:42 +01:00
gem "sqlite3", "~>1.3"
gem "mysql2", "~>0.3"
2013-01-27 13:18:42 +01:00
gem "RedCloth", "~>4.2.9"
gem "formatize", "~>1.1"
gem "sanitize", "~>2.0"
gem "will_paginate", "~>3.0"
gem "acts_as_list", "~>0.1"
gem "aasm", "~>3.0"
gem "htmlentities", "~>4.3"
gem "swf_fu", "~>2.0"
gem "rails_autolink", "~>1.0"
2013-01-25 21:04:59 -05:00
gem "cache_digests", :path => 'vendor/gems/cache_digests-0.1.0' # vendored for Ruby 1.8.7 compatibility
2013-01-27 13:18:42 +01:00
gem "rack-mini-profiler", "~>0.1"
2012-04-11 17:36:22 +02:00
2012-04-05 10:43:56 +02:00
# Gems used only for assets and not required
# in production environments by default.
group :assets do
2013-01-27 13:18:42 +01:00
gem 'sass-rails', "~>3.2"
gem 'coffee-rails', "~>3.2"
2012-04-05 10:43:56 +02:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
2013-01-27 13:18:42 +01:00
gem 'therubyracer', "~>0.11"
2013-01-27 13:18:42 +01:00
gem 'uglifier', "~>1.3"
end
2012-04-05 10:43:56 +02:00
2013-01-27 13:18:42 +01:00
gem 'jquery-rails', "~>2.1"
2012-04-05 10:43:56 +02:00
# To use ActiveModel has_secure_password
2013-01-27 13:18:42 +01:00
gem 'bcrypt-ruby', "~>3.0"
2012-04-05 10:43:56 +02:00
group :development do
if RUBY_VERSION.to_f >= 1.9
2012-04-27 14:22:16 +02:00
# gem "ruby-debug19", :require => 'ruby-debug'
gem "mongrel", ">=1.2.0.pre2"
else
2012-04-27 14:22:16 +02:00
gem "ruby-debug"
gem "mongrel"
end
2013-01-27 13:18:42 +01:00
gem "yard", "~>0.8"
gem "tolk", "~>1.3"
gem "bullet", "~>4.3"
end
2012-04-27 14:22:16 +02:00
group :test do
2013-01-27 13:18:42 +01:00
gem "factory_girl_rails", "~>4.1"
gem "capybara", "~>2.0"
gem "cucumber-rails", "~>1.3", :require => false
gem "database_cleaner", "~>0.9"
gem "aruba", "~>0.5"
gem "simplecov", "~>0.7"
gem "timecop", "~>0.5"
# Note that > 2.14 has problems, see:
# https://code.google.com/p/selenium/issues/detail?id=3075
2013-01-27 13:18:42 +01:00
gem "selenium-webdriver", "~>2.27"
# uncomment to use the webkit option. This depends on Qt to be installed
#gem "capybara-webkit"
# uncomment to be able to make screenshots from scenarios
#gem "capybara-screenshot"
#gem "launchy"
2012-08-28 08:41:25 -05:00
end