racked 0.7.0 → 0.9.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,15 @@
1
+ require 'mailaccounts.rb'
2
+ require 'soap/mapping'
3
+
4
+ module MailaccountsMappingRegistry
5
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
6
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
7
+
8
+ EncodedRegistry.set(
9
+ ArrayOfstring,
10
+ ::SOAP::SOAPArray,
11
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
12
+ { :type => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "string") }
13
+ )
14
+
15
+ end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 7
7
+ - 9
8
8
  - 0
9
- version: 0.7.0
9
+ version: 0.9.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Noto Modungwa
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-17 00:00:00 +02:00
17
+ date: 2011-04-06 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -83,7 +83,6 @@ extra_rdoc_files:
83
83
  - LICENSE.txt
84
84
  - README.rdoc
85
85
  files:
86
- - .document
87
86
  - Gemfile
88
87
  - Gemfile.lock
89
88
  - LICENSE.txt
@@ -92,7 +91,10 @@ files:
92
91
  - VERSION
93
92
  - lib/racked.rb
94
93
  - lib/racked/server.rb
95
- - racked.gemspec
94
+ - lib/soap_api/mailaccounts.rb
95
+ - lib/soap_api/mailaccountsClient.rb
96
+ - lib/soap_api/mailaccountsDriver.rb
97
+ - lib/soap_api/mailaccountsMappingRegistry.rb
96
98
  - test/helper.rb
97
99
  - test/test_racked.rb
98
100
  has_rdoc: true
@@ -104,12 +106,13 @@ rdoc_options: []
104
106
 
105
107
  require_paths:
106
108
  - lib
109
+ - lib/soap_api
107
110
  required_ruby_version: !ruby/object:Gem::Requirement
108
111
  none: false
109
112
  requirements:
110
113
  - - ">="
111
114
  - !ruby/object:Gem::Version
112
- hash: -149039151
115
+ hash: 2410697322953732488
113
116
  segments:
114
117
  - 0
115
118
  version: "0"
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
data/racked.gemspec DELETED
@@ -1,65 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{racked}
8
- s.version = "0.7.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Noto Modungwa"]
12
- s.date = %q{2010-12-17}
13
- s.description = %q{Allows you to manage your rackspace hosted mailboxes, eg. create a new mailbox.}
14
- s.email = %q{notomodungwa@gmail.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE.txt",
17
- "README.rdoc"
18
- ]
19
- s.files = [
20
- ".document",
21
- "Gemfile",
22
- "Gemfile.lock",
23
- "LICENSE.txt",
24
- "README.rdoc",
25
- "Rakefile",
26
- "VERSION",
27
- "lib/racked.rb",
28
- "lib/racked/server.rb",
29
- "racked.gemspec",
30
- "test/helper.rb",
31
- "test/test_racked.rb"
32
- ]
33
- s.homepage = %q{http://github.com/NoTiTo/racked}
34
- s.licenses = ["MIT"]
35
- s.require_paths = ["lib"]
36
- s.rubygems_version = %q{1.3.7}
37
- s.summary = %q{Rackspace mailbox management API}
38
- s.test_files = [
39
- "test/helper.rb",
40
- "test/test_racked.rb"
41
- ]
42
-
43
- if s.respond_to? :specification_version then
44
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
- s.specification_version = 3
46
-
47
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
48
- s.add_development_dependency(%q<shoulda>, [">= 0"])
49
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
50
- s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
51
- s.add_development_dependency(%q<rcov>, [">= 0"])
52
- else
53
- s.add_dependency(%q<shoulda>, [">= 0"])
54
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
55
- s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
56
- s.add_dependency(%q<rcov>, [">= 0"])
57
- end
58
- else
59
- s.add_dependency(%q<shoulda>, [">= 0"])
60
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
61
- s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
62
- s.add_dependency(%q<rcov>, [">= 0"])
63
- end
64
- end
65
-