demarches-normaliennes/app/lib/github/releases.rb
2016-12-02 17:03:52 +01:00

11 lines
No EOL
285 B
Ruby

class Github::Releases
def self.latest
latest_release = Github::API.latest_release
return nil if latest_release.nil?
release = Hashie::Mash.new JSON.parse(latest_release)
release.published_at = release.published_at.to_date.strftime('%d/%m/%Y')
release
end
end