fastlane-plugin-sync_devices 0.1.0 → 0.2.0
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d9e77de759f8a476202fe29cb76ef80872b4787bf65950d2786178435cd3ea8
|
|
4
|
+
data.tar.gz: 26185014cfdc3ec5268f1b1f7ac7295c642754c4fed608dd7a3188664fa485d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bebe5a0963e73b4451b4c9909d8ca30738c00672a2325ae82fed0c29ccd76a69e218b21eb9d3aae5b245391e2a3197931982faffc719a34bb5582590857419c0
|
|
7
|
+
data.tar.gz: 2ae246c25d4e3554a85f7ac2c47d8da82488a0140f8eda9212769ecb34a0ff3e52d98fedf77de21fb6a1224e3ed862ded47cc83375a7db8f5e01fded050d2e0e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## master
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
* Add Ruby 3.4 to test matrix - [@manicmaniac](https://github.com/manicmaniac) [#23](https://github.com/manicmaniac/fastlane-plugin-sync_devices/pull/23)
|
|
5
|
+
* Show more precise messages on console - [@manicmaniac](https://github.com/manicmaniac) [#22](https://github.com/manicmaniac/fastlane-plugin-sync_devices/pull/22)
|
|
6
|
+
|
|
3
7
|
## 0.1.0
|
|
4
8
|
|
|
5
9
|
* Initial release - [@manicmaniac](https://github.com/manicmaniac)
|
data/README.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
# sync\_devices plugin
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-sync_devices)
|
|
4
|
+
[](https://badge.fury.io/rb/fastlane-plugin-sync_devices)
|
|
4
5
|
[](https://github.com/manicmaniac/fastlane-plugin-sync_devices/actions/workflows/test.yml)
|
|
6
|
+
[](https://codeclimate.com/github/manicmaniac/fastlane-plugin-sync_devices/test_coverage)
|
|
7
|
+
[](https://codeclimate.com/github/manicmaniac/fastlane-plugin-sync_devices/maintainability)
|
|
5
8
|
|
|
6
9
|
## Getting Started
|
|
7
10
|
|
|
@@ -39,7 +39,7 @@ module Fastlane # rubocop:disable Style/Documentation
|
|
|
39
39
|
patch = DevicesPatch.new(current_devices, new_devices)
|
|
40
40
|
patch.apply!(dry_run: params[:dry_run])
|
|
41
41
|
|
|
42
|
-
UI.success('Successfully
|
|
42
|
+
UI.success('Successfully synchronized devices.')
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
# Authenticates the user with AppStore Connect API or Apple Developer Portal.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-sync_devices
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryosuke Ito
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Synchronize your devices with Apple Developer Portal.
|
|
14
14
|
email: rito.0305@gmail.com
|
|
@@ -31,6 +31,7 @@ homepage: https://github.com/manicmaniac/fastlane-plugin-sync_devices
|
|
|
31
31
|
licenses:
|
|
32
32
|
- MIT
|
|
33
33
|
metadata:
|
|
34
|
+
documentation_uri: https://www.rubydoc.info/gems/fastlane-plugin-sync_devices
|
|
34
35
|
bug_tracker_uri: https://github.com/manicmaniac/fastlane-plugin-sync_devices/issues
|
|
35
36
|
rubygems_mfa_required: 'true'
|
|
36
37
|
source_code_uri: https://github.com/manicmaniac/fastlane-plugin-sync_devices
|
|
@@ -49,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
49
50
|
- !ruby/object:Gem::Version
|
|
50
51
|
version: '0'
|
|
51
52
|
requirements: []
|
|
52
|
-
rubygems_version: 3.
|
|
53
|
+
rubygems_version: 3.5.16
|
|
53
54
|
signing_key:
|
|
54
55
|
specification_version: 4
|
|
55
56
|
summary: Synchronize your devices with Apple Developer Portal.
|