Sha256: 639b49294dfec84da2344fbc834262d79288d2e0c67cf35567a179a5299e0349

Contents?: true

Size: 355 Bytes

Versions: 3

Compression:

Stored size: 355 Bytes

Contents

module Slatan
  module Mouth
    module Emoji
      @category = 'emoji'

      class << self
        ## @see https://api.slack.com/methods/emoji.list
        def list(options={})
          send('list', options)
        end

        private
        def send(method, msg)
          Mouth.send(@category, method, msg)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
slatan-0.2.2 lib/slatan/mouth/emoji.rb
slatan-0.2.0 lib/slatan/mouth/emoji.rb
slatan-0.1.0 lib/slatan/mouth/emoji.rb