forked from geobtaa/geoportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
109 lines (89 loc) · 2.83 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.0'
gem 'bootsnap', require: false
gem 'listen', '~> 3.0'
gem 'rack-cors', :require => 'rack/cors'
# Webpacker
gem 'webpacker', '~> 4.x'
gem 'sqlite3', '~> 1.3', '< 1.4'
gem 'mysql2', '~> 0.5.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# RSpec/SolrWrapper
gem 'capybara'
gem 'capybara-selenium'
gem 'capybara-screenshot'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 3.5'
gem 'spring'
end
group :development do
gem 'web-console'
gem 'puma', '>= 4.3.1'
gem 'foreman'
gem 'letter_opener'
end
gem 'blacklight', '~> 7.0.0'
gem 'blacklight_advanced_search', git: 'https://github.com/projectblacklight/blacklight_advanced_search.git', :branch => 'master'
gem 'blacklight_range_limit', '~> 7.0.0'
gem 'chosen-rails' # jquery multiselect plugin for advanced search
gem 'bootstrap', '~> 4.0'
gem 'popper_js'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'geoblacklight', '~> 2.2.0'
gem "rubyzip", ">= 1.3.0"
gem "awesome_print"
# Image migration
gem 'geoblacklight_sidecar_images', '~> 0.6.0'
gem 'carrierwave', '~> 1.2'
gem 'mini_magick', '~> 4.9.4'
gem 'statesman', '~> 3.4.1'
gem 'sidekiq', '~> 5.1.3'
gem 'sidekiq-failures', '~> 1.0.0'
gem 'down', '~> 4.4'
gem 'addressable', '~> 2.5.0'
gem 'inline_svg', '~> 1.3.0'
# gem 'geoblacklight-icons', '~> 1.2.0'
gem 'handlebars_assets', '~> 0.23.0'
gem 'geoblacklight-icons', git: 'https://github.com/geoblacklight/geoblacklight-icons.git', :ref => '84da81140e7ef93e7241b7753c01d7f709216f2b'
gem 'solr_wrapper', git: 'https://github.com/cbeer/solr_wrapper.git', branch: 'master'
gem 'rsolr', '>= 1.0'
gem 'jquery-rails'
gem "devise", ">= 4.7.1"
gem 'devise-guests', '~> 0.6'
gem 'haml'
gem 'chronic'
# Dotenv
gem 'dotenv-rails'
# Feedback
gem 'pointless_feedback'
gem 'whenever', '~> 0.9.0', require: false
gem 'sitemap_generator', '~> 6.0.2'
gem 'exception_notification', '~> 4.3.0'
group :test do
gem 'webdrivers'
gem 'm', '~> 1.5.0'
gem 'minitest'
gem 'minitest-ci', '~> 3.4.0'
gem 'minitest-reporters'
end