CppUmlClass 0.8.0 → 0.9.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: da605d09be03bb286826853b419039825dd9efe590a41a73dbd4e2e1207564b1
4
- data.tar.gz: 0e8c9bc1204d35734d037b105f1c6cfeaea9aba179807f4c6c02af2fb568ef3b
3
+ metadata.gz: 97066304da32e03a47c7374677dca591a3b0df8774157841bb027517aa91e4ed
4
+ data.tar.gz: af67ea7ce70c62059acb50241059c38aefc076543ac0d342192381e607b48909
5
5
  SHA512:
6
- metadata.gz: 28530923ed05bf95eb36a622596caf006a1e658921b503e45080ac1a7c5f2e1d255280c08e787fbe1ba5231eb743bb017e6724635f77e75877e3fb0b9976dde8
7
- data.tar.gz: d2af820815a7c7649ce9a931fd5c65ce58f9a93ea63300930b62aa67b141bfc5b572da8861b3a2afcf3d144b01d88ca03a87e18c290856c09dfbaf844112488c
6
+ metadata.gz: de6f569bdae61398778cd37a5c38fcc3c118c2f28e85ca7ec6e55faa594f2498935a65ba91b5d4fae9974674ca11688e60681f6a07e73318f3108d2cf0ab421c
7
+ data.tar.gz: 2a4422681c8b87fed14957172535b6bd605b5b6b9daf3937cfbf8024e268e6903f10e1ba29c195d9795e03645e11f4705d92bfbfd9cef36b0ae513a88d22c9e1
data/README.md CHANGED
@@ -59,6 +59,7 @@ Example
59
59
  - source path of the class that sets the color 2
60
60
  - default class color 3
61
61
  - source path of the class that sets the color 2
62
+ - exclude path
62
63
 
63
64
  The setting file is saved in the home directory under CppUmlClass/config/setting.json.
64
65
 
data/img/CppUMLClass.mp4 CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CppUmlClass
4
- VERSION = "0.8.0"
4
+ VERSION = "0.9.0"
5
5
  end
@@ -180,6 +180,7 @@ def composition_list_create(in_dir, out_list)
180
180
  buf.each_line do |line|
181
181
  next if line =~ /^[\r\n]*$/ # 空行は対象外
182
182
  next if line =~ /^#/ # #から始まる行は対象外
183
+ line.gsub!(/["'].*?["']/, '') # "/'囲まれた文字列を削除
183
184
  #puts "comp:#{line}"
184
185
 
185
186
  # ブロックの開始/終了
@@ -287,6 +288,7 @@ def create_uml_class(in_dir, out_file)
287
288
  buf.each_line do |line|
288
289
  next if line =~ /^[\r\n]*$/ # 空行は対象外
289
290
  next if line =~ /^#/ # #から始まる行は対象外
291
+ line.gsub!(/["'].*?["']/, '') # "/'囲まれた文字列を削除
290
292
  #puts line
291
293
 
292
294
  # ブロックの開始/終了
@@ -404,7 +406,7 @@ def create_uml_class(in_dir, out_file)
404
406
  cstruct_list.slice!(-1) # 最後の要素を削除
405
407
  end
406
408
  end
407
- #puts "#{block_count} #{line.chomp}"
409
+ puts "#{block_count} #{line.chomp}"
408
410
  end
409
411
  if block_count != 0
410
412
  # エラー
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CppUmlClass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masataka Kuwayama
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-23 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: browser_app_base