Method: ParseGemspec::Specification#to_hash_object

Defined in:
lib/parse_gemspec/specification.rb

#to_hash_objectObject

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: authors,
    description: description,
    email: email,
    homepage: homepage,
    licenses: licenses,
    metadata: ,
    summary: summary
  }
end