-
Notifications
You must be signed in to change notification settings - Fork 46
/
Gemfile
100 lines (85 loc) · 2.22 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'dotenv-rails'
gem 'rails', '~> 4.2'
gem 'authlogic' # lots of user-related magic
gem 'i18n', '>= 0.6.6'
gem 'rails3-generators'
gem 'bcrypt-ruby', require: 'bcrypt'
gem 'sanitize'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'dynamic_form'
gem 'lograge'
gem 'slop'
# apis
gem 'mendeley', git: 'https://github.com/tsujigiri/mendeley', branch: 'paging_search'
gem 'plos', require: false
# DB
gem 'activerecord-import', '>= 0.4.0'
gem 'attr_encrypted'
gem 'composite_primary_keys', '~> 8.0'
gem 'pg', '<1' # Unpin when updating Rails to 5.x
gem 'pg_search'
# so we can create zip-files for genotypes
gem 'rubyzip'
gem 'will_paginate'
gem 'will_paginate-bootstrap'
gem 'nested_form', git: 'https://github.com/ryanb/nested_form'
gem 'json'
gem 'mediawiki-gateway', git: 'https://github.com/MusikAnimal/mediawiki-gateway'
gem 'paperclip'
gem 'friendly_id'
gem 'recommendify', git: 'https://github.com/Kinoba/recommendify', ref: 'd8c252f'
# background jobs
gem 'sidekiq'
gem 'sidekiq-limit_fetch'
gem 'slim', '~> 1.3.8'
gem 'sinatra', require: false
# cron jobs
gem 'whenever', require: false
# assets
gem 'therubyracer'
gem 'execjs'
gem 'uglifier'
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 4.2.1'
gem 'sass-rails'
# monitoring
gem 'sentry-raven'
# get rid of Ruby 2.7.7 error
# bigdecimal is required by ActiveSupport, and bigdecimal 2
# introduces some breaking changes (You cannot use BigDecimal.new)
gem 'bigdecimal', '1.3.5'
# Ruby 2.7.0 does not include scanf
gem 'scanf'
#group :production do
# gem 'rpm_contrib'
#end
group :test do
gem 'test-unit' # TODO: Remove me
gem 'minitest' # TODO: Remove me
gem 'rspec-rails'
gem 'shoulda-context'
gem 'mocha', require: false
gem 'simplecov', require: false
gem 'webmock', '>= 3.5.0' # need at least 3.5.0 for Ruby 2.6
gem 'vcr'
gem 'capybara'
gem 'poltergeist'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'timecop'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'launchy'
gem 'pry-rails', require: 'pry'
gem 'uuidtools'
end
group :development do
gem 'guard-rspec'
gem 'spring'
gem 'spring-commands-rspec'
gem 'capistrano', '~> 2.0'
gem 'rvm-capistrano', '1.4.4', require: false
end