Sha256: b204d1d61b6a6971688433686e9396e9f37cf655eb1d0ae3e42269994cddea8b

Contents?: true

Size: 1.48 KB

Versions: 2

Compression:

Stored size: 1.48 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'slack/rtmapi2/version'

Gem::Specification.new do |spec|
  spec.name          = 'slack-rtmapi2'
  spec.version       = Slack::RtmApi2::VERSION
  spec.authors       = ['Stefan - Zipkid - Goethals', ' mackwic']
  spec.email         = ['stefan@zipkid.eu', 'mackwic@gmail.com']

  spec.summary = 'Naive wrapper for the Slack RTM api'
  spec.description = "slack-rtmapi2 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 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."
  spec.homepage = 'https://github.com/zipkid/slack-rtmapi2'
  spec.license = 'GPLv3'

  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata)
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.16'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'

  spec.add_runtime_dependency 'websocket-driver'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
slack-rtmapi2-2.0.2 slack-rtmapi2.gemspec
slack-rtmapi2-2.0.1 slack-rtmapi2.gemspec