-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path3scale_client.gemspec
33 lines (29 loc) · 1.47 KB
/
3scale_client.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
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require '3scale/client/version'
Gem::Specification.new do |spec|
spec.name = "3scale_client"
spec.version = ThreeScale::Client::VERSION
spec.authors = ["Michal Cichra"] | ['Adam Cigánek', 'Tiago Macedo', 'Joaquin Rivera Padron (joahking)', 'Maria Pilar Guerra']
spec.email = ["support@3scale.net"]
spec.description = "This gem allows to easily connect an application that provides a Web Service with the 3scale API Management System to authorize it's users and report the usage."
spec.summary = 'Client for 3scale Web Service Management System API'
spec.homepage = "http://www.3scale.net"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
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"]
spec.required_ruby_version = '>= 2.1'
spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "rake"
spec.add_development_dependency "rdoc"
spec.add_development_dependency "fakeweb"
spec.add_development_dependency "mocha"
spec.add_development_dependency "net-http-persistent"
spec.add_development_dependency 'minitest'
spec.add_development_dependency 'rack'
spec.add_development_dependency 'appraisal'
spec.add_dependency 'nokogiri'
end