-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoperationcode-slack.gemspec
More file actions
31 lines (27 loc) · 1.3 KB
/
operationcode-slack.gemspec
File metadata and controls
31 lines (27 loc) · 1.3 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'operationcode/slack/version'
Gem::Specification.new do |spec|
spec.name = 'operationcode-slack'
spec.version = Operationcode::Slack::VERSION
spec.authors = ['RickR']
spec.email = ["rrein@akamai.com"]
spec.summary = %q{Operation Code Slack library}
spec.description = %q{This is a gem to interact with the Slack for all apps on the Opeartion Code platform}
spec.homepage = 'https://github.com/OperationCode/operationcode-slack'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.12'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rb-readline'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'mocha'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0.0'
spec.add_dependency 'httparty'
spec.add_dependency 'activesupport'
end