Class: Hydra::HeadGenerator

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

Instance Method Summary collapse

Instance Method Details

#create_configuration_filesObject

Copy all files in templates/config directory to host config



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/generators/hydra/head_generator.rb', line 45

def create_configuration_files
  copy_file "catalog_controller.rb", "app/controllers/catalog_controller.rb"

  # Initializers
  file_path = "config/initializers/hydra_config.rb"
  copy_file "config/initializers/hydra_config.rb", file_path
  unless model_name == 'user'
    insert_into_file file_path, :after => 'Hydra.configure do |config|' do
        "\n  config.user_model = '#{model_name.classify}'"
    end
  end

  # Role Mappings
  copy_file "config/role_map.yml", "config/role_map.yml"

  # CanCan ability.rb
  copy_file "ability.rb", "app/models/ability.rb"

  # Fedora & Solr YAML files
  invoke('active_fedora:config')

  copy_file 'config/blacklight.yml', force: true
end

#inject_hydra_user_behaviorObject

Add Hydra behaviors to the user model



70
71
72
73
74
75
76
77
78
79
80
# File 'lib/generators/hydra/head_generator.rb', line 70

def inject_hydra_user_behavior
  file_path = "app/models/#{model_name.underscore}.rb"
  if File.exists?(file_path)
    inject_into_class file_path, model_name.classify do
      "  # Connects this user object to Hydra behaviors.\n" +
      "  include Hydra::User\n\n"
    end
  else
    puts "     \e[31mFailure\e[0m  Hydra requires a user object in order to apply access controls. This generators assumes that the model is defined in the file #{file_path}, which does not exist.  If you used a different name, please re-run the generator and provide that name as an argument. Such as \b  rails -g hydra:head client"
  end
end

#inject_test_frameworkObject

Config Files & Initializers



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/generators/hydra/head_generator.rb', line 25

def inject_test_framework
  return if options[:'skip-rspec']

  application("\n" <<
    "    config.generators do |g|\n" <<
    "      g.test_framework :rspec, :spec => true\n" <<
    "    end\n\n"
  )

  gem_group :development, :test do
    gem "rspec-rails"
    gem 'jettywrapper'
  end

  Bundler.with_clean_env do
    run "bundle install"
  end
end