check_dependencies 0.1.4 → 0.1.5
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/check_dependencies-0.1.4.gem +0 -0
- data/check_dependencies.gemspec +1 -1
- data/lib/check_dependencies.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 607fd112ebc8ea3a0afad3ec92bcf7d600edf0be1bf905e43e7960660220c164
|
|
4
|
+
data.tar.gz: c7387bb2582daf0f9b7eaf32c201ae724f40eee327e8653e5fd0dc79fece8073
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7bc472950ed8444f1616a90fcbc781afbfb2f826eb4e077305066fb0c0ae059a872ef47a130d241e3fd055d5b272ceaa7d188d06f33f8b8faf10b65990d9c80
|
|
7
|
+
data.tar.gz: 316f13bee5fc54d1cc208c0e0f44b5b684332aceb97498c059422e40691583078db05fa0cf8ff16ed8f2fb67122844b099ba86b89410e645cc157ba27329a935
|
data/README.md
CHANGED
|
@@ -23,7 +23,7 @@ This script provides utilities for iOS development with CocoaPods, including gen
|
|
|
23
23
|
To generate new podfile entries based on a JSON configuration:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
ruby
|
|
26
|
+
ruby check_dependencies.rb gen_pod --lockPath <path_to_Podfile.lock> --depWay <path_or_branch> --configPath <path_to_config.json>
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
- `lockPath`: Path to your `Podfile.lock`.
|
|
@@ -52,7 +52,7 @@ ruby script.rb gen_pod --lockPath <path_to_Podfile.lock> --depWay <path_or_branc
|
|
|
52
52
|
To compare two `Podfile.lock` files and list differences in dependencies:
|
|
53
53
|
|
|
54
54
|
```shell
|
|
55
|
-
ruby
|
|
55
|
+
ruby check_dependencies.rb dif_pod --oldLockPath <path_to_old_Podfile.lock> --newLockPath <path_to_new_Podfile.lock> [--configPath <path_to_config.json>]
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
- `oldLockPath`: Path to the older `Podfile.lock`.
|
|
Binary file
|
data/check_dependencies.gemspec
CHANGED
data/lib/check_dependencies.rb
CHANGED
|
@@ -24,7 +24,7 @@ global_options = OptionParser.new do |opts|
|
|
|
24
24
|
opts.separator " gen_pod: Generate podfile entries for new dependencies"
|
|
25
25
|
opts.separator " dif_pod: Generate differences between Podfile.lock files"
|
|
26
26
|
opts.separator ""
|
|
27
|
-
opts.separator "For command-specific help, run:
|
|
27
|
+
opts.separator "For command-specific help, run: check_dependencies [command] --help"
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
gen_pod_config_string = <<~CONFIG
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: check_dependencies
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ITxiansheng
|
|
@@ -58,6 +58,7 @@ files:
|
|
|
58
58
|
- bin/console
|
|
59
59
|
- bin/setup
|
|
60
60
|
- check_dependencies-0.1.3.gem
|
|
61
|
+
- check_dependencies-0.1.4.gem
|
|
61
62
|
- check_dependencies.gemspec
|
|
62
63
|
- gem_env_install.sh
|
|
63
64
|
- lib/check_dependencies.rb
|