-
Notifications
You must be signed in to change notification settings - Fork 14
/
marathon-api.gemspec
31 lines (27 loc) · 1.21 KB
/
marathon-api.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
29
30
31
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/marathon/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "marathon-api"
gem.version = Marathon::VERSION
gem.authors = ["Felix Bechstein"]
gem.email = %w{[email protected]}
gem.description = %q{A simple REST client for the Marathon Remote API}
gem.summary = %q{A simple REST client for the Marathon Remote API}
gem.homepage = 'https://github.com/otto-de/marathon-api'
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = %w{lib}
gem.add_dependency 'json'
gem.add_dependency 'httparty', '>= 0.11'
gem.add_dependency 'trollop', '>= 2.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'vcr', '>= 2.7.0'
gem.add_development_dependency 'webmock', '< 2.0.0'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'cane'
gem.add_development_dependency 'simplecov'
end