check_dependencies 0.1.8 → 0.1.9

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: 1fb8b26b9005629605058ec5c8bab1abafd474107992ebd5cfdca9e5e1f3a624
4
- data.tar.gz: 6ed9df32bf09af0007ca87663e8caa8b6698079873d8a9cc925ca9b62fa60543
3
+ metadata.gz: '095dc3f59d3cdc3073916ef8d5b3853cadabf69ff27289673b9850fe2664df7d'
4
+ data.tar.gz: 5105743f16867dec87c914755e8ffe9bb80e580303a9dc2a6e55ec84a13b7e48
5
5
  SHA512:
6
- metadata.gz: e64aa448f87110dd4d5508a60d3dc9273c23fd5b2caa86abc43f4c2d93156169588f7b8aab8d28380f599fde7c1cfed6ce17311c061b5dad6074af2b6b72c1ce
7
- data.tar.gz: 1050e3d07adde27b8b7018210ed14ac8d294b00f45b4349f4eba4634f0e9af1af4a4eac084dfb355c46b413180433e7aab7570a7e71642a19043153f33c686f4
6
+ metadata.gz: 163ea165d4b770a4dad749437714a2b903fb74434f71e92d663996616be7d5074eb59caaf5c28c221211e95ecefcbfc2c2b8519f50a787c42fe9d0a99d124367
7
+ data.tar.gz: 26276355e26a180f751ecfb895e66ef7f511ce9f610daddf08ebd90645d12da728f714d720de93930a16a7a76bbd8caac28fc6da85684a319563997d2d4b31ba
@@ -286,13 +286,11 @@ def compare_podfile_locks(old_lock_path, new_lock_path, config_path = nil)
286
286
 
287
287
  # 检查差异并决定退出状态
288
288
  if only_in_old.empty? && only_in_new.empty?
289
- puts "没有差异,成功退出"
290
- exit 0
289
+ puts "No differences!"
291
290
  else
292
- puts "存在差异:"
291
+ puts "Differences exist:"
293
292
  only_in_old.each { |dep| puts "#{red('-')} #{dep}" }
294
293
  only_in_new.each { |dep| puts "#{green('+')} #{dep}" }
295
- exit 1
296
294
  end
297
295
  end
298
296
 
Binary file
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "check_dependencies"
3
- spec.version = "0.1.8"
3
+ spec.version = "0.1.9"
4
4
  spec.authors = ["ITxiansheng"]
5
5
  spec.email = ["itxiansheng@gmail.com"]
6
6
 
@@ -286,13 +286,11 @@ def compare_podfile_locks(old_lock_path, new_lock_path, config_path = nil)
286
286
 
287
287
  # 检查差异并决定退出状态
288
288
  if only_in_old.empty? && only_in_new.empty?
289
- puts "没有差异,成功退出"
290
- exit 0
289
+ puts "No differences!"
291
290
  else
292
- puts "存在差异:"
291
+ puts "Differences exist:"
293
292
  only_in_old.each { |dep| puts "#{red('-')} #{dep}" }
294
293
  only_in_new.each { |dep| puts "#{green('+')} #{dep}" }
295
- exit 1
296
294
  end
297
295
  end
298
296
 
data/note.md ADDED
@@ -0,0 +1,43 @@
1
+ # 主标题
2
+
3
+ 这是一个简介段落,这里介绍文档的主要内容或目的。
4
+
5
+ ## 副标题
6
+
7
+ 这里是更详细的信息或部分内容的开始。
8
+
9
+ ### 小标题
10
+
11
+ - **加粗文本**:强调重要性。
12
+ - *斜体文本*:用于强调或区别。
13
+ - `代码`:用于表示代码或命令。
14
+
15
+ #### 列表
16
+
17
+ - 无序列表项 1
18
+ - 无序列表项 2
19
+ - 子列表项 a
20
+ - 子列表项 b
21
+
22
+ 1. 有序列表项 1
23
+ 2. 有序列表项 2
24
+ 1. 子列表项 a
25
+ 2. 子列表项 b
26
+
27
+ #### 链接和图片
28
+
29
+ 这是一个[链接示例](http://example.com)。
30
+
31
+ 这是一个图片示例:![替代文本](http://example.com/image.jpg)
32
+
33
+ #### 引用
34
+
35
+ > 这是一段引用文本,你可以在这里引用其他人的话或者文档中的一部分内容。
36
+
37
+ #### 代码块
38
+
39
+ ```python
40
+ # 这是一个 Python 代码块
41
+ def hello_world():
42
+ print("Hello, Markdown!")
43
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: check_dependencies
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - ITxiansheng
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-20 00:00:00.000000000 Z
11
+ date: 2024-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -58,10 +58,12 @@ files:
58
58
  - bin/console
59
59
  - bin/setup
60
60
  - check_dependencies-0.1.7.gem
61
+ - check_dependencies-0.1.8.gem
61
62
  - check_dependencies.gemspec
62
63
  - gem_env_install.sh
63
64
  - lib/check_dependencies.rb
64
65
  - lib/check_dependencies/version.rb
66
+ - note.md
65
67
  - sig/check_dependencies.rbs
66
68
  homepage: https://github.com/ITxiansheng/check_dependencies
67
69
  licenses: