Ruby:在 rails 框架(Jekyll 插件)上没有 Ruby 的参数化字符串

Ruby: parametrize string without Ruby on rails framework (Jekyll plugin)

我有一个插件,它从 post 的前面内容中获取属性并在永久链接中使用它。问题是我需要在将字符串放入永久链接之前清除字符串中的所有重音符号和变音符号。 rails 上的 Ruby 有一个名为 parametrize 的方法,它完全满足我的需要,但我不知道如何在插件中使用它。

这是我的插件代码:

module JekyllCustomPermalink
  class CustomPermalink < Jekyll::Generator
    safe true
    priority :low

    def generate(site)
      # nothing to do, wait for hook
    end

    Jekyll::Hooks.register :documents, :pre_render do |doc|
      begin
        # check if jekyll can resolve the url template
        doc.url
      rescue NoMethodError => error
        begin
          if !doc.collection.metadata.fetch("custom_permalink_placeholders").is_a?(Array)
            raise CustomPermalinkSetupError, "The custom placeholders need to be an array! Check the settings of your '#{doc.collection.label}' collection."
          end
          def doc.url_template
            @custom_url_template ||= collection.metadata.fetch("custom_permalink_placeholders").inject(collection.url_template){|o,m| o.sub ":" + m, data[m].to_s.parameterize}
          end
        rescue KeyError
          # "custom_permalink_placeholders"
          raise CustomPermalinkSetupError, "No custom placeholders defined for the '#{doc.collection.label}' collection. Define an array of placeholders under the key 'custom_permalink_placeholders'. \nCaused by: " + error.to_s
        end
      end
    end
  end
end

但是我得到这个错误:

john@arch-thinkpad ~/P/blog (master)> bundle exec jekyll serve --trace
Configuration file: /home/john/Projects/lyricall/_config.yml
            Source: /home/john/Projects/lyricall
       Destination: /home/john/Projects/lyricall/_site
 Incremental build: disabled. Enable with --incremental
      Generating...
       Jekyll Feed: Generating feed for posts
  Liquid Exception: undefined method `parameterize' for "Žďořšťáčik":String in feed.xml
bundler: failed to load command: jekyll (/home/john/.gem/ruby/3.0.0/bin/jekyll)
/usr/lib/ruby/gems/3.0.0/gems/jekyll_custom_permalink-0.0.1/lib/jekyll_custom_permalink/custom_permalink.rb:20:in `block in url_template': undefined method `parameterize' for "Žďořšťáčik":String (NoMethodError)

我做错了什么?我如何使用这种方法,它应该是字符串 class 的一部分,但显然不是?在 rails 框架上不使用 ruby 如何获得相同的结果?

信息:

感谢您的帮助

Rails 基础 Ruby 类 的添加,如 String#parameterize,是 Active Support Core Extensions 的一部分。 activesupport gem 可以独立于 Rails.

安装和使用

为了保持较低的默认占用空间,ActiveSupport 允许您 requirerequire 您想要使用的单个扩展。在您的情况下,您需要要求字符串变形扩展:

require 'active_support/core_ext/string/inflections'
"Kurt Gödel".parameterize 
=> "kurt-godel"