spaceship 0.36.1 → 0.36.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 +4 -4
- data/README.md +2 -2
- data/lib/spaceship/tunes/tunes_client.rb +1 -1
- data/lib/spaceship/tunes/user_detail.rb +3 -2
- data/lib/spaceship/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a51a5af0da545a0926ac2b3f43e3fd9579038e8a
|
|
4
|
+
data.tar.gz: 52015e9dbc1bdbf7cf4f31e33ccbc2283d83b703
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 095f8d076be50fa867bb4f28c81d4fc0377390487278b4f3003c558fa59e2bea9d27168d19a25db67bc138ba77c5daa143537c152ef27e3afb2a6d8f95250053
|
|
7
|
+
data.tar.gz: 135ee2ce6245dc4e7a1b21b7124687e496eaf20172a365619d5d37aaeac8130791a73cbf4b74347ddf8a1d3ed2012fadbab4649b6e4664f83386f835f404d9fe
|
data/README.md
CHANGED
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
</p>
|
|
28
28
|
-------
|
|
29
29
|
|
|
30
|
-
[](https://twitter.com/FastlaneTools)
|
|
31
|
+
[](https://github.com/fastlane/fastlane/blob/master/spaceship/LICENSE)
|
|
32
32
|
[](http://rubygems.org/gems/spaceship)
|
|
33
33
|
|
|
34
34
|
`spaceship` exposes both the Apple Developer Center and the iTunes Connect API. This fast and powerful API powers parts of fastlane, and can be leveraged for more advanced fastlane features. Scripting your Developer Center workflow has never been easier!
|
|
@@ -87,7 +87,7 @@ module Spaceship
|
|
|
87
87
|
|
|
88
88
|
response = request(:post) do |req|
|
|
89
89
|
req.url "ra/v1/session/webSession"
|
|
90
|
-
req.body = { contentProviderId: team_id }.to_json
|
|
90
|
+
req.body = { contentProviderId: team_id, dsId: user_detail_data.ds_id }.to_json
|
|
91
91
|
req.headers['Content-Type'] = 'application/json'
|
|
92
92
|
end
|
|
93
93
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
module Spaceship
|
|
2
2
|
module Tunes
|
|
3
3
|
class UserDetail < TunesBase
|
|
4
|
-
attr_accessor :content_provider_id
|
|
4
|
+
attr_accessor :content_provider_id, :ds_id
|
|
5
5
|
|
|
6
6
|
attr_mapping(
|
|
7
|
-
'contentProviderId' => :content_provider_id
|
|
7
|
+
'contentProviderId' => :content_provider_id,
|
|
8
|
+
'sessionToken.dsId' => :ds_id
|
|
8
9
|
)
|
|
9
10
|
|
|
10
11
|
class << self
|
data/lib/spaceship/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spaceship
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.36.
|
|
4
|
+
version: 0.36.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-10-
|
|
12
|
+
date: 2016-10-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: credentials_manager
|
|
@@ -400,7 +400,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
400
400
|
version: '0'
|
|
401
401
|
requirements: []
|
|
402
402
|
rubyforge_project:
|
|
403
|
-
rubygems_version: 2.
|
|
403
|
+
rubygems_version: 2.6.7
|
|
404
404
|
signing_key:
|
|
405
405
|
specification_version: 4
|
|
406
406
|
summary: Ruby library to access the Apple Dev Center and iTunes Connect
|