-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (50 loc) · 1.26 KB
/
Gemfile
File metadata and controls
59 lines (50 loc) · 1.26 KB
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
51
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
gem "rails", "3.2.8"
gem "haml", "~> 3.1.7"
gem "mysql2", "~> 0.3.11"
gem "devise", "~> 2.1.2"
gem "haml-rails", "~> 0.3.4"
gem "meta_search", "~> 1.1.3"
gem "will_paginate", "~> 3.0.3"
gem "resque-scheduler", :require => "resque_scheduler"
gem "curb", "~> 0.8.1"
gem "thin", "~> 1.4.1"
gem "cancan"
git 'git://github.com/goncalossilva/rails3_acts_as_paranoid.git' do
gem 'rails3_acts_as_paranoid'
end
group :assets do
gem "twitter-bootstrap-rails", "~> 2.1.3"
gem "sass-rails", "~> 3.2.3"
gem "coffee-rails", "~> 3.2.1"
gem "uglifier"
end
group :development do
gem "capistrano"
gem "rvm-capistrano"
gem 'faker'
end
group :production do
gem "unicorn"
end
gem "jquery-rails", "~> 2.1.1"
gem "redis", "~> 3.0.1"
gem "resque", "~> 1.22.0"
#gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails", "~> 4.0.0"
gem "capybara", "~> 1.1.2"
gem "capybara-mechanize"
gem "database_cleaner", "~> 0.8.0"
gem "guard-rspec", "~> 1.2.1"
gem "shoulda-matchers", "~> 1.2.0"
gem "xpath", "~> 0.1.4"
#gem 'cucumber-rails', "~> 1.3.0"
#gem 'cucumber'
gem "rspec-rails", "~> 2.0"
gem 'cucumber-rails', :require => false
gem 'spork'
gem 'launchy'
end
gem 'capistrano'
gem 'capistrano-resque'