-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathGemfile
50 lines (43 loc) · 1.14 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
source "http://rubygems.org"
gemspec
gem 'mysql2'
gem "jquery-rails"
gem "forgery"
gem 'rabl'
gem 'activerecord-import'
gem 'byebug'
group :development do
gem "rdoc"
gem "rails_best_practices"
end
group :test do
if RUBY_VERSION >= "1.9"
gem "simplecov", ">= 0.4.0", :require => false
end
gem 'minitest'
gem "cucumber-rails", :require => false
gem "database_cleaner"
gem 'shoulda-matchers', '~> 2.6.1'
gem "factory_girl"
gem "generator_spec"
gem "rspec-rails", '~> 2.99.0'
gem 'rspec-activemodel-mocks'
# gem "bbbot-ruby", :git => "git://github.com/mconf/bbbot-ruby.git"
gem "capybara", "~> 2.2.0"
gem "capybara-mechanize" # for remote requests
gem "capybara-webkit" # best option found for js
gem "launchy"
gem "webmock"
gem "timecop"
# to use redis in-memory and clean it in-between tests, used for resque
gem 'fakeredis', '0.5.0', :require => "fakeredis/rspec"
gem 'redis', '~> 3.1.0'
gem 'redis-namespace', '~> 1.6.0'
end
# Gems used by the test application
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'therubyracer', '~> 0.12.0'
gem 'uglifier', '>= 1.0.3'
end