module Rubygems::API::Activities
Method relating to RubyGems Activity
Public Instance Methods
just_updated(format = 'json', args = {})
click to toggle source
# File lib/rubygems_api/actions/activities.rb, line 13 def just_updated(format = 'json', args = {}) get("activity/just_updated.#{format}", format, nil, args) end
latest_activity(format = 'json', args = {})
click to toggle source
# File lib/rubygems_api/actions/activities.rb, line 9 def latest_activity(format = 'json', args = {}) get("activity/latest.#{format}", format, nil, args) end
rubygems_total_downloads(format = 'json', args = {})
click to toggle source
# File lib/rubygems_api/actions/activities.rb, line 5 def rubygems_total_downloads(format = 'json', args = {}) get("downloads.#{format}", format, nil, args) end