class Rubyist::Gem::Version

Attributes

created_at[R]
downloads[R]
number[R]
summary[R]

Public Class Methods

new(hash) click to toggle source
# File lib/rubyist.rb, line 60
def initialize hash
  @number = hash['number']
  @downloads = hash['downloads_count']
  @summary = hash['summary']
  @created_at = Time.xmlschema hash['created_at']
end