Last active
February 21, 2021 12:35
-
-
Save ShawnWon/e8cfd17f57e14319b84dc0ced701b41d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#gem 'rails', '>= 5.2.0' | |
# frozen_string_literal: true | |
gem 'blacklight', '>= 7.2.0' | |
gem 'geoblacklight', '~> 3.2.0' | |
gem 'blacklight_range_limit', '~> 7.0.0' | |
gem 'geoblacklight_sidecar_images' | |
gem 'mini_magick', '~> 4.9.4' | |
gem 'carrierwave', '~> 1.2' | |
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 'handlebars_assets', '~> 0.23.0' | |
gem 'jquery-rails' | |
gem 'haml' | |
gem 'chronic' | |
gem 'blacklight-gallery', '~> 1.0.0' | |
#gem 'solr_wrapper', git: 'https://github.com/cbeer/solr_wrapper.git', branch: 'master' | |
#gem 'geoblacklight-icons', git: 'https://github.com/geoblacklight/geoblacklight-icons.git', :ref => '84da81140e7ef93e7241b7753c01d7f709216f2b' | |
# Hack for https://github.com/rails/rails/issues/35153 | |
# Adapted from https://github.com/projectblacklight/blacklight/pull/2065 | |
gemfile = File.expand_path('Gemfile') | |
IO.write(gemfile, File.open(gemfile) do |f| | |
text = f.read | |
text.gsub(/^gem 'sqlite3'$/, 'gem "sqlite3", "~> 1.3.6"') | |
end) | |
run 'bundle install' | |
generate 'blacklight:install' , '--devise' | |
generate 'geoblacklight:install', '-f' | |
generate 'geoblacklight:webpacker', '-f' | |
rake 'db:migrate' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment