forked from ManageIQ/azure-armrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-armrest.gemspec
34 lines (30 loc) · 1.4 KB
/
azure-armrest.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
34
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'azure/armrest/version'
Gem::Specification.new do |spec|
spec.name = 'azure-armrest'
spec.version = Azure::Armrest::VERSION
spec.authors = ['Daniel J. Berger', 'Bronagh Sorota', 'Greg Blomquist', 'Bill Wei']
spec.summary = 'An interface for ARM/JSON Azure REST API'
spec.homepage = 'http://github.com/ManageIQ/azure-armrest'
spec.license = 'Apache 2.0'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.description = <<-EOF
This is a Ruby interface for Azure using the newer REST API. This is
different than the current azure gem, which uses the older (XML) interface
behind the scenes.
EOF
spec.add_dependency 'json'
spec.add_dependency 'rest-client', '~> 2.0.0.rc'
spec.add_dependency 'cache_method', '~> 0.2.7'
spec.add_dependency 'azure-signature', '~> 0.2.0'
spec.add_dependency 'activesupport', '>= 1.2.0'
spec.add_dependency 'nokogiri', '~> 1.6.0'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'codeclimate-test-reporter'
spec.add_development_dependency 'timecop', '~> 0.7'
end