forked from wyeworks/nucore-open
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
148 lines (131 loc) · 4.26 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby File.open(File.expand_path(".ruby-version", File.dirname(__FILE__))) { |f| f.read.chomp }
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
## base
gem "rails", "5.2.3"
gem "sprockets", "< 4" # Temporarily lock as we upgrade
gem "config"
gem "bootsnap", require: false
gem "puma"
## database
gem "mysql2"
# To use Oracle, remove the mysql2 gem above and uncomment these lines
# There are fixes for fulltext indexing in the 6.0 master of the gem, but we need
# to backport them to support 5.2.
# gem "activerecord-oracle_enhanced-adapter", git: "https://github.com/jhanggi/oracle-enhanced", branch: "release52"
# gem "ruby-oci8" # only for CRuby users
## auth
gem "cancancan"
gem "devise"
gem "devise-encryptable"
## models
gem "aasm"
gem "paperclip"
gem "paper_trail"
gem "awesome_nested_set"
gem "nokogiri"
gem "rails-observers"
gem "icalendar"
gem "paranoia"
## views
gem "sass-rails"
gem "coffee-rails"
gem "uglifier", "= 4.1.18" # 4.1.19 has an issue https://github.com/mishoo/UglifyJS2/issues/3245
# TO DO: consider using nodejs instead of mini_racer
# libv8 8+ does not like to compile on our boxes. It's easier to lock down
# libv8 and mini_racer for now than to try to get them upgraded on the server.
gem "mini_racer", "< 0.3"
gem "libv8", "< 8"
gem "bootstrap-sass", "~> 2.3.2" # will not upgrade
gem "haml"
gem "will_paginate"
gem "dynamic_form"
# 5.0 has breaking changes based which need to be addressed before we can upgrade
gem "ckeditor", "< 5"
gem "jquery-rails"
gem "jquery-ui-rails"
gem "vuejs-rails", "~> 1.0.26" # 2.0 introduces breaking changes
gem "clockpunch"
gem "simple_form"
gem "font-awesome-rails"
gem "nested_form_fields"
gem "text_helpers"
gem "chosen-rails"
gem "fine_uploader", path: "vendor/engines/fine_uploader"
gem "fullcalendar", path: "vendor/engines/fullcalendar"
gem "rubyzip"
## PDF generation
gem "prawn-rails"
## other
gem "delayed_job_active_record"
gem "health_check"
gem "rake"
gem "spreadsheet"
gem "daemons"
gem "ice_cube"
# Optional: File uploads to S3
# gem "aws-sdk-s3"
## custom
gem "bulk_email", path: "vendor/engines/bulk_email"
gem "c2po", path: "vendor/engines/c2po"
gem "dataprobe", path: "vendor/engines/dataprobe"
gem "ldap_authentication", path: "vendor/engines/ldap_authentication"
gem "saml_authentication", path: "vendor/engines/saml_authentication"
gem "projects", path: "vendor/engines/projects"
gem "sanger_sequencing", path: "vendor/engines/sanger_sequencing"
gem "secure_rooms", path: "vendor/engines/secure_rooms"
gem "split_accounts", path: "vendor/engines/split_accounts"
gem "synaccess_connect"
gem "nucore_kfs", path: "vendor/engines/nucore_kfs"
gem "uconn_cider", path: "vendor/engines/uconn_cider"
group :development do
gem "bcrypt_pbkdf", ">= 1.0", "< 2.0", require: false # Required to support ed25519 SSH keys for capistrano. https://github.com/net-ssh/net-ssh/issues/565
gem "bullet" # Detect N+1s and recommends eager loading
gem "capistrano", require: false
gem "capistrano-bundler", require: false
gem "capistrano-rails", require: false
gem "capistrano-rvm", require: false
gem "capistrano-chruby", require: false
gem "coffeelint"
gem "ed25519", ">= 1.2", "< 2.0", require: false # Required to support ed25519 SSH keys for capistrano. https://github.com/net-ssh/net-ssh/issues/565
gem "haml_lint", require: false
gem "letter_opener"
gem "rubocop", "0.58", require: false
gem "rubocop-rspec"
gem "web-console"
end
group :development, :test do
gem "awesome_print"
# FactoryBot 5.X has some breaking changes we haven't sorted out
# https://github.com/tablexi/nucore-open/pull/1865
gem "factory_bot_rails", "< 5"
gem "parallel_tests"
gem "pry-rails"
gem "pry-byebug"
gem "rspec-rails"
gem "rspec-activejob"
gem 'teaspoon', '1.1.5'
gem "teaspoon-jasmine"
end
group :test do
gem "phantomjs"
gem "capybara"
gem "capybara-email"
gem "rails-controller-testing"
gem "rspec-collection_matchers"
gem "rspec_junit_formatter"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "single_test"
gem "webmock"
end
group :stage, :production do
gem "exception_notification"
gem "eye-patch", require: false
gem "oj"
gem "rollbar"
gem "unicorn", require: false
gem "whenever", require: false
gem "rack-tracker"
end