-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclearbit-slack.gemspec
28 lines (23 loc) · 1.17 KB
/
clearbit-slack.gemspec
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'clearbit/slack/version'
Gem::Specification.new do |spec|
spec.name = "clearbit-slack"
spec.version = Clearbit::Slack::VERSION
spec.authors = ["Harlow Ward"]
spec.email = ["[email protected]"]
spec.summary = %q{Clean beautiful customer data. Now in Slack.}
spec.description = %q{Push rich Clearbit enrichment data in a Slack channel.}
spec.homepage = "https://github.com/clearbit/clearbit-slack"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'pry', '~> 0.10', '>= 0.10.1'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.5', '>= 3.5.0'
spec.add_development_dependency 'webmock', '~> 2'
spec.add_runtime_dependency 'clearbit', '~> 0.2', '>= 0.2.2'
spec.add_runtime_dependency 'maccman-mash', '~> 0.0', '>= 0.0.2'
spec.add_runtime_dependency 'slack-notifier', '~> 2.3.2', '>= 2.3.2'
end