cfoundry 0.3.31 → 0.3.32
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cfoundry/v1/app.rb +2 -2
- data/lib/cfoundry/version.rb +1 -1
- metadata +4 -4
data/lib/cfoundry/v1/app.rb
CHANGED
@@ -323,7 +323,7 @@ module CFoundry::V1
|
|
323
323
|
#
|
324
324
|
# For example, <code>files("foo", "bar")</code> for +foo/bar+.
|
325
325
|
def files(*path)
|
326
|
-
Instance.new(
|
326
|
+
Instance.new(self, "0", @client).files(*path)
|
327
327
|
end
|
328
328
|
|
329
329
|
# Retrieve file contents for the first instance of the application.
|
@@ -333,7 +333,7 @@ module CFoundry::V1
|
|
333
333
|
#
|
334
334
|
# For example, <code>files("foo", "bar")</code> for +foo/bar+.
|
335
335
|
def file(*path)
|
336
|
-
Instance.new(
|
336
|
+
Instance.new(self, "0", @client).file(*path)
|
337
337
|
end
|
338
338
|
|
339
339
|
# Upload application's code to target. Do this after #create! and before
|
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: 83
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 32
|
10
|
+
version: 0.3.32
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alex Suraci
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-09-
|
18
|
+
date: 2012-09-12 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: rest-client
|