Sha256: c45c1a9261c198a3f95742f0cebd059848714fdc8e25b915c6af9cb9c993f145

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

# coding: utf-8

require_relative 'lib/slack-rtmapi/version'

Gem::Specification.new do |s|
  s.name = 'slack-rtmapi-fork'
  s.version = SlackRTM::VERSION
  s.authors = ['mackwic']
  s.email = ['mackwic@gmail.com']
  s.summary = 'Naive wrapper for the Slack RTM api'
  s.description = "slack-rtmapi is dumb: no EventMachine, no Celluloid, no Actor
design pattern, no thread pool (thought, any of those would be trivial to add).
It's a simple blocking loop on top of a SSL socket with a websocket decoder.
Minimal dependency. Works out of the box. Hackable. Composable.

Oh, by the way, it implements very well the Slack API."
  s.homepage = 'https://github.com/mackwic/slack-rtmapi'
  s.license = 'GPLv3'

  s.files = `git ls-files -z`.split("\x0")
  s.executables   = s.files.grep(/^bin\//) { |f| File.basename(f) }
  s.test_files    = s.files.grep(/^(test|spec|features)\//)
  s.require_paths = ['lib']

  dev_dep = %w(
    bundler
    rake
    colored
  )

  run_dep = %w(
    websocket-driver
  )

  dev_dep.each { |d| s.add_development_dependency d }
  run_dep.each { |d| s.add_runtime_dependency d }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
slack-rtmapi-fork-0.9.1 slack-rtmapi.gemspec
slack-rtmapi-fork-1.0.0.rc5 slack-rtmapi.gemspec