-
Notifications
You must be signed in to change notification settings - Fork 36
/
Gemfile
138 lines (108 loc) · 3.71 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
source 'https://rubygems.org'
ruby "2.6.6"
#ruby-gemset=dcsops
# The following are from the default generated Gemfile for a new Rails 5.2 app:
gem 'rails', '~> 5.2.4', '>= 5.2.4.3' # This is the version string generated by `rails new` on the current latest ~> 5 version of rails (5.2.4.3)
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer', platforms: :ruby # Default Rails 5.2 uses mini_racer, but we're already using therubyracer, so we'll stay with that for now.
gem 'coffee-rails', '~> 4.2'
gem 'jbuilder', '~> 2.5'
gem 'bootsnap', '>= 1.1.0', require: false
# The following are gems required by the application itself:
gem 'rack-rewrite'
gem 'pg', '~> 0.2'
gem 'arcdata_core', github: 'redcross/arcdata_core', branch: 'upgrade/rails-6'
gem 'connect', github: 'redcross/openid-connect-engine', branch: 'rails-6-upgrade'
gem 'activerecord-postgresql-adapter'
gem 'activerecord-import'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'haml-rails'
gem "less-rails"
gem 'delayed_job_active_record'
gem 'inherited_resources'
gem 'responders'
gem 'has_scope'
gem "twitter-bootstrap-rails", '~> 3.1.0', github: 'seyhunak/twitter-bootstrap-rails', branch: 'bootstrap3'
gem 'bootstrap-x-editable-rails'
gem "spreadsheet" # Import from excel
gem 'scrypt'
gem "authlogic"
gem "omniauth_openid_connect"
gem "ri_cal" # Ical Rendering
gem "cancancan"
gem "cancan-inherited_resources" # cancancan v2 and later don't have built-in support for use with inherited_resources
gem "ruby-openid", require: 'openid'
gem "timeliness"
gem "roadie-rails"
gem "kaminari"
gem "paper_trail"
gem "assignable_values"
gem 'bootstrap-kaminari-views'
gem 'paperclip'
gem 'threach'
gem 'restforce'
gem 'dotiw'
gem 'geokit'#, github: 'mikefarmer/geokit' # Found a branch that removes some weird build stuff
gem 'formtastic'
gem 'formtastic-bootstrap'
gem 'cocoon'
gem 'activeadmin'
gem 'nokogiri'
# Monitoring/Alerting
gem 'sentry-raven'
gem 'hashie', '~>2.0.0'
gem 'newrelic_rpm', '< 4'
gem 'httparty'
gem 'couchrest'
gem 'ruby-bitly'
gem 'aws-sdk'
gem "memcachier"
gem "dalli"
gem "twilio-ruby"
gem 'pubnub'
gem 'pdfkit'
gem 'wkhtmltopdf-heroku', :group => [:staging, :production]
gem 'wkhtmltopdf-binary', group: :development
group :test do
gem 'rspec-rails'
gem 'rspec-activemodel-mocks'
gem 'rails-controller-testing'
gem 'faker'
gem 'zonebie'
gem 'sqlite3'
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'delorean'
gem 'coveralls', require: false
gem 'capybara', require: false
gem 'apparition'
gem 'capybara-screenshot', require: false
gem 'database_cleaner', '~> 1.0.1', require: false # Current 1.1.1 version has catastrophic issue that breaks DB adapters. Can upgrade when fixed
#gem 'sauce' # Quite possibly the most annoying, complex, fragile gem in existence
gem 'parallel_tests'
gem 'webmock'
gem 'vcr'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'autotest'
#gem 'autotest-fsevent'
gem 'http_logger'
gem 'ruby-prof'
gem 'spring-commands-rspec'
gem 'better_errors'
gem 'binding_of_caller'
# The following are from the default generated Gemfile for a new Rails 5.2 app:
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end