Sha256: e5f3d867a7cfaf3d10d0c7d95da829a1bad17cef2e792d82e8769ecb50cfe259
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
module NeonRAW module Objects # The wiki page revision object. # @!attribute [r] reason # @return [String, nil] Returns the reason for the revision. # @!attribute [r] page # @return [String] Returns the name of the wiki page. # @!attribute [r] id # @return [String] Returns the ID of the revision. class WikiPageRevision # @!method initialize(client, data) # @param client [NeonRAW::Clients::Web/Installed/Script] The client. # @param data [Hash] The object data. def initialize(client, data) @client = client data.each do |key, value| # for consistency, empty strings/arrays/hashes are set to nil # because most of the keys returned by Reddit are nil when they # don't have a value, besides a few value = nil if ['', [], {}].include?(value) instance_variable_set(:"@#{key}", value) next if %i[timestamp author].include?(key) self.class.send(:attr_reader, key) end end # @!attribute [r] author # @return [String] Returns the user who made the revision. def author @author[:data][:name] end # The time and date when the revision was created. # @!method created # @return [Time] Returns when the revision was made. def created Time.at(@timestamp) end # The time and date when the revision was created in UTC. # @!method created_utc # @return [Time] Returns when the revision was made in UTC. def created_utc Time.at(@timestamp).utc end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
NeonRAW-0.1.7 | lib/NeonRAW/objects/wikipagerevision.rb |