Sha256: 78b957601b711c563de4fa9af24f661f4a3a017fc0975dc9afe6f7b05929e0b7
Contents?: true
Size: 1.08 KB
Versions: 1
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' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-rtmapi-1.0.0.rc4 | slack-rtmapi.gemspec |