Sha256: 658d402e6687b704a9f0e08f31f6afd71428f4529cc053a91979005a9133004f
Contents?: true
Size: 1.56 KB
Versions: 11
Compression:
Stored size: 1.56 KB
Contents
require 'rails/generators' module BlacklightGallery class Install < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) def assets copy_file "blacklight_gallery.css.scss", "app/assets/stylesheets/blacklight_gallery.css.scss" copy_file "blacklight_gallery.js", "app/assets/javascripts/blacklight_gallery.js" insert_into_file "app/assets/javascripts/application.js", after: '//= require blacklight/blacklight' do "\n//= require blacklight_gallery" end end def configuration inject_into_file 'app/controllers/catalog_controller.rb', after: "configure_blacklight do |config|" do "\n config.view.gallery.document_component = Blacklight::Gallery::DocumentComponent" \ "\n # config.view.gallery.classes = 'row-cols-2 row-cols-md-3'" \ "\n config.view.masonry.document_component = Blacklight::Gallery::DocumentComponent" \ "\n config.view.slideshow.document_component = Blacklight::Gallery::SlideshowComponent" \ "\n config.show.tile_source_field = :content_metadata_image_iiif_info_ssm" \ "\n config.show.partials.insert(1, :openseadragon)" end end def add_model_mixin inject_into_file 'app/models/solr_document.rb', after: "include Blacklight::Solr::Document" do "\n include Blacklight::Gallery::OpenseadragonSolrDocument\n" end end def add_openseadragon gem "openseadragon", ">= 0.2.0" Bundler.with_clean_env { run 'bundle install' } generate 'openseadragon:install' end end end
Version data entries
11 entries across 11 versions & 1 rubygems