tfe-cloudfiles 1.4.7
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 +5 -0
- data/COPYING +12 -0
- data/Manifest +16 -0
- data/README.rdoc +71 -0
- data/Rakefile +34 -0
- data/TODO +0 -0
- data/VERSION +1 -0
- data/lib/cloudfiles.rb +74 -0
- data/lib/cloudfiles/authentication.rb +52 -0
- data/lib/cloudfiles/connection.rb +317 -0
- data/lib/cloudfiles/container.rb +299 -0
- data/lib/cloudfiles/storage_object.rb +257 -0
- data/test/cf-testunit.rb +157 -0
- data/test/cloudfiles_authentication_test.rb +48 -0
- data/test/cloudfiles_connection_test.rb +286 -0
- data/test/cloudfiles_container_test.rb +198 -0
- data/test/cloudfiles_storage_object_test.rb +209 -0
- data/test/test_helper.rb +5 -0
- data/tfe-cloudfiles.gemspec +67 -0
- metadata +102 -0
metadata
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: tfe-cloudfiles
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 1
|
|
7
|
+
- 4
|
|
8
|
+
- 7
|
|
9
|
+
version: 1.4.7
|
|
10
|
+
platform: ruby
|
|
11
|
+
authors:
|
|
12
|
+
- H. Wade Minter
|
|
13
|
+
- Rackspace Hosting
|
|
14
|
+
- Todd Eichel
|
|
15
|
+
autorequire:
|
|
16
|
+
bindir: bin
|
|
17
|
+
cert_chain: []
|
|
18
|
+
|
|
19
|
+
date: 2010-05-27 00:00:00 -04:00
|
|
20
|
+
default_executable:
|
|
21
|
+
dependencies:
|
|
22
|
+
- !ruby/object:Gem::Dependency
|
|
23
|
+
name: mime-types
|
|
24
|
+
prerelease: false
|
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
segments:
|
|
30
|
+
- 1
|
|
31
|
+
- 16
|
|
32
|
+
version: "1.16"
|
|
33
|
+
type: :runtime
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
description: A Ruby version of the Rackspace Cloud Files API.
|
|
36
|
+
email:
|
|
37
|
+
- wade.minter@rackspace.com
|
|
38
|
+
- todd@toddeichel.com
|
|
39
|
+
executables: []
|
|
40
|
+
|
|
41
|
+
extensions: []
|
|
42
|
+
|
|
43
|
+
extra_rdoc_files:
|
|
44
|
+
- README.rdoc
|
|
45
|
+
- TODO
|
|
46
|
+
files:
|
|
47
|
+
- .gitignore
|
|
48
|
+
- COPYING
|
|
49
|
+
- Manifest
|
|
50
|
+
- README.rdoc
|
|
51
|
+
- Rakefile
|
|
52
|
+
- TODO
|
|
53
|
+
- VERSION
|
|
54
|
+
- lib/cloudfiles.rb
|
|
55
|
+
- lib/cloudfiles/authentication.rb
|
|
56
|
+
- lib/cloudfiles/connection.rb
|
|
57
|
+
- lib/cloudfiles/container.rb
|
|
58
|
+
- lib/cloudfiles/storage_object.rb
|
|
59
|
+
- test/cf-testunit.rb
|
|
60
|
+
- test/cloudfiles_authentication_test.rb
|
|
61
|
+
- test/cloudfiles_connection_test.rb
|
|
62
|
+
- test/cloudfiles_container_test.rb
|
|
63
|
+
- test/cloudfiles_storage_object_test.rb
|
|
64
|
+
- test/test_helper.rb
|
|
65
|
+
- tfe-cloudfiles.gemspec
|
|
66
|
+
has_rdoc: true
|
|
67
|
+
homepage: http://www.rackspacecloud.com/cloud_hosting_products/files
|
|
68
|
+
licenses: []
|
|
69
|
+
|
|
70
|
+
post_install_message:
|
|
71
|
+
rdoc_options:
|
|
72
|
+
- --charset=UTF-8
|
|
73
|
+
require_paths:
|
|
74
|
+
- lib
|
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
segments:
|
|
80
|
+
- 0
|
|
81
|
+
version: "0"
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
segments:
|
|
87
|
+
- 0
|
|
88
|
+
version: "0"
|
|
89
|
+
requirements: []
|
|
90
|
+
|
|
91
|
+
rubyforge_project:
|
|
92
|
+
rubygems_version: 1.3.6
|
|
93
|
+
signing_key:
|
|
94
|
+
specification_version: 3
|
|
95
|
+
summary: A Ruby API into Rackspace Cloud Files
|
|
96
|
+
test_files:
|
|
97
|
+
- test/cf-testunit.rb
|
|
98
|
+
- test/cloudfiles_authentication_test.rb
|
|
99
|
+
- test/cloudfiles_connection_test.rb
|
|
100
|
+
- test/cloudfiles_container_test.rb
|
|
101
|
+
- test/cloudfiles_storage_object_test.rb
|
|
102
|
+
- test/test_helper.rb
|