неинициализированные константы MetaTags, когда гем добавлен в движок rails и загружен в другое приложение - PullRequest
1 голос
/ 24 мая 2019

Я сейчас создаю движок rails, и в моем файле gemspec у меня есть этот драгоценный камень meta-tags, который я добавил вот так

insurance.gemspec

$:.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "insurance/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
  spec.name        = "insurance"
  spec.version     = Insurance::VERSION
  spec.authors     = ["Loanstreet Tech"]
  spec.email       = ["techgroup@finology.com.my"]
  spec.homepage    = "https://github.com/loanstreet/insurance_loanstreet_plugin"
  spec.summary     = "Insurance Loanstreet."
  spec.description = "Loanstreet Insurance."
  spec.license     = "MIT"

  spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]

  spec.add_dependency "rails", "~> 5.0.1"

  spec.add_dependency "pg", "0.18"
  spec.add_dependency "meta-tags"

end

, и у меня также естьдобавил файл, чтобы скопировать конфигурацию инициализатора этого драгоценного камня в мое основное приложение как это

в lib / generators / insurance / install_generator.rb

module Insurance
  class InstallGenerator < Rails::Generators::Base
    source_root File.expand_path("../../templates", __FILE__)

    def copy_initializer
      template 'meta_tags.rb', 'config/initializers/meta_tags.rb'
    end
  end
end

В моем main_application конфигурации / инициализаторахФайл /meta_tags.rb создается следующим образом, когда я запускаю rails g insurance:install

config / initializers / meta_tags.rb

MetaTags.configure do |config|
  # How many characters should the title meta tag have at most. Default is 70.
  # Set to nil or 0 to remove limits.
  config.title_limit = 140

  # When true, site title will be truncated instead of title. Default is false.
  # config.truncate_site_title_first = false

  # Maximum length of the page description. Default is 300.
  # Set to nil or 0 to remove limits.
  config.description_limit = 500

  # Maximum length of the keywords meta tag. Default is 255.
  # config.keywords_limit = 255

  # Default separator for keywords meta tag (used when an Array passed with
  # the list of keywords). Default is ", ".
  # config.keywords_separator = ', '

  # When true, keywords will be converted to lowercase, otherwise they will
  # appear on the page as is. Default is true.
  # config.keywords_lowercase = true

  # When false, generated meta tags will be self-closing (<meta ... />) instead
  # of open (`<meta ...>`). Default is true.
  # config.open_meta_tags = true

  # List of additional meta tags that should use "property" attribute instead
  # of "name" attribute in <meta> tags.
  # config.property_tags.push(
  #   'x-hearthstone:deck',
  # )
end

Но когда я запускаю rails s, я получаю ошибку config/initializers/meta_tags.rb:2:in': неинициализированная константа MetaTags (NameError) `.

Итак, как еще я должен добавить драгоценный камень в мой двигатель рельсов и иметь возможность вызывать константу либо из моего двигателя рельсов, либо из моего основного приложения.

Любое предложение приветствуется

...