forked from HHS/voc-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (58 loc) · 1.56 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
source 'http://rubygems.org'
gem 'rails', :git => 'git://github.com/rails/rails.git', :ref => '182d4e3719' # 3.0.21, see https://github.com/rails/rails/pull/9126
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'jquery-rails'
gem 'kaminari'
gem 'delayed_job_active_record'
gem 'authlogic'
gem 'memcache-client'
gem 'paperclip'
gem 'daemons', :require => false
gem 'httparty'
gem 'resque_mailer'
gem 'resque-status'
gem 'resque_unit', :group => :test
gem 'bson_ext'
gem 'escape_utils'
gem 'mongoid'
gem 'open_uri_redirections'
gem "ranked-model", "~> 0.2.1"
gem 'redis-objects'
gem 'pdfkit'
gem "best_in_place", :git => 'https://github.com/eLafo/best_in_place', :branch => 'rails-3.0' # This version is require for < Rails 3.1
platform :ruby do
gem 'unicorn-rails'
gem 'mysql2', '< 0.3'
gem 'wkhtmltopdf-binary', "~> 0.9.9.1"
group :test do
gem 'rails_best_practices'
end
end
platform :jruby do
gem 'activerecord-jdbc-adapter'
gem 'jdbc-mysql'
gem 'activerecord-jdbcmysql-adapter'
gem 'jruby-openssl', :require => false
gem 'jruby-rack', :require => false
gem 'jruby-rack-worker', :require => false
gem 'warbler'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'jazz_hands'
gem 'yard'
end
gem 'rspec-rails', :group => [:development, :test]
group :test do
gem 'simplecov', :require => false
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'capybara'
gem 'guard-rspec'
gem 'growl'
gem 'shoulda-matchers'
gem 'rb-fsevent', '~> 0.9.1'
end