Class: Discorb::Activity
- Inherits:
-
Object
- Object
- Discorb::Activity
- Defined in:
- lib/discorb/gateway_requests.rb
Overview
Represents an activity for Gateway Command.
Instance Method Summary collapse
-
#initialize(name, type = :playing, url = nil) -> Activity
constructor
Initializes a new Activity.
- #inspect -> Object
-
#to_hash -> Hash
Converts the activity to a hash.
Constructor Details
#initialize(name, type = :playing, url = nil) -> Activity
Initializes a new Activity.
25 26 27 28 29 |
# File 'lib/discorb/gateway_requests.rb', line 25 def initialize(name, type = :playing, url = nil) @name = name @type = TYPES[type] or raise ArgumentError, "Invalid activity type: #{type}" @url = url end |
Instance Method Details
#inspect -> Object
44 45 46 |
# File 'lib/discorb/gateway_requests.rb', line 44 def inspect "#<#{self.class} @type=#{@type}>" end |
#to_hash -> Hash
Converts the activity to a hash.
36 37 38 39 40 41 42 |
# File 'lib/discorb/gateway_requests.rb', line 36 def to_hash { name: @name, type: @type, url: @url, } end |