forked from ari/jobsworth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (63 loc) · 1.37 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
source 'http://rubygems.org'
gem "rails", "3.2.8"
gem 'daemons'
gem "will_paginate"
gem 'icalendar'
gem 'tzinfo'
gem 'RedCloth', :require=>'redcloth'
gem 'gchartrb', :require=>"google_chart"
gem 'paperclip', '>3.1'
gem 'json'
gem 'acts_as_tree'
gem 'acts_as_list'
gem 'dynamic_form'
gem 'remotipart'
gem "exception_notification_rails3", :require => "exception_notifier"
gem "rufus-scheduler"
gem 'net-ldap'
gem 'devise'
gem 'devise-encryptable'
gem 'jquery-rails'
gem 'closure-compiler'
gem 'delayed_job_active_record'
gem 'cocaine'
platforms :jruby do
gem 'activerecord-jdbcmysql-adapter'
# This is needed by now to let tests work on JRuby
# TODO: When the JRuby guys merge jruby-openssl in
# jruby this will be removed
gem 'jruby-openssl'
gem 'warbler'
end
platforms :ruby do
gem 'mysql2'
end
platforms :mri do
group :test do
gem 'ruby-prof'
end
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'bootstrap-sass', '2.0.4'
end
group :test, :development do
gem "machinist", '1.0.6'
end
group :test do
gem "shoulda", :require => false
gem "rspec-rails"
gem "faker", '0.3.1'
gem "database_cleaner"
gem "capybara"
gem "launchy"
gem "simplecov", :require => false
gem "spork"
gem "rdoc"
gem "ci_reporter"
end
group :development do
gem "annotate"
end