forked from ruby-openstack/ruby-openstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openstack.gemspec
77 lines (71 loc) · 2.4 KB
/
openstack.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path('lib', File.dirname(__FILE__))
require 'openstack/version'
Gem::Specification.new do |s|
s.name = "openstack"
s.version = OpenStack::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dan Prince", "Marios Andreou"]
s.date = "2013-07-09"
s.description = "API Binding for OpenStack"
s.email = ["[email protected]", "[email protected]"]
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"COPYING",
"README.rdoc",
"lib/openstack/version.rb",
"lib/openstack.rb",
"lib/openstack/compute/address.rb",
"lib/openstack/compute/connection.rb",
"lib/openstack/compute/flavor.rb",
"lib/openstack/compute/image.rb",
"lib/openstack/compute/metadata.rb",
"lib/openstack/compute/personalities.rb",
"lib/openstack/compute/server.rb",
"lib/openstack/connection.rb",
"lib/openstack/image/connection.rb",
"lib/openstack/network/connection.rb",
"lib/openstack/network/network.rb",
"lib/openstack/network/port.rb",
"lib/openstack/network/subnet.rb",
"lib/openstack/network/router.rb",
"lib/openstack/swift/connection.rb",
"lib/openstack/swift/container.rb",
"lib/openstack/swift/storage_object.rb",
"lib/openstack/volume/connection.rb",
"lib/openstack/volume/snapshot.rb",
"lib/openstack/volume/volume.rb",
"test/authentication_test.rb",
"test/connection_test.rb",
"test/exception_test.rb",
"test/metadata_test.rb",
"test/servers_test.rb",
"test/test_helper.rb"
]
s.homepage = "https://github.com/ruby-openstack/ruby-openstack"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.25"
s.summary = "OpenStack Ruby API"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency('mocha')
s.add_development_dependency('rake')
s.add_development_dependency('test-unit')
s.add_runtime_dependency('json')
else
s.add_dependency('mocha')
s.add_dependency('test-unit')
s.add_dependency('json')
end
else
s.add_dependency('mocha')
s.add_dependency('test-unit')
s.add_dependency('json')
end
end