Class: Discordrb::Emoji

Inherits:
Object
  • Object
show all
Includes:
IDObject
Defined in:
lib/discordrb/data.rb

Overview

Server emoji

Instance Attribute Summary collapse

Attributes included from IDObject

#id

Instance Method Summary collapse

Methods included from IDObject

#==, #creation_time, synthesise

Constructor Details

#initialize(data, bot, server) ⇒ Emoji



2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
# File 'lib/discordrb/data.rb', line 2002

def initialize(data, bot, server)
  @bot = bot
  @roles = nil

  @name = data['name']
  @server = server
  @id = data['id'].nil? ? nil : data['id'].to_i

  process_roles(data['roles']) if server
end

Instance Attribute Details

#nameString (readonly)



1994
1995
1996
# File 'lib/discordrb/data.rb', line 1994

def name
  @name
end

#rolesArray<Role> (readonly)



2000
2001
2002
# File 'lib/discordrb/data.rb', line 2000

def roles
  @roles
end

#serverServer (readonly)



1997
1998
1999
# File 'lib/discordrb/data.rb', line 1997

def server
  @server
end

Instance Method Details

#icon_urlString



2027
2028
2029
# File 'lib/discordrb/data.rb', line 2027

def icon_url
  API.emoji_icon_url(@id)
end

#inspectObject

The inspect method is overwritten to give more useful output



2032
2033
2034
# File 'lib/discordrb/data.rb', line 2032

def inspect
  "<Emoji name=#{@name} id=#{@id}>"
end

#mentionString Also known as: use, to_s



2014
2015
2016
# File 'lib/discordrb/data.rb', line 2014

def mention
  "<:#{@name}:#{@id}>"
end

#to_reactionString



2022
2023
2024
# File 'lib/discordrb/data.rb', line 2022

def to_reaction
  "#{@name}:#{@id}"
end