R3EXS 1.0.1 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61c4ce6c1b9bbd007446afe71008552259bbc2ced3a2a18554f23a6126e1205d
4
- data.tar.gz: 58fa74a05a41c87173eabbccce89ccafc51ed5c5ccace938d3b8ff63e4fd06f0
3
+ metadata.gz: 2d0414cf2d436422193ff55739f6dfa5556b3660d6b3b8ff7f23d08282389c1c
4
+ data.tar.gz: 8bcf25200c9e3cad318ac58c5597ac53582aad80f6c3fad7990a5ea83c9cb2b6
5
5
  SHA512:
6
- metadata.gz: 39cb9d8c3b86c440aa39554429b5184dd44aaccfea3d87329f49d73124f81c2eb29eae4284a58b096de40a758d135afef48545d83a804b1771e1c703a17284b1
7
- data.tar.gz: c83fcf136983b471f82b80350069c8cca2bc74d95004de0d6c381b96b3c9cd87d00d5b13aa6c7df151c7df6a35eab3afe323fcf8b39d470c9105e8d94ca03ba8
6
+ metadata.gz: 3cd076828c7e7bfd4c84a10c0f54d858a3da66a70b6ad25535c6fe266669224da9db5ba7b2db273abd69fbde1f33ceb9ac0bbb614d14782633b17e13d3f440e7
7
+ data.tar.gz: ac01fde21bb466bdce57d8f180b4e78f6453da50fcfade03374bf5b01fa53ec556e2b90dbc650058331298ac9ce6cd5a52aa4d7d7b5d876977ecfc5d9d965194
data/.yardopts ADDED
@@ -0,0 +1,12 @@
1
+ --title R3EXS
2
+ --readme README_EN.md
3
+ --markup markdown
4
+ --charset utf-8
5
+ lib/**/*.rb
6
+ ext/**/*.c
7
+ --list-undoc
8
+ -
9
+ LICENSE
10
+ README.md
11
+ README_EN.md
12
+ CHANGELOG.md
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # [R3EXS]
2
2
 
3
+ ## [1.0.2] - 2025-02-14
4
+
5
+ - 将 .yardopts 文件添加到 gem 文件里面以支持 https://rubydoc.info/ 的文档自动生成
6
+
3
7
  ## [1.0.1] - 2025-02-14
4
8
 
5
9
  - 添加了 gemspec 文件里面的 metadata 信息
data/README.md CHANGED
@@ -38,7 +38,7 @@ R3EXS 是一个基于 Ruby 语言,用来提取和翻译 RGSS3 游戏里字符
38
38
  ### 使用 RubyGems 安装
39
39
 
40
40
  1. 安装 [Ruby](https://www.ruby-lang.org/zh_cn/) (要附带安装 Devkit 来支持编译 C 扩展)
41
- 2. 安装 [R3EXS](https://rubygems.org/gems/r3exs) gem
41
+ 2. 安装 [R3EXS](https://rubygems.org/gems/R3EXS) gem
42
42
 
43
43
  ```bash
44
44
  gem install R3EXS
data/README_EN.md CHANGED
@@ -38,7 +38,7 @@ It uses [Prism](https://github.com/ruby/prism) to accurately extract strings and
38
38
  ### Install using RubyGems
39
39
 
40
40
  1. Install [Ruby](https://www.ruby-lang.org/en/) (make sure to install Devkit to support compiling C extensions)
41
- 2. Install the [R3EXS](https://rubygems.org/gems/r3exs) gem
41
+ 2. Install the [R3EXS](https://rubygems.org/gems/R3EXS) gem
42
42
 
43
43
  ```bash
44
44
  gem install R3EXS
data/lib/R3EXS/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  module R3EXS
4
4
 
5
5
  # 版本号
6
- VERSION = '1.0.1'
6
+ VERSION = '1.0.2'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: R3EXS
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - LuoTat
@@ -115,6 +115,7 @@ extensions:
115
115
  extra_rdoc_files: []
116
116
  files:
117
117
  - "./ext/rgss3a_rvdata2/extconf.rb"
118
+ - ".yardopts"
118
119
  - CHANGELOG.md
119
120
  - LICENSE
120
121
  - README.md