forked from bellroy/predictionbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
76 lines (60 loc) · 1.27 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
65
66
67
68
69
70
71
72
73
74
75
source 'http://rubygems.org'
gem 'rails', '~> 3.1.11'
gem 'jquery-rails'
#Models
gem 'chronic'
gem "version_fu", "~> 1.0.1"
gem 'uuidtools', '~> 1.0.0'
#Views
gem 'RedCloth', '~>4.2.7'
gem 'formatize'
gem 'htmlentities'
#Servers
gem "mysql2", '~> 0.3'
gem 'thin'
#App housekeeping
gem 'exception_notification'
gem "whenever"
gem "typus"
#Misc
gem 'honeypot-captcha'
group :development do
gem "capistrano"
gem "capistrano-ext"
end
group :test, :development do
gem 'rspec-rails', '~> 2.6'
gem "ruby-debug19"
gem 'hirb'
gem 'wirble'
gem 'awesome_print'
end
group :cucumber, :development do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'gherkin', '~> 2.7.1'
gem 'cucumber-rails', '~> 1.2.0'
gem 'cucumber', '~> 1.1.4'
end
group :test do
gem 'factory_girl'
gem 'database_cleaner'
gem 'ffaker'
gem 'shoulda-matchers'
gem 'capybara'
gem "guard-rspec"
gem 'email_spec'
end
group :assets do
gem 'uglifier'
end
group :linux, :production do
# Does not build on Mountain Lion nor is it needed on OS X
gem 'therubyracer'
end
group :darwin do
gem 'rb-fsevent', :require => false #OSX specific
end
#restful-authentication needs to be installed as a plugin or it doesn't work
#rspec-caching-test-plugin is quite old and is not available as a gem