gooddata 0.6.29 → 0.6.30
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.
- checksums.yaml +4 -4
- data/lib/gooddata/models/process.rb +1 -1
- data/lib/gooddata/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 005b043d3a2ee898d4002f1d4ad331515cd5500a
|
|
4
|
+
data.tar.gz: 2be21b47914c33d28921820e862fee60b6f8b19f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6eaed1f722353155e2bd28510ef37a0cf76cb7727ab53f4008de32a5e17980e1bfaae31c06c81fee3cf24e3ef39592ab73ce1ac24cd46b9eb73685c89d6ee195
|
|
7
|
+
data.tar.gz: f45253a211f415365541269c3b20affe5c6ec2b5375f03ff6b9b5ccdc4675e8c440c704d95b3273da1b8fcc7cbcee89f0e2d529aa26525b0bb32575fde5c4c0b
|
|
@@ -94,7 +94,7 @@ module GoodData
|
|
|
94
94
|
def deploy(path, options = { :client => GoodData.client, :project => GoodData.project })
|
|
95
95
|
return deploy_brick(path, options) if path.to_s.start_with?(APP_STORE_URL)
|
|
96
96
|
|
|
97
|
-
return deploy_from_appstore(path, options) if (path =~ /\${.*}:(.*)\/(.*):\//) == 0
|
|
97
|
+
return deploy_from_appstore(path.to_s, options) if (path.to_s =~ /\${.*}:(.*)\/(.*):\//) == 0
|
|
98
98
|
|
|
99
99
|
client, project = GoodData.get_client_and_project(options)
|
|
100
100
|
|
data/lib/gooddata/version.rb
CHANGED