2012-04-05 10:43:56 +02:00
|
|
|
source 'https://rubygems.org'
|
2011-08-17 16:09:28 -05:00
|
|
|
|
2012-06-28 17:02:07 +02:00
|
|
|
gem 'rails'
|
2012-03-19 14:05:54 +01:00
|
|
|
|
2012-04-05 10:43:56 +02:00
|
|
|
# Bundle edge Rails instead:
|
|
|
|
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
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.
|
|
|
|
# This will prevent a native build of the driver. Building native drivers is not always possible on all hosters
|
|
|
|
gem "sqlite3"
|
|
|
|
gem "mysql2"
|
2011-08-17 16:09:28 -05:00
|
|
|
|
2012-04-27 16:13:29 +02:00
|
|
|
# gem "highline", "~>1.5.0"
|
2012-04-05 22:19:47 +02:00
|
|
|
gem "RedCloth"
|
2012-04-20 14:38:00 +02:00
|
|
|
gem "formatize"
|
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"
|
2012-06-28 17:02:07 +02:00
|
|
|
gem "therubyracer"
|
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', '~> 3.2.3'
|
|
|
|
gem 'coffee-rails', '~> 3.2.1'
|
|
|
|
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
|
|
# gem 'therubyracer', :platform => :ruby
|
2011-09-28 10:46:51 +02:00
|
|
|
|
2012-04-05 10:43:56 +02:00
|
|
|
gem 'uglifier', '>= 1.0.3'
|
2011-08-17 16:09:28 -05:00
|
|
|
end
|
2012-04-05 10:43:56 +02:00
|
|
|
|
|
|
|
gem 'jquery-rails'
|
|
|
|
|
|
|
|
# To use ActiveModel has_secure_password
|
2012-04-05 22:19:47 +02:00
|
|
|
gem 'bcrypt-ruby', '~> 3.0.0'
|
2012-04-05 10:43:56 +02:00
|
|
|
|
|
|
|
# To use Jbuilder templates for JSON
|
|
|
|
# gem 'jbuilder'
|
|
|
|
|
|
|
|
# Use unicorn as the app server
|
|
|
|
# gem 'unicorn'
|
|
|
|
|
|
|
|
# Deploy with Capistrano
|
|
|
|
# gem 'capistrano'
|
|
|
|
|
2012-04-12 17:30:05 +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'
|
2012-04-12 17:30:05 +02:00
|
|
|
gem "mongrel", "1.2.0.pre2"
|
|
|
|
else
|
2012-04-27 14:22:16 +02:00
|
|
|
gem "ruby-debug"
|
|
|
|
gem "mongrel"
|
2012-04-12 17:30:05 +02:00
|
|
|
end
|
|
|
|
gem "yard"
|
|
|
|
end
|
2012-04-27 14:22:16 +02:00
|
|
|
|
|
|
|
group :test do
|
2012-04-05 22:19:47 +02:00
|
|
|
# gem "test-unit", "1.2.3"
|
|
|
|
# gem "flexmock"
|
|
|
|
# gem "ZenTest", ">=4.0.0"
|
|
|
|
# gem "hpricot"
|
|
|
|
# gem "hoe"
|
|
|
|
# gem "rspec-rails", "~>1.3.3"
|
|
|
|
# gem 'memory_test_fix', '~>0.1.3'
|
2012-04-27 16:13:29 +02:00
|
|
|
gem "factory_girl_rails"
|
|
|
|
gem "capybara"
|
|
|
|
gem "selenium-webdriver" # Note that > 2.14 has problems: https://code.google.com/p/selenium/issues/detail?id=3075
|
|
|
|
gem "database_cleaner"
|
|
|
|
gem "cucumber-rails"
|
|
|
|
gem "aruba"
|
2012-04-05 22:19:47 +02:00
|
|
|
|
|
|
|
# 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-04-27 14:22:16 +02:00
|
|
|
end
|