-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
67 lines (54 loc) · 1.51 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
source 'http://rubygems.org'
gem 'rails', '3.2.1'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
end
# 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'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
group :test do
gem 'capybara', '1.1.2'
gem 'rspec-rails', '2.8.1'
gem 'autotest-rails', '4.1.1'
gem 'spork', '0.8.5'
gem 'factory_girl_rails', '1.4.0'
gem 'email_spec', '1.2.1'
gem 'cucumber-rails', '1.2.1'
gem 'launchy', '2.0.5'
gem 'pickle', '0.4.10'
gem 'database_cleaner', '0.7.0'
gem 'simplecov', '0.5.4'
gem 'simplecov-rcov', '0.2.3'
gem "mocha", '0.10.0'
gem 'capybara-firebug', '0.0.10'
gem "prawn", '0.8.4'
gem 'capybara-webkit', '0.9.0'
gem 'shoulda', :git=>'git://github.com/3den/shoulda.git'
gem 'ruby-debug19', :require => 'ruby-debug'
end
group :development do
gem "nifty-generators", '0.4.6'
gem 'ruby-debug19', :require => 'ruby-debug'
end
gem "galetahub-simple_captcha", '0.1.3', :require => "simple_captcha"
gem 'authlogic', '3.1.0'
gem 'meta_search', '1.1.3'
gem 'naive_bayes', :git => 'git://github.com/reddavis/Naive-Bayes.git'
gem 'heroku'
gem 'activeadmin'