-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzeta.gemspec
More file actions
32 lines (27 loc) · 1.18 KB
/
zeta.gemspec
File metadata and controls
32 lines (27 loc) · 1.18 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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zeta/version'
Gem::Specification.new do |spec|
spec.name = 'zeta'
spec.version = Zeta::VERSION
spec.authors = ['Jannis Hermanns']
spec.email = ['jannis@gmail.com']
spec.summary = 'Collects and validates the publish/consume contracts of your infrastructure'
spec.description = 'Vlad'
spec.homepage = 'https://github.com/moviepilot/zeta'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'rake'
spec.add_runtime_dependency 'lacerda', '>= 2.1.3'
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'httparty'
spec.add_runtime_dependency 'colorize'
spec.add_runtime_dependency 'webmock'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'guard-bundler'
spec.add_development_dependency 'guard-rspec'
spec.add_development_dependency "coveralls"
end