Sha256: 59b68b33291fbb47923f8417d6b72741edf0947ab05d79698e462a7001344666

Contents?: true

Size: 703 Bytes

Versions: 12

Compression:

Stored size: 703 Bytes

Contents

# frozen_string_literal: true
gem 'blacklight', '~> 7.0'
gem 'geoblacklight', '~> 3.0'
gem 'webpacker' unless Rails.version.to_s.start_with? '6.1.'
gem 'sprockets', '< 4.0' # Use sprockets less than 4.0, let webpacker users set this up themselves

# 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'

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
geoblacklight-3.8.1 template.rb
geoblacklight-3.8.0 template.rb
geoblacklight-3.7.0 template.rb
geoblacklight-3.6.0 template.rb
geoblacklight-3.5.0 template.rb
geoblacklight-4.0.0.pre.alpha.3 template.rb
geoblacklight-4.0.0.pre.alpha.2 template.rb
geoblacklight-4.0.0.pre.alpha.1 template.rb
geoblacklight-4.0.0.pre.alpha template.rb
geoblacklight-3.4.0 template.rb
geoblacklight-3.3.1 template.rb
geoblacklight-3.3.0 template.rb