-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
88 lines (69 loc) · 1.79 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
source 'https://rubygems.org'
##
# These two lines are NUCATS specific.
# Uncomment these lines if you are a part of NUCATS.
# However, if you do end up using omniauth, you will need to
# use one of the several omniauth strategies.
# https://github.com/intridea/omniauth/wiki/List-of-Strategies
# source 'http://download.bioinformatics.northwestern.edu/gems'
# gem 'omniauth-nucats-accounts'
gem 'devise'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-yahoo'
gem 'omniauth-linkedin'
gem 'omniauth-facebook'
gem 'omniauth-northwestern-medicine', path: 'vendor/gems/omniauth-northwestern-medicine-0.0.4'
gem 'bundler'
gem 'rails', '~> 5.2.0'
gem 'activerecord-session_store'
gem 'actionpack-action_caching'
gem 'pg', '0.21.0'
gem 'haml'
gem 'fastercsv'
gem 'net-ldap'
# ActionView::Template::Error (Could not find a JavaScript runtime.
# See https://github.com/sstephenson/execjs for a list of available runtimes.
gem 'execjs'
gem 'therubyracer'
gem 'rdoc'
gem 'paperclip'
gem 'dotenv-rails'
gem 'faraday'
gem 'lograge'
# for rake task input
gem 'highline'
gem 'whenever', require: false
group :development, :test do
gem 'pry'
end
group :development do
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'listen'
end
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails'
gem 'exception_notification'
gem 'mime-types', '~> 2.6'
group :test do
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'capybara'
gem 'puma'
gem 'database_cleaner'
gem 'shoulda'
gem 'factory_bot'
gem 'factory_bot_rails'
gem 'simplecov', :require => false
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'faker', :git => 'https://github.com/stympy/faker.git', :branch => 'master'
end