Class: Milestoner::Configuration::Transformers::Gems::URI
- Inherits:
-
Object
- Object
- Milestoner::Configuration::Transformers::Gems::URI
- Defined in:
- lib/milestoner/configuration/transformers/gems/uri.rb
Overview
Conditionally updates project URI based on specification home page URL.
Instance Method Summary collapse
- #call(attributes) ⇒ Object
-
#initialize(key = :project_uri, path: "#{Pathname.pwd.basename}.gemspec") ⇒ URI
constructor
A new instance of URI.
Constructor Details
#initialize(key = :project_uri, path: "#{Pathname.pwd.basename}.gemspec") ⇒ URI
Returns a new instance of URI.
14 15 16 17 18 |
# File 'lib/milestoner/configuration/transformers/gems/uri.rb', line 14 def initialize(key = :project_uri, path: "#{Pathname.pwd.basename}.gemspec", **) super(**) @key = key @path = path end |
Instance Method Details
#call(attributes) ⇒ Object
20 21 22 23 24 25 26 27 |
# File 'lib/milestoner/configuration/transformers/gems/uri.rb', line 20 def call attributes process attributes Success attributes rescue KeyError => error Failure step: :transform, payload: "Unable to transform #{key.inspect}, missing specifier: " \ "\"#{error.[/<.+>/]}\"." end |