net_app_manageability 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ require_relative 'error'
2
+ require_relative 'api/error'
3
+ require_relative 'nam_array'
4
+ require_relative 'nam_hash'
@@ -0,0 +1,3 @@
1
+ module NetAppManageability
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'net_app_manageability/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "net_app_manageability"
8
+ spec.version = NetAppManageability::VERSION
9
+ spec.authors = ["Rich Oliveri", "Oleg Barenboim", "Jason Frey"]
10
+ spec.email = ["roliveri@redhat.com", "chessbyte@gmail.com", "fryguy9@gmail.com"]
11
+
12
+ spec.summary = %q{Ruby binding to NetApp Manageability SDK.}
13
+ spec.description = %q{Ruby binding to NetApp Manageability SDK.}
14
+ spec.homepage = "http://github.com/ManageIQ/net_app_manageability"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.extensions = ["ext/net_app_manageability/extconf.rb"]
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_development_dependency "bundler"
32
+ spec.add_development_dependency "rake", "~> 10.0"
33
+ spec.add_development_dependency "rake-compiler"
34
+ spec.add_development_dependency "rspec"
35
+ end
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: net_app_manageability
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rich Oliveri
8
+ - Oleg Barenboim
9
+ - Jason Frey
10
+ autorequire:
11
+ bindir: exe
12
+ cert_chain: []
13
+ date: 2015-06-26 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rake
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '10.0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '10.0'
43
+ - !ruby/object:Gem::Dependency
44
+ name: rake-compiler
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ - !ruby/object:Gem::Dependency
58
+ name: rspec
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ description: Ruby binding to NetApp Manageability SDK.
72
+ email:
73
+ - roliveri@redhat.com
74
+ - chessbyte@gmail.com
75
+ - fryguy9@gmail.com
76
+ executables: []
77
+ extensions:
78
+ - ext/net_app_manageability/extconf.rb
79
+ extra_rdoc_files: []
80
+ files:
81
+ - ".gitignore"
82
+ - ".rspec"
83
+ - Gemfile
84
+ - LICENSE.txt
85
+ - README.md
86
+ - Rakefile
87
+ - bin/console
88
+ - bin/setup
89
+ - examples/api_example.rb
90
+ - examples/client_example.rb
91
+ - examples/create_volume.rb
92
+ - examples/list_aggregates.rb
93
+ - examples/list_volumes.rb
94
+ - examples/lun_info.rb
95
+ - examples/nfs_root_hosts.rb
96
+ - examples/provision_nas_datastore_via_manageiq.rb
97
+ - ext/net_app_manageability/extconf.rb
98
+ - ext/net_app_manageability/net_app_manageability.c
99
+ - lib/net_app_manageability.rb
100
+ - lib/net_app_manageability/api.rb
101
+ - lib/net_app_manageability/api/error.rb
102
+ - lib/net_app_manageability/client.rb
103
+ - lib/net_app_manageability/client_stub.rb
104
+ - lib/net_app_manageability/error.rb
105
+ - lib/net_app_manageability/nam_array.rb
106
+ - lib/net_app_manageability/nam_hash.rb
107
+ - lib/net_app_manageability/ontap_method_map.rb
108
+ - lib/net_app_manageability/types.rb
109
+ - lib/net_app_manageability/version.rb
110
+ - net_app_manageability.gemspec
111
+ homepage: http://github.com/ManageIQ/net_app_manageability
112
+ licenses:
113
+ - MIT
114
+ metadata:
115
+ allowed_push_host: 'TODO: Set to ''http://mygemserver.com'''
116
+ post_install_message:
117
+ rdoc_options: []
118
+ require_paths:
119
+ - lib
120
+ required_ruby_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ required_rubygems_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ requirements: []
131
+ rubyforge_project:
132
+ rubygems_version: 2.0.14
133
+ signing_key:
134
+ specification_version: 4
135
+ summary: Ruby binding to NetApp Manageability SDK.
136
+ test_files: []