swift-manager 0.0.4
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.
- data/.gitignore +2 -0
- data/Gemfile +19 -0
- data/LICENSE +201 -0
- data/README.md +56 -0
- data/README.rdoc +8 -0
- data/Rakefile +38 -0
- data/bin/swift-manager +337 -0
- data/docs/examples.txt +407 -0
- data/html/CloudShell.html +308 -0
- data/html/CloudShell/Context.html +403 -0
- data/html/Configurator.html +270 -0
- data/html/Formatter.html +272 -0
- data/html/Object.html +165 -0
- data/html/Parser.html +291 -0
- data/html/README_rdoc.html +102 -0
- data/html/SwiftClient.html +656 -0
- data/html/SwiftManager.html +181 -0
- data/html/bin/swift-manager.html +103 -0
- data/html/created.rid +9 -0
- data/html/images/brick.png +0 -0
- data/html/images/brick_link.png +0 -0
- data/html/images/bug.png +0 -0
- data/html/images/bullet_black.png +0 -0
- data/html/images/bullet_toggle_minus.png +0 -0
- data/html/images/bullet_toggle_plus.png +0 -0
- data/html/images/date.png +0 -0
- data/html/images/find.png +0 -0
- data/html/images/loadingAnimation.gif +0 -0
- data/html/images/macFFBgHack.png +0 -0
- data/html/images/package.png +0 -0
- data/html/images/page_green.png +0 -0
- data/html/images/page_white_text.png +0 -0
- data/html/images/page_white_width.png +0 -0
- data/html/images/plugin.png +0 -0
- data/html/images/ruby.png +0 -0
- data/html/images/tag_green.png +0 -0
- data/html/images/wrench.png +0 -0
- data/html/images/wrench_orange.png +0 -0
- data/html/images/zoom.png +0 -0
- data/html/index.html +119 -0
- data/html/js/darkfish.js +116 -0
- data/html/js/jquery.js +32 -0
- data/html/js/quicksearch.js +114 -0
- data/html/js/thickbox-compressed.js +10 -0
- data/html/lib/cloud_shell_rb.html +75 -0
- data/html/lib/configurator_rb.html +75 -0
- data/html/lib/formatter_rb.html +75 -0
- data/html/lib/parser_rb.html +75 -0
- data/html/lib/swift-manager_version_rb.html +75 -0
- data/html/lib/swift_client_rb.html +75 -0
- data/html/rdoc.css +763 -0
- data/lib/cloud_shell.rb +127 -0
- data/lib/configurator.rb +69 -0
- data/lib/formatter.rb +42 -0
- data/lib/parser.rb +60 -0
- data/lib/swift-manager_version.rb +21 -0
- data/lib/swift_client.rb +172 -0
- data/swift-manager.gemspec +48 -0
- data/swift-manager.rdoc +2 -0
- data/test/tc_nothing.rb +14 -0
- metadata +174 -0
@@ -0,0 +1,48 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Murali Raju (<murali.raju@.com>)
|
3
|
+
# Copyright:: Copyright (c) 2011 Murali Raju.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
# -*- encoding: utf-8 -*-
|
19
|
+
$:.push File.expand_path("../lib", __FILE__)
|
20
|
+
require "swift-manager_version"
|
21
|
+
|
22
|
+
Gem::Specification.new do |s|
|
23
|
+
s.name = "swift-manager"
|
24
|
+
s.version = SwiftManager::VERSION
|
25
|
+
s.authors = ["Murali Raju"]
|
26
|
+
s.email = ["murali.raju@appliv.com"]
|
27
|
+
s.homepage = "http://github.com/murraju/swift-manager"
|
28
|
+
s.summary = %q{A Ruby OpenStack Swift Client}
|
29
|
+
s.description = %q{A Ruby OpenStack Swift Client to create, manage and test Object Storage based on Swift and AWS S3}
|
30
|
+
|
31
|
+
s.rubyforge_project = "swift-manager"
|
32
|
+
|
33
|
+
s.files = `git ls-files`.split("\n")
|
34
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
35
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
36
|
+
s.require_paths = ["lib"]
|
37
|
+
|
38
|
+
# specify any dependencies here; for example:
|
39
|
+
# s.add_development_dependency "rspec"
|
40
|
+
# s.add_runtime_dependency "rest-client"
|
41
|
+
|
42
|
+
s.add_dependency("gli")
|
43
|
+
s.add_dependency("fog")
|
44
|
+
s.add_dependency("json")
|
45
|
+
s.add_dependency("rainbow")
|
46
|
+
s.add_dependency("progress_bar")
|
47
|
+
s.add_dependency("terminal-table")
|
48
|
+
end
|
data/swift-manager.rdoc
ADDED
data/test/tc_nothing.rb
ADDED
metadata
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: swift-manager
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.4
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Murali Raju
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: gli
|
16
|
+
requirement: &70164473739460 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70164473739460
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: fog
|
27
|
+
requirement: &70164473738700 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70164473738700
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: json
|
38
|
+
requirement: &70164473738280 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70164473738280
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rainbow
|
49
|
+
requirement: &70164473737860 !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
type: :runtime
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *70164473737860
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: progress_bar
|
60
|
+
requirement: &70164473737420 !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
type: :runtime
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *70164473737420
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: terminal-table
|
71
|
+
requirement: &70164473736820 !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: *70164473736820
|
80
|
+
description: A Ruby OpenStack Swift Client to create, manage and test Object Storage
|
81
|
+
based on Swift and AWS S3
|
82
|
+
email:
|
83
|
+
- murali.raju@appliv.com
|
84
|
+
executables:
|
85
|
+
- swift-manager
|
86
|
+
extensions: []
|
87
|
+
extra_rdoc_files: []
|
88
|
+
files:
|
89
|
+
- .gitignore
|
90
|
+
- Gemfile
|
91
|
+
- LICENSE
|
92
|
+
- README.md
|
93
|
+
- README.rdoc
|
94
|
+
- Rakefile
|
95
|
+
- bin/swift-manager
|
96
|
+
- docs/examples.txt
|
97
|
+
- html/CloudShell.html
|
98
|
+
- html/CloudShell/Context.html
|
99
|
+
- html/Configurator.html
|
100
|
+
- html/Formatter.html
|
101
|
+
- html/Object.html
|
102
|
+
- html/Parser.html
|
103
|
+
- html/README_rdoc.html
|
104
|
+
- html/SwiftClient.html
|
105
|
+
- html/SwiftManager.html
|
106
|
+
- html/bin/swift-manager.html
|
107
|
+
- html/created.rid
|
108
|
+
- html/images/brick.png
|
109
|
+
- html/images/brick_link.png
|
110
|
+
- html/images/bug.png
|
111
|
+
- html/images/bullet_black.png
|
112
|
+
- html/images/bullet_toggle_minus.png
|
113
|
+
- html/images/bullet_toggle_plus.png
|
114
|
+
- html/images/date.png
|
115
|
+
- html/images/find.png
|
116
|
+
- html/images/loadingAnimation.gif
|
117
|
+
- html/images/macFFBgHack.png
|
118
|
+
- html/images/package.png
|
119
|
+
- html/images/page_green.png
|
120
|
+
- html/images/page_white_text.png
|
121
|
+
- html/images/page_white_width.png
|
122
|
+
- html/images/plugin.png
|
123
|
+
- html/images/ruby.png
|
124
|
+
- html/images/tag_green.png
|
125
|
+
- html/images/wrench.png
|
126
|
+
- html/images/wrench_orange.png
|
127
|
+
- html/images/zoom.png
|
128
|
+
- html/index.html
|
129
|
+
- html/js/darkfish.js
|
130
|
+
- html/js/jquery.js
|
131
|
+
- html/js/quicksearch.js
|
132
|
+
- html/js/thickbox-compressed.js
|
133
|
+
- html/lib/cloud_shell_rb.html
|
134
|
+
- html/lib/configurator_rb.html
|
135
|
+
- html/lib/formatter_rb.html
|
136
|
+
- html/lib/parser_rb.html
|
137
|
+
- html/lib/swift-manager_version_rb.html
|
138
|
+
- html/lib/swift_client_rb.html
|
139
|
+
- html/rdoc.css
|
140
|
+
- lib/cloud_shell.rb
|
141
|
+
- lib/configurator.rb
|
142
|
+
- lib/formatter.rb
|
143
|
+
- lib/parser.rb
|
144
|
+
- lib/swift-manager_version.rb
|
145
|
+
- lib/swift_client.rb
|
146
|
+
- swift-manager.gemspec
|
147
|
+
- swift-manager.rdoc
|
148
|
+
- test/tc_nothing.rb
|
149
|
+
homepage: http://github.com/murraju/swift-manager
|
150
|
+
licenses: []
|
151
|
+
post_install_message:
|
152
|
+
rdoc_options: []
|
153
|
+
require_paths:
|
154
|
+
- lib
|
155
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
156
|
+
none: false
|
157
|
+
requirements:
|
158
|
+
- - ! '>='
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '0'
|
161
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
|
+
none: false
|
163
|
+
requirements:
|
164
|
+
- - ! '>='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
requirements: []
|
168
|
+
rubyforge_project: swift-manager
|
169
|
+
rubygems_version: 1.8.10
|
170
|
+
signing_key:
|
171
|
+
specification_version: 3
|
172
|
+
summary: A Ruby OpenStack Swift Client
|
173
|
+
test_files:
|
174
|
+
- test/tc_nothing.rb
|