forked from openjournals/joss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (55 loc) · 1.62 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
source 'https://rubygems.org'
ruby "2.6.3"
gem 'aasm', '~> 5.0.5'
gem 'chartkick'
gem 'bootsnap'
gem 'dotenv', '~> 2.7.5'
gem 'github-markdown', '~> 0.6.9'
gem 'google_drive'
gem 'groupdate'
gem 'honeybadger', '~> 4.5.1'
gem 'html-pipeline', '~> 2.12.0'
gem 'commonmarker', '~> 0.20.1'
gem 'octicons_helper', '~> 9.1'
gem 'omniauth-orcid', '~> 2.1.1'
gem 'octokit', '~> 4.14'
gem 'pdf-reader', '~> 2.2'
gem 'pg', '~> 1.1.4'
gem 'will_paginate', '~> 3.1.8'
gem 'rails', '6.0.0'
gem 'responders'
gem 'newrelic_rpm'
gem 'sanitize', '~> 5.0.0'
gem 'sass-rails', '~> 6.0.0'
gem 'searchkick'
gem 'uglifier', '4.1.20'
gem 'coffee-rails', '~> 5.0.0'
gem 'active_link_to'
# Use Bootstrap for the front-end
gem 'bootstrap', '~> 4.3.1'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3.5'
gem 'custom_error_message', '~> 1.1.1'
# Use Unicorn as the app server
gem 'unicorn', '~> 5.5.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug'
gem 'capybara', '~> 3.28.0'
gem 'factory_bot_rails', '~> 5.0.2'
gem 'rspec-rails', '~> 4.0.0.beta2'
gem 'rails-controller-testing', '~> 1.0.4'
end
group :test do
gem 'webmock', '~> 3.6.2'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 4.0.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec', group: :development
gem 'guard', '~> 2.15'
gem 'guard-livereload', require: false
gem 'rack-livereload'
end