-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
189 lines (159 loc) · 5.17 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
source 'https://rubygems.org'
ruby '2.7.7'
gem 'rails', '~> 3.2.22'
gem 'rake', '~> 12.3.3' # seems to work for rails 3...
# Heroku rails console complains:
# Please add test-unit gem to your Gemfile: `gem 'test-unit', '~> 3.0'`
# (cannot load such file -- test/unit/testcase) (LoadError)
gem 'test-unit', '~> 3.4'
# Jquery/javascript gems
gem 'json', '~> 2.3.1'
gem 'rails3-jquery-autocomplete', '~> 1.0.15'
gem 'browser', '0.1.6'
gem 'spinjs-rails', '~> 1.4' # Spinner
gem 'jquery-ui-rails', '~> 4.2.1'
gem 'jquery-rails', '= 3.1.1'
gem 'touchpunch-rails', '1.0.1'
# Gravatar gems
gem 'gravatar_image_tag', '~> 0.1.0'
gem 'gravatar-ultimate'
# Unicorn rails
gem 'unicorn', '~> 6.1.0'
gem 'kgio', '~> 2.11.3'
# Error monitoring
gem 'honeybadger', '~> 4.12.1'
#ckeditor text editing
gem 'ckeditor_rails', '~> 4.5.11'
# Media encoding
gem 'zencoder', '2.5.1'
# LTI oauth gems
gem 'ims-lti', '~> 1.1.4'
gem 'oauth'
# Create cloud based file uploads
gem 'carrierwave', '~> 0.11.0' # pinned to 0.x for Rails 3
gem 'fog-aws', '~> 3.6.7'
gem 'rmagick', '~> 3.2.0'
# File management for S3
gem 'aws-sdk-s3', '~> 1'
group :staging, :production do
gem 'rails_12factor'
# Ruby metrics at Heroku
gem 'barnes'
# Firefox/IE11 icons display
gem 'rack-cors', '~> 1.0.3', :require => 'rack/cors'
# Heroku API
#gem 'platform-api', '~> 2.2.0'
end
# Database
gem 'pg', '~> 1.4.5'
#gem 'mysql2' # This is only for import from zeus
# Background jobs
gem 'resque', '~> 1.27.4'
gem 'resque-status', '~> 0.5.0'
gem 'resque-queue-priority', '~> 0.6.2'
gem 'redis', '~> 4.5.1'
gem 'redis-namespace', '~> 1.8.2'
gem 'resque-scheduler', '~> 4.6.0', :require => 'resque-scheduler'
# Statistics/monitoring
#gem 'newrelic_rpm', '~> 8.9.0'
gem 'newrelic_rpm', '~> 8.15.0'
gem 'acts_as_paranoid', '0.4.1' # pinned by mil_friendly_id
# Basic required gems
gem 'nokogiri', '~> 1.13.10'
gem 'rubyzip', '~> 1.3.0'
gem 'omg_validator', '~> 1.0.0' # Form validations
gem 'carmen-rails', '~> 1.0.1' # State country codes
gem 'will_paginate', '~> 3.0.7'
gem 'read_only_filter', '~> 1.0.0'
gem 'bootstrap-will_paginate', '0.0.10'
gem 'bcrypt-ruby', '~> 3.1.5' # Was 3.0 for Rails 3 community edition, but can be 3.1 in RailsLTS
gem 'bcrypt', '~> 3.1.18'
gem 'cgi', '~> 0.3.6' # CVE-2021-33621
gem 'font-awesome-rails', '~> 3.2.1.2'
gem 'acts_as_list', '~> 0.4.0'
gem 'mil_friendly_id', '4.0.9.9' # has special character support
gem 'vestal_versions', '~> 2.0.0' # whitelist support for versions
gem 'holidays', '~> 2.2.0' # Determines holidays for common US holidays
gem 'mailboxer', '~> 0.10.3'
gem 'html-pipeline', '~> 2.6.0'
gem 'sanitize', '~> 4.4.0'
gem 'github-markdown', '~> 0.6.9'
gem 'bluecloth'
gem 'faker', '~> 1.1.2'
gem 'oj', '~> 2.18.5' # THE fastest JSON parser and Object marshaller, render :json uses multi_json which will default to oj now
gem 'chronic', '~> 0.10.2' # A natural language date parser
#gem 'ancestry' # jason put this in for org heirarchy - was buggy
gem 'spreadsheet', '~> 1.0.9' # Used to read .xls files
gem 'bootstrap-multiselect-rails'
gem 'rack', '~> 1.4.7'
gem 'concurrent-ruby', '~> 1.1.10'
gem 'xmlrpc'
# Performance
gem 'unicorn-worker-killer', '~> 0.4.5'
group :assets do
gem 'sass-rails', '~> 3.2.6'
gem 'sass', '~> 3.3.14'
gem 'coffee-rails', '~> 3.2.1'
gem 'coffee-script', '~> 2.4.1'
gem 'coffee-script-source', '~> 1.12.2'
gem 'uglifier', '~> 2.7.2'
gem 'compass-rails', '~> 1.1.7'
gem 'bootstrap-sass', '~> 2.0.0'
gem 'jquery-datatables-rails', '~> 2.2.3'
end
group :development do
gem 'spring', '~> 1.7.2'
gem 'spring-commands-rspec'
gem 'spring-commands-cucumber'
end
group :development, :test do
# Guard automated test gems `guard`
gem 'guard', '~> 2.10.5'
gem 'pry', '~> 0.12.2'
gem 'guard-rails', '~> 0.6.1'
gem 'guard-bundler', '~> 2.2.1'
gem 'guard-cucumber', '~> 2.1.2'
gem 'guard-coffeescript', '~> 2.0.1'
gem 'guard-spork', '~> 2.1.0'
gem 'guard-jasmine', '~> 1.19.2'
gem 'childprocess', '~> 3.0.0'
# Test notifications gems
gem 'ruby_gntp'
gem 'rb-fsevent', '~> 0.9.1'
# Misc development/test gems
gem 'sqlite3', '~> 1.4.2'
gem 'wirble'
gem 'awesome_print', '~> 1.6.1'
gem 'annotate', '~> 2.5.0'
gem 'foreman', '~> 0.76.0'
gem 'jasmine', '~> 2.9.0'
gem 'jasmine-core', '~> 2.9.0'
gem 'jasmine_junitxml_formatter'
# Javascript Exec
# gem 'therubyracer', require: "v8" if RUBY_PLATFORM.include?("linux")
gem 'therubyracer', require: "v8" if ENV.include?("INCLUDERUBYRACER")
#gem 'therubyracer', require: "v8"
gem 'ruby-debug-ide'
gem 'debase', '~> 0.2.4'
end
group :test do
# Rspec testing gems
gem 'rspec-rails', '~> 3.4.2'
gem 'rspec-its'
gem 'rspec-activemodel-mocks'
gem 'rspec_junit_formatter'
gem 'capybara', '~> 2.4.4'
gem 'factory_girl_rails', '~> 4.4.0'
gem 'cucumber-rails', '~> 1.4.5', :require => false
gem 'cucumber', '~> 2.99.0'
gem 'database_cleaner', '~> 1.0.1' # Changed due to a current issue in latest
gem 'launchy', '~> 2.1.2'
gem 'capybara-extensions', '~> 0.4.1'
gem 'webmock', '2.3.2'
gem 'power_assert', '~> 0.4.1'
# SimpleCov code coverage
gem 'simplecov', '~> 0.16.1', require: false
end
group :production, :staging do
gem 'turbo-sprockets-rails3'
end