-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
55 lines (51 loc) · 1.15 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
# frozen_string_literal: true
source 'https://rubygems.org'
group :production do
gem 'pg', '~> 0.18.4'
end
gem 'blacklight', ' ~> 6.0'
gem 'blacklight-gallery', '>= 0.3.0'
gem 'blacklight-oembed', '>= 0.1.0'
gem 'blacklight-spotlight'
# gem 'blacklight-spotlight',
# git: 'https://github.com/dunn/spotlight.git',
# branch: '75th'
gem 'devise'
gem 'devise-guests', '~> 0.6'
gem 'devise_invitable'
gem 'dotenv-rails'
gem 'friendly_id'
gem 'jquery-rails'
gem 'net-ldap'
gem 'optimist'
gem 'puma'
gem 'rails', '~> 5.1.6'
gem 'riiif'
gem 'rsolr', '>= 1.0'
gem 'sass-rails'
gem 'sitemap_generator'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails', '>= 1.1.3'
gem 'capistrano-rbenv'
gem 'capistrano-yarn'
gem 'capybara'
gem 'chromedriver-helper'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'highline'
gem 'method_source'
gem 'pry'
gem 'pry-doc'
gem 'rspec-rails'
gem 'rubocop-rails_config'
gem 'rubocop-rspec'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'solr_wrapper', '>= 0.3'
gem 'sqlite3'
end