forked from DieboldInc/vcloud-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvcloud.gemspec
More file actions
21 lines (17 loc) · 742 Bytes
/
vcloud.gemspec
File metadata and controls
21 lines (17 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Brian McClain", "Zach Robinson"]
gem.description = %q{vCloud Director API Ruby Bindings}
gem.summary = gem.summary
gem.homepage = "https://github.com/DieboldInc/vcloud-ruby"
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.name = "vcloud"
gem.require_paths = ["lib"]
gem.version = VCloud::VERSION
gem.required_ruby_version = '>= 1.9.1'
gem.add_dependency "rest-client"
gem.add_dependency 'nokogiri-happymapper'
end