-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathGemfile
191 lines (173 loc) · 7.39 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
190
191
source 'https://rubygems.org'
# do we need this still?
# require File.join(File.dirname(__FILE__), 'lib', 'bundler_help.rb')
# ############################################################
# Rails
gem 'irb', '~> 1.4.1'
gem 'mail', '~> 2.8'
gem 'mysql2', '~> 0.5.3'
gem 'rails', '~> 7.0.8.7'
gem 'react-rails', '~> 2.6.2'
gem 'shakapacker', '~> 6.0'
gem 'sprockets', '~> 4.0'
# ############################################################
# Deployment
gem 'bcrypt_pbkdf', '1.1.0'
gem 'capistrano', '~> 3.17'
gem 'capistrano-rails', '~> 1.6.2'
gem 'capistrano-yarn'
gem 'ed25519', '1.3.0'
gem 'rdoc', '~> 6.1.1' # for some reason needs to be installed for capistrano to work right
gem 'rubocop', '~> 1.67.0', require: false
# Use Puma as the app server
gem 'puma', '6.4.3', group: :puma, require: false
# ############################################################
# UI
# TODO: why do we have uglifier AND yui-compressor?
# asset pipeline problems with Joels pre-minified CSS/JS caused errors with uglifier and had to revert to yui-compressor
gem 'coffee-rails', '~> 5.0'
gem 'jquery-rails', '~> 4.6'
# gem 'libv8', '~> 3.16.1' # I think taken care of as dependency of mini_racer
# gem 'mini_racer', '0.12.0'
gem 'sassc-rails', '~> 2.1.2' # the default for newer rails, no need for yui and already used by bootstrap or something else
# gem 'therubyracer', platforms: :ruby # this is very outdated and people say to use mini_racer instead if possible
gem 'turbolinks'
gem 'uglifier', '~> 4.2.0'
# gem 'yui-compressor' # I think no longer used
# ############################################################
# Misc
gem 'amatch', '~> 0.4.0'
gem 'amoeba', '~> 3.2.0'
gem 'annotate', '~> 3.2'
gem 'aws-sdk-lambda'
gem 'aws-sdk-s3', '~> 1.113'
gem 'blacklight', '= 7.37.0'
gem 'bootsnap', require: false
gem 'bootstrap', '~> 4.6'
gem 'charlock_holmes', '~> 0.7.7'
gem 'concurrent-ruby', '~> 1.1.10'
gem 'daemons', '~> 1.4.1'
gem 'database_cleaner', '~> 2.0.1'
gem 'datacite-mapping', git: 'https://github.com/CDLUC3/datacite-mapping.git'
gem 'data_migrate'
gem 'delayed_job_active_record', '~> 4.1.7'
gem 'devise', '~> 4.8.0' # I don't believe we are using it directly
gem 'devise-guests', '~> 0.6' # I don't believe we're using it directly
gem 'doorkeeper', '~> 5.5'
gem 'down' # I'm not sure where this is used, but maybe in the frictionless data that Cassiano worked on to dl files
gem 'exception_notification'
gem 'ezid-client', '~> 1.9.2'
gem 'filesize', '~> 0.2.0'
gem 'font-awesome-sass', '~> 6.1.0'
gem 'google-apis-gmail_v1', '~> 0.14.0'
gem 'grover'
gem 'http', '~> 5.0.4'
gem 'httparty', '~> 0.22.0'
gem 'httpclient', '~> 2.8.3'
gem 'jbuilder' # is this used?
gem 'jquery-turbolinks', '~> 2.1.0'
gem 'jquery-ui-rails', '~> 7.0', git: 'https://github.com/jquery-ui-rails/jquery-ui-rails.git', tag: 'v7.0.0'
gem 'jwt', '~> 2.3.0'
gem 'kaminari', '~> 1.2.2'
gem 'leaflet-rails', '~> 1.7.0'
gem 'loofah', '~> 2.19.1'
gem 'markdiff', '~> 0.8.1'
gem 'net-ftp', '~> 0.3.4'
gem 'net-sftp'
gem 'newrelic_rpm'
gem 'noid', '~> 0.9.0'
gem 'omniauth', '~> 2.1.0'
gem 'omniauth-google-oauth2', '~> 1.1.1'
gem 'omniauth-orcid', '~> 2.1', '>= 2.1.1'
gem 'omniauth-rails_csrf_protection', '~> 1.0.1'
gem 'omniauth-shibboleth', '~> 1.3.0'
gem 'posix-spawn', '~> 0.3.15'
gem 'pundit', '~> 2.3'
gem 'rack-attack'
gem 'rb-readline', require: false
gem 'recaptcha', '~> 5.14'
gem 'redcarpet', '~> 3.6'
gem 'responders', '~> 3.0.1' # do we use this?
gem 'rest-client', '~> 2.1.0' # yet another http gem, not sure it's used
gem 'restforce', '~> 7.5.0'
gem 'rinku', '~> 2.0.6' # we used this one, creates links from text but not sure if we still use it
gem 'rsolr', '~> 2.6.0'
gem 'rubyzip', '~> 2.3', '>= 2.3.2'
gem 'serrano', '~> 1.0' # this is a gem from datacite(?) and not sure it's actively used
gem 'solr_wrapper', '~> 3.1.3' # was once used in tests, not sure still used
gem 'stripe', '~> 5.50.0'
gem 'sync', '~> 0.5.0' # not sure where this is used
gem 'tins', '~> 1.31.0' # ?? some library that doesn't say what it does aside from stuff that is tiny
gem 'yaml', '~> 0.3.0' # version 0.2.0 breaks Gmail (https://github.com/datadryad/dryad-app/pull/771)
gem 'zaru', '~> 0.3.0' # for sanitizing file names
# Peer dependencies
# with future versions of activesupport and bootsnap, these may not be needed here
gem 'base64'
gem 'bigdecimal'
gem 'faraday', '~> 1.10.4'
gem 'mutex_m'
# ############################################################
# Development and testing
group :test do
# I'm not sure we're really using every one of these libraries like fuubar?, guard?, mocha?, rspec-html?, shoulda?
# Capybara aims to simplify the process of integration testing Rack applications, such as Rails, Sinatra or Merb (https://github.com/teamcapybara/capybara)
gem 'capybara'
# Automatically create snapshots when Cucumber steps fail with Capybara and Rails (http://github.com/mattheworiordan/capybara-screenshot)
gem 'capybara-screenshot'
# chromedriver-helper is now deprecated, use webdrivers instead
# gem 'webdrivers', '~> 5.0', require: false
# required for weird-ass rspec_custom_matchers that isn't in any actual gem/engine, but gets loaded in some weird circumstances
gem 'diffy'
# required for weird-ass rspec_custom_matchers that isn't in any actual gem/engine, but gets loaded in some weird circumstances
gem 'equivalent-xml'
# factory_bot_rails provides integration between factory_bot and rails 3 or newer (http://github.com/thoughtbot/factory_bot_rails)
gem 'factory_bot_rails'
# Easily generate fake data (https://github.com/stympy/faker)
gem 'faker'
# RSpec progress bar formatter (https://github.com/thekompanee/fuubar)
gem 'fuubar'
# Guard keeps an eye on your file modifications (http://guardgem.org)
gem 'guard'
# Guard gem for RSpec (https://github.com/guard/guard-rspec)
gem 'guard-rspec'
# Mocking and stubbing library (http://gofreerange.com/mocha/docs)
gem 'mocha', require: false
# RSpec for Rails (https://github.com/rspec/rspec-rails)
gem 'rspec-collection_matchers'
gem 'rspec-github', require: false
gem 'rspec-rails'
gem 'rspec-html'
# The next generation developer focused tool for automated testing of webapps (https://github.com/SeleniumHQ/selenium)
gem 'selenium-webdriver', '~> 4.11'
# Making tests easy on the fingers and eyes (https://github.com/thoughtbot/shoulda)
gem 'shoulda'
# Simple one-liner tests for common Rails functionality (https://github.com/thoughtbot/shoulda-matchers)
gem 'shoulda-matchers', '~> 5.0'
# Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites (http://github.com/colszowka/simplecov)
gem 'simplecov', require: false
# used by some of the engines and for some reason causes errors without it in the main Gemfile, also.
gem 'simplecov-console', require: false
gem 'timecop'
gem 'webmock'
end
group :development, :v3_development, :local_dev, :local, :test do
gem 'binding_of_caller'
# Ruby fast debugger - base + CLI (http://github.com/deivid-rodriguez/byebug)
gem 'byebug'
gem 'drb'
gem 'listen'
gem 'parallel_tests'
gem 'pry'
gem 'pry-rails'
# Rails application preloader (https://github.com/rails/spring), says not to install in production
gem 'spring'
# rspec command for spring (https://github.com/jonleighton/spring-commands-rspec)
gem 'bullet'
gem 'letter_opener'
gem 'letter_opener_web', '~> 3.0'
gem 'spring-commands-rspec'
end
group :development, :v3_development, :local_dev do
gem 'colorize'
gem 'web-console'
end