Sha256: 3935e48b2b21881036189c784151b37eebb2d2a65cc3fb402722f0c292ad2dbb
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
# coding: utf-8 require File.expand_path('../lib/slack-rtm-api/version', __FILE__) Gem::Specification.new do |spec| spec.name = 'slack-rtm-api' spec.version = SlackRTMApi::VERSION spec.authors = ['RĂ©mi Delhaye'] spec.email = ['contact@rdlh.io'] spec.summary = 'A simple Slack RTM API Client' spec.description = 'A simple Slack RTM API Client' spec.homepage = 'https://github.com/rdlh/slack-rtm-api' spec.license = 'MIT' spec.required_ruby_version = '~> 2.0' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] dev_dep = %w( bundler rake colored ) run_dep = %w( websocket-driver ) dev_dep.each { |d| spec.add_development_dependency d } run_dep.each { |d| spec.add_runtime_dependency d } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slack-rtm-api-0.1.0 | slack-rtm-api.gemspec |
slack-rtm-api-0.0.1 | slack-rtm-api.gemspec |