Class: Geoblacklight::Install

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/geoblacklight/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#add_spatial_search_behaviorObject



69
70
71
72
73
# File 'lib/generators/geoblacklight/install_generator.rb', line 69

def add_spatial_search_behavior
  inject_into_file 'app/models/search_builder.rb', after: 'include Blacklight::Solr::SearchBuilderBehavior' do
    "\n  include Geoblacklight::SpatialSearchBehavior"
  end
end

#add_unique_keyObject



63
64
65
66
67
# File 'lib/generators/geoblacklight/install_generator.rb', line 63

def add_unique_key
  inject_into_file 'app/models/solr_document.rb', after: "# self.unique_key = 'id'" do
    "\n  self.unique_key = 'layer_slug_s'"
  end
end

#assetsObject



33
34
35
36
37
38
39
40
41
42
# File 'lib/generators/geoblacklight/install_generator.rb', line 33

def assets
  copy_file 'geoblacklight.scss', 'app/assets/stylesheets/geoblacklight.scss'
  copy_file 'geoblacklight.js', 'app/assets/javascripts/geoblacklight.js'

  append_to_file 'config/initializers/assets.rb',
                 "\nRails.application.config.assets.precompile += %w( favicon.ico )\n"

  append_to_file 'config/initializers/assets.rb',
                 "\nRails.application.config.assets.paths << Rails.root.join('vendor', 'assets', 'images')\n"
end

#bundle_installObject



94
95
96
97
98
# File 'lib/generators/geoblacklight/install_generator.rb', line 94

def bundle_install
  Bundler.with_clean_env do
    run 'bundle install'
  end
end

#create_blacklight_catalogObject



44
45
46
47
# File 'lib/generators/geoblacklight/install_generator.rb', line 44

def create_blacklight_catalog
  remove_file 'app/controllers/catalog_controller.rb'
  copy_file 'catalog_controller.rb', 'app/controllers/catalog_controller.rb'
end

#create_downloads_directoryObject



82
83
84
# File 'lib/generators/geoblacklight/install_generator.rb', line 82

def create_downloads_directory
  FileUtils.mkdir_p('tmp/cache/downloads') unless File.directory?('tmp/cache/downloads')
end


86
87
88
# File 'lib/generators/geoblacklight/install_generator.rb', line 86

def disable_turbolinks
  gsub_file('app/assets/javascripts/application.js', %r{\/\/= require turbolinks}, '')
end

#include_geoblacklight_solrdocumentObject



57
58
59
60
61
# File 'lib/generators/geoblacklight/install_generator.rb', line 57

def include_geoblacklight_solrdocument
  inject_into_file 'app/models/solr_document.rb', after: 'include Blacklight::Solr::Document' do
    "\n include Geoblacklight::SolrDocument"
  end
end

#inject_disable_jquery_animationsObject

Turn off JQuery animations during testing



76
77
78
79
80
# File 'lib/generators/geoblacklight/install_generator.rb', line 76

def inject_disable_jquery_animations
  inject_into_file 'app/views/layouts/application.html.erb', before: '</head>' do
    "  <%= javascript_tag '$.fx.off = true;' if Rails.env.test? %>\n"
  end
end

#inject_geoblacklight_routesObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/generators/geoblacklight/install_generator.rb', line 13

def inject_geoblacklight_routes
  routes = "concern :gbl_exportable, Geoblacklight::Routes::Exportable.new\nresources :solr_documents, only: [:show], path: '/catalog', controller: 'catalog' do\nconcerns :gbl_exportable\nend\nconcern :gbl_wms, Geoblacklight::Routes::Wms.new\nnamespace :wms do\nconcerns :gbl_wms\nend\nconcern :gbl_downloadable, Geoblacklight::Routes::Downloadable.new\nnamespace :download do\nconcerns :gbl_downloadable\nend\nresources :download, only: [:show]\n"

  inject_into_file 'config/routes.rb', routes, before: /^end/
end

#mount_geoblacklight_engineObject



9
10
11
# File 'lib/generators/geoblacklight/install_generator.rb', line 9

def mount_geoblacklight_engine
  inject_into_file 'config/routes.rb', "mount Geoblacklight::Engine => 'geoblacklight'\n", before: /^end/
end

#rails_configObject



49
50
51
# File 'lib/generators/geoblacklight/install_generator.rb', line 49

def rails_config
  copy_file 'settings.yml', 'config/settings.yml'
end

#solr_configObject



53
54
55
# File 'lib/generators/geoblacklight/install_generator.rb', line 53

def solr_config
  directory '../../../../solr', 'solr'
end

#update_application_nameObject



90
91
92
# File 'lib/generators/geoblacklight/install_generator.rb', line 90

def update_application_name
  gsub_file('config/locales/blacklight.en.yml', 'Blacklight', 'GeoBlacklight')
end