Sha256: 91ddc65d5679de77e792665dfeb18d9b2b232bb0af920ee384a8655b22b4ad12
Contents?: true
Size: 525 Bytes
Versions: 7
Compression:
Stored size: 525 Bytes
Contents
# frozen_string_literal: true gem "blacklight", ">= 6.1" gem "jettywrapper", ">= 2.0" gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw] run "bundle install" # run the blacklight install generator options = ENV.fetch("BLACKLIGHT_INSTALL_OPTIONS", '--devise --marc --jettywrapper') generate 'blacklight:install', options # run the database migrations rake "db:migrate" # index some data if options =~ /jettywrapper/ rake "jetty:clean" rake "jetty:start" rake "blacklight:index:seed" rake "jetty:stop" end
Version data entries
7 entries across 7 versions & 1 rubygems