Method: ParseGemspec::Specification#to_hash_object
- Defined in:
- lib/parse_gemspec/specification.rb
#to_hash_object ⇒ Object
rubocop:disable Metrics/MethodLength
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/parse_gemspec/specification.rb', line 22 def to_hash_object # rubocop:disable Metrics/MethodLength { name: name, version: version, authors: , description: description, email: email, homepage: homepage, licenses: licenses, metadata: , summary: summary } end |