-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslack-rtm-api.gemspec
More file actions
32 lines (27 loc) · 1.05 KB
/
slack-rtm-api.gemspec
File metadata and controls
32 lines (27 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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