cfoundry 0.3.13 → 0.3.14
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/lib/cfoundry/v2/base.rb +2 -2
- data/lib/cfoundry/v2/client.rb +3 -2
- data/lib/cfoundry/v2/service_auth_token.rb +9 -0
- data/lib/cfoundry/version.rb +1 -1
- metadata +4 -3
data/lib/cfoundry/v2/base.rb
CHANGED
@@ -46,8 +46,8 @@ module CFoundry::V2
|
|
46
46
|
end
|
47
47
|
|
48
48
|
|
49
|
-
[ :app, :organization, :space, :user, :runtime, :framework,
|
50
|
-
:
|
49
|
+
[ :app, :organization, :space, :user, :runtime, :framework, :service,
|
50
|
+
:service_plan, :service_binding, :service_instance, :service_auth_token
|
51
51
|
].each do |obj|
|
52
52
|
plural = "#{obj}s"
|
53
53
|
|
data/lib/cfoundry/v2/client.rb
CHANGED
@@ -10,6 +10,7 @@ require "cfoundry/v2/service"
|
|
10
10
|
require "cfoundry/v2/service_binding"
|
11
11
|
require "cfoundry/v2/service_instance"
|
12
12
|
require "cfoundry/v2/service_plan"
|
13
|
+
require "cfoundry/v2/service_auth_token"
|
13
14
|
require "cfoundry/v2/space"
|
14
15
|
require "cfoundry/v2/user"
|
15
16
|
|
@@ -119,8 +120,8 @@ module CFoundry::V2
|
|
119
120
|
end
|
120
121
|
|
121
122
|
|
122
|
-
[ :app, :organization, :space, :user, :runtime, :framework,
|
123
|
-
:
|
123
|
+
[ :app, :organization, :space, :user, :runtime, :framework, :service,
|
124
|
+
:service_plan, :service_binding, :service_instance, :service_auth_token
|
124
125
|
].each do |singular|
|
125
126
|
plural = :"#{singular}s"
|
126
127
|
|
data/lib/cfoundry/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cfoundry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 14
|
10
|
+
version: 0.3.14
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alex Suraci
|
@@ -127,6 +127,7 @@ files:
|
|
127
127
|
- lib/cfoundry/v2/organization.rb
|
128
128
|
- lib/cfoundry/v2/runtime.rb
|
129
129
|
- lib/cfoundry/v2/service.rb
|
130
|
+
- lib/cfoundry/v2/service_auth_token.rb
|
130
131
|
- lib/cfoundry/v2/service_binding.rb
|
131
132
|
- lib/cfoundry/v2/service_instance.rb
|
132
133
|
- lib/cfoundry/v2/service_plan.rb
|