gprov 0.0.3 → 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/README.markdown
CHANGED
|
@@ -4,4 +4,17 @@ Ruby-GProv
|
|
|
4
4
|
Description
|
|
5
5
|
-----------
|
|
6
6
|
|
|
7
|
-
Ruby implementation of the [Google
|
|
7
|
+
This is a ruby implementation of the Ruby implementation of the [Google
|
|
8
|
+
Provisioning API][api]. It's designed to provide an object oriented approach to
|
|
9
|
+
the API instead of the weird procedural approach that's the straight
|
|
10
|
+
implementation. By and large it's modelled in the manner of CRUD.
|
|
11
|
+
|
|
12
|
+
[api]: http://code.google.com/googleapps/domain/gdata_provisioning_api_v2.0_reference.html "Google Provisioning API v2.0"
|
|
13
|
+
|
|
14
|
+
- - -
|
|
15
|
+
|
|
16
|
+
Examples
|
|
17
|
+
--------
|
|
18
|
+
|
|
19
|
+
[gtool](https://github.com/adrienthebo/gtool) - a command line interface to the
|
|
20
|
+
provisioning API.
|
data/lib/gprov/version.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gprov
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.0.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Adrien Thebo
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-02-
|
|
18
|
+
date: 2012-02-08 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: httparty
|
|
@@ -47,6 +47,34 @@ dependencies:
|
|
|
47
47
|
version: "1.5"
|
|
48
48
|
type: :runtime
|
|
49
49
|
version_requirements: *id002
|
|
50
|
+
- !ruby/object:Gem::Dependency
|
|
51
|
+
name: rspec
|
|
52
|
+
prerelease: false
|
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
54
|
+
none: false
|
|
55
|
+
requirements:
|
|
56
|
+
- - ">="
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
hash: 7
|
|
59
|
+
segments:
|
|
60
|
+
- 2
|
|
61
|
+
version: "2"
|
|
62
|
+
type: :development
|
|
63
|
+
version_requirements: *id003
|
|
64
|
+
- !ruby/object:Gem::Dependency
|
|
65
|
+
name: mocha
|
|
66
|
+
prerelease: false
|
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
68
|
+
none: false
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
hash: 3
|
|
73
|
+
segments:
|
|
74
|
+
- 0
|
|
75
|
+
version: "0"
|
|
76
|
+
type: :development
|
|
77
|
+
version_requirements: *id004
|
|
50
78
|
description: Ruby bindings to the Google Provisioning API
|
|
51
79
|
email: adrien@puppetlabs.com
|
|
52
80
|
executables: []
|
|
@@ -74,9 +102,9 @@ files:
|
|
|
74
102
|
- lib/gprov/provision.rb
|
|
75
103
|
- lib/gprov/version.rb
|
|
76
104
|
- lib/gprov.rb
|
|
77
|
-
- spec/
|
|
78
|
-
- spec/
|
|
79
|
-
- spec/
|
|
105
|
+
- spec/gprov/auth/clientlogin_spec.rb
|
|
106
|
+
- spec/gprov/connection_spec.rb
|
|
107
|
+
- spec/gprov/provision/entrybase_spec.rb
|
|
80
108
|
- spec/spec_helper.rb
|
|
81
109
|
- LICENSE
|
|
82
110
|
- Rakefile
|