-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile~
65 lines (47 loc) · 1.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
source 'http://rubygems.org'
gem 'newrelic_rpm'
gem 'rails', '3.1.1'
gem 'execjs'
gem 'therubyracer'
gem 'sqlite3'
gem 'activeadmin'
gem 'meta_search', '>= 1.1.0.pre'
# for errors
gem 'rack' , '1.3.5'
gem 'sass-rails', "~> 3.1.1"
group :assets do
# Asset template engin
gem 'coffee-script'
gem 'uglifier'
end
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# mongrel web server
gem "mongrel", "~> 1.2.0.pre2"
# Deploy with Capistrano
# gem 'capistrano'
gem "bcrypt-ruby", "~> 3.0.1"
group :test do
# Pretty printed test output
# gem 'turn', :require => false
end
group :test, :development do
gem 'rspec', '>=1.2.2'
gem 'rspec-rails', '>=1.2.2'
gem "nifty-generators", "~> 0.4.6"
gem "simplecov"
end
group :cucumber do
gem 'capybara', '~> 1.1.1'
gem 'database_cleaner'
gem "cucumber-rails", "~> 1.1.1"
gem "cucumber", "~> 1.1.0"
gem 'rspec-rails', '>=1.2.2'
gem 'spork'
gem 'launchy' # So you can do Then show me the page
gem 'ZenTest', '~> 4.5.0'
gem 'Selenium'
gem 'selenium-client'
gem "autotest-rails"
end