motion-deploygate 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/motion-deploygate.rb +2 -2
- metadata +18 -6
- data/ext/extconf.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f8c410dc5fc3f250fab0f1c502a5afe5f78a67f
|
4
|
+
data.tar.gz: 116dd2195bc95a7e6066ccfb28d920e5f28ff5c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e5f486f0a26f498a9515e556989f4c423103101f1530a3f6ef3733610c1691c6ab329d427a4ec2dfd8bf677b942ec6855363a25650e2e9bbb70d47d84c1db34
|
7
|
+
data.tar.gz: 9a094c87c42aaf2fd561cf7390474f46e09cc91414b6c0a3d8264fc84f6c1083f16881c0b51567c152d0ed01683a525c3239c1138af1326f523d825bf42517e5
|
data/lib/motion-deploygate.rb
CHANGED
@@ -118,9 +118,9 @@ namespace :deploygate do
|
|
118
118
|
|
119
119
|
Rake::Task["archive"].invoke
|
120
120
|
App.info "DeployGate", "Submit #{config.name}.ipa to DeployGate"
|
121
|
-
app_path = "build/iPhoneOS-#{config.deployment_target}
|
121
|
+
app_path = "build/iPhoneOS-#{config.deployment_target}-#{config.build_mode.to_s.capitalize}/#{config.name}.ipa"
|
122
122
|
message = ENV['message'] ? "-m \"#{ENV['message']}\"" : ""
|
123
|
-
sh "
|
123
|
+
sh "dgate push #{config.deploygate.user_id} \"#{app_path}\" #{message}"
|
124
124
|
end
|
125
125
|
|
126
126
|
desc "Symbolicate a crash log"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-deploygate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Watson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -24,16 +24,28 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: dgate
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
description: DeployGate integration for RubyMotion projects
|
28
42
|
email:
|
29
43
|
- watson1978@gmail.com
|
30
44
|
executables: []
|
31
|
-
extensions:
|
32
|
-
- ext/extconf.rb
|
45
|
+
extensions: []
|
33
46
|
extra_rdoc_files: []
|
34
47
|
files:
|
35
48
|
- README.md
|
36
|
-
- ext/extconf.rb
|
37
49
|
- lib/motion-deploygate.rb
|
38
50
|
homepage: https://github.com/Watson1978/motion-deploygate
|
39
51
|
licenses:
|
@@ -55,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
67
|
version: '0'
|
56
68
|
requirements: []
|
57
69
|
rubyforge_project:
|
58
|
-
rubygems_version: 2.
|
70
|
+
rubygems_version: 2.4.5
|
59
71
|
signing_key:
|
60
72
|
specification_version: 4
|
61
73
|
summary: DeployGate integration for RubyMotion projects
|