motion-deploygate 0.4.1 → 0.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a40b887f27aff5c954616a8e47388fc1fcafff0
4
- data.tar.gz: 2ef1e335088cc00d4b38df33c00dc839ba602c7d
3
+ metadata.gz: 8f8c410dc5fc3f250fab0f1c502a5afe5f78a67f
4
+ data.tar.gz: 116dd2195bc95a7e6066ccfb28d920e5f28ff5c9
5
5
  SHA512:
6
- metadata.gz: 21169c198de4c592f62f8e76e6c4e39a9b3c9ec85270a29ca58d84cc68283c27cfa8918479bf01a819c5220d4f2bd1a16940fdeec9d64b95e063feb3a4685da4
7
- data.tar.gz: 0289c77d15877cbfb4cbbefcdeb6f9516688a547515593a050338e527c19635163d89de0118a0c371ce0228689a2edeca39b8690e98e46524236d2e663f9766c
6
+ metadata.gz: 6e5f486f0a26f498a9515e556989f4c423103101f1530a3f6ef3733610c1691c6ab329d427a4ec2dfd8bf677b942ec6855363a25650e2e9bbb70d47d84c1db34
7
+ data.tar.gz: 9a094c87c42aaf2fd561cf7390474f46e09cc91414b6c0a3d8264fc84f6c1083f16881c0b51567c152d0ed01683a525c3239c1138af1326f523d825bf42517e5
@@ -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}-Development/#{config.name}.ipa"
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 "/usr/local/bin/dgate push #{config.deploygate.user_id} \"#{app_path}\" #{message}"
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.1
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: 2014-07-16 00:00:00.000000000 Z
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.3.0
70
+ rubygems_version: 2.4.5
59
71
  signing_key:
60
72
  specification_version: 4
61
73
  summary: DeployGate integration for RubyMotion projects
@@ -1,7 +0,0 @@
1
- # DeployGate Command-Line Tool Installer
2
- system "/usr/bin/curl https://deploygate.com/install.sh | /bin/sh"
3
-
4
-
5
- ### dummy ###
6
- require 'mkmf'
7
- create_makefile('')