tracks/Gemfile

68 lines
1.4 KiB
Text
Raw Normal View History

2012-04-05 10:43:56 +02:00
source 'https://rubygems.org'
2013-02-11 19:24:52 -05: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
gem "sqlite3"
gem "mysql2"
gem "RedCloth"
gem "sanitize"
2012-04-11 17:36:22 +02:00
gem "will_paginate"
gem "acts_as_list"
gem "aasm"
gem "htmlentities"
2012-04-11 17:36:22 +02:00
gem "swf_fu"
gem "rails_autolink"
gem "cache_digests"
gem "rack-mini-profiler"
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
gem 'sass-rails'
gem 'coffee-rails'
2012-04-05 10:43:56 +02:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier'
end
2012-04-05 10:43:56 +02:00
gem 'jquery-rails'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby'
2012-04-05 10:43:56 +02:00
group :development do
gem "yard"
gem "tolk"
gem "bullet"
end
2012-04-27 14:22:16 +02:00
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "cucumber-rails", :require => false
2013-02-23 15:16:03 +01:00
gem "rspec-expectations"
gem "database_cleaner"
gem "mocha", :require => false
2013-02-23 15:16:03 +01:00
gem "aruba", :require => false
gem "simplecov"
gem "timecop"
# Note that > 2.14 has problems, see:
# https://code.google.com/p/selenium/issues/detail?id=3075
gem "selenium-webdriver"
# 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