Class: Mangadex::MangadexObject
Direct Known Subclasses
Api::Response, Api::Response::Error, Author, Chapter, CoverArt, CustomList, Manga, Relationship, ReportReason, ScanlationGroup, Tag, Upload, User
Instance Attribute Summary
#attributes, #id, #relationships, #type
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
Returns a new instance of MangadexObject.
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/mangadex/mangadex_object.rb', line 19
def initialize(**args)
args.keys.each do |attribute|
original_attribute = attribute
attribute = attribute.to_s.underscore
attribute_to_set = "#{attribute}="
if respond_to?(attribute_to_set)
if %w(created_at updated_at publish_at).include?(attribute)
args[original_attribute] = DateTime.parse(args[original_attribute])
end
send(attribute_to_set, args[original_attribute])
else
warn("Ignoring setter `#{attribute_to_set}` on #{self.class.name}...")
end
end
self.type = self.class.type if self.type.blank?
end
|
Class Method Details
.attributes_to_inspect ⇒ Object
10
11
12
13
14
15
16
17
|
# File 'lib/mangadex/mangadex_object.rb', line 10
def self.attributes_to_inspect
to_inspect = [:id, :type]
if self.respond_to?(:inspect_attributes)
to_inspect.concat(Array(self.inspect_attributes))
end
to_inspect
end
|
Instance Method Details
#eq?(other) ⇒ Boolean
39
40
41
42
43
|
# File 'lib/mangadex/mangadex_object.rb', line 39
def eq?(other)
return id == other.id if respond_to?(:id) && other.respond_to?(:id)
super
end
|
#hash ⇒ Object
45
46
47
|
# File 'lib/mangadex/mangadex_object.rb', line 45
def hash
id.hash
end
|
#inspect ⇒ Object
49
50
51
52
53
54
55
56
57
58
59
60
|
# File 'lib/mangadex/mangadex_object.rb', line 49
def inspect
string = "#<#{self.class.name}:#{self.object_id} "
fields = self.class.attributes_to_inspect.map do |field|
value = self.send(field)
if !value.nil?
"@#{field}=\"#{value}\""
end
rescue => error
"@#{field}[!]={#{error.class.name}: #{error.message}}"
end.compact
string << fields.join(" ") << ">"
end
|