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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f5ba3bacaefc1ba390830e283976ce506c933131f4d7ec1af61d56aa551b4e5
4
- data.tar.gz: f7061fabae1d98b1ec5c449be1b86a28990e08eafee37690bd4d1ff381ab12f4
3
+ metadata.gz: 607fd112ebc8ea3a0afad3ec92bcf7d600edf0be1bf905e43e7960660220c164
4
+ data.tar.gz: c7387bb2582daf0f9b7eaf32c201ae724f40eee327e8653e5fd0dc79fece8073
5
5
  SHA512:
6
- metadata.gz: 1888a329986a98689335b452abe4bff3a166bdebac48ad351d0818f5af202347fb11b1cb9c25f5ea54e4269f996a58dee2cdca29c363093a7796339706c1de69
7
- data.tar.gz: b46d24918f7b1b8d94cff1ae14c3de266e98acb842f1b26aeec14c10d22143e5a580a322302eff095e4bc45f03a727e49bd5e549ea14ea2d2581d4d2a5a8b871
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 script.rb gen_pod --lockPath <path_to_Podfile.lock> --depWay <path_or_branch> --configPath <path_to_config.json>
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 script.rb dif_pod --oldLockPath <path_to_old_Podfile.lock> --newLockPath <path_to_new_Podfile.lock> [--configPath <path_to_config.json>]
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "check_dependencies"
3
- spec.version = "0.1.4"
3
+ spec.version = "0.1.5"
4
4
  spec.authors = ["ITxiansheng"]
5
5
  spec.email = ["itxiansheng@gmail.com"]
6
6
 
@@ -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: script.rb [command] --help"
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
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