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.
Files changed (61) hide show
  1. data/.gitignore +2 -0
  2. data/Gemfile +19 -0
  3. data/LICENSE +201 -0
  4. data/README.md +56 -0
  5. data/README.rdoc +8 -0
  6. data/Rakefile +38 -0
  7. data/bin/swift-manager +337 -0
  8. data/docs/examples.txt +407 -0
  9. data/html/CloudShell.html +308 -0
  10. data/html/CloudShell/Context.html +403 -0
  11. data/html/Configurator.html +270 -0
  12. data/html/Formatter.html +272 -0
  13. data/html/Object.html +165 -0
  14. data/html/Parser.html +291 -0
  15. data/html/README_rdoc.html +102 -0
  16. data/html/SwiftClient.html +656 -0
  17. data/html/SwiftManager.html +181 -0
  18. data/html/bin/swift-manager.html +103 -0
  19. data/html/created.rid +9 -0
  20. data/html/images/brick.png +0 -0
  21. data/html/images/brick_link.png +0 -0
  22. data/html/images/bug.png +0 -0
  23. data/html/images/bullet_black.png +0 -0
  24. data/html/images/bullet_toggle_minus.png +0 -0
  25. data/html/images/bullet_toggle_plus.png +0 -0
  26. data/html/images/date.png +0 -0
  27. data/html/images/find.png +0 -0
  28. data/html/images/loadingAnimation.gif +0 -0
  29. data/html/images/macFFBgHack.png +0 -0
  30. data/html/images/package.png +0 -0
  31. data/html/images/page_green.png +0 -0
  32. data/html/images/page_white_text.png +0 -0
  33. data/html/images/page_white_width.png +0 -0
  34. data/html/images/plugin.png +0 -0
  35. data/html/images/ruby.png +0 -0
  36. data/html/images/tag_green.png +0 -0
  37. data/html/images/wrench.png +0 -0
  38. data/html/images/wrench_orange.png +0 -0
  39. data/html/images/zoom.png +0 -0
  40. data/html/index.html +119 -0
  41. data/html/js/darkfish.js +116 -0
  42. data/html/js/jquery.js +32 -0
  43. data/html/js/quicksearch.js +114 -0
  44. data/html/js/thickbox-compressed.js +10 -0
  45. data/html/lib/cloud_shell_rb.html +75 -0
  46. data/html/lib/configurator_rb.html +75 -0
  47. data/html/lib/formatter_rb.html +75 -0
  48. data/html/lib/parser_rb.html +75 -0
  49. data/html/lib/swift-manager_version_rb.html +75 -0
  50. data/html/lib/swift_client_rb.html +75 -0
  51. data/html/rdoc.css +763 -0
  52. data/lib/cloud_shell.rb +127 -0
  53. data/lib/configurator.rb +69 -0
  54. data/lib/formatter.rb +42 -0
  55. data/lib/parser.rb +60 -0
  56. data/lib/swift-manager_version.rb +21 -0
  57. data/lib/swift_client.rb +172 -0
  58. data/swift-manager.gemspec +48 -0
  59. data/swift-manager.rdoc +2 -0
  60. data/test/tc_nothing.rb +14 -0
  61. 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
@@ -0,0 +1,2 @@
1
+ = swift-manager
2
+
@@ -0,0 +1,14 @@
1
+ require 'test/unit'
2
+
3
+ class TC_testNothing < Test::Unit::TestCase
4
+
5
+ def setup
6
+ end
7
+
8
+ def teardown
9
+ end
10
+
11
+ def test_the_truth
12
+ assert true
13
+ end
14
+ end
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