oa_templater 0.5.18 → 0.5.19

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
  SHA1:
3
- metadata.gz: 104350f5e2cba873611c047315bf52898cb8e9b0
4
- data.tar.gz: 8692d99c46b218c5d1f55cc5887621ab2eb353eb
3
+ metadata.gz: 191994d9d4523ab0b86297ec385258670bfbad89
4
+ data.tar.gz: dfc745d6ed746b23993b5ba16143dcd5ab9385c2
5
5
  SHA512:
6
- metadata.gz: a5fbe50023081a1a705b6fee3c1056d948017e8ed48fb7e81440d4988c06194d1646feba18b0f0071496cc546f32e5b240c1625f60dbb114b144716b01837bc7
7
- data.tar.gz: 6ccbe17c1df6d5d538e0506475f633e15b1ed427fd8317b086ecbb8804e8b70c330bca086b5dbb48b08950080339553a96fe6e71510d97db5f944b8b644626bd
6
+ metadata.gz: b9025df9e73e8e8c21a3efd5a81f54f7e37e145e6ebe750035152aeedb5746cae7c049135a8f1527d15ab981aa750d5293de7a523f2f2c8a116a73ff191ca01d
7
+ data.tar.gz: 549cc03564de3a31c0569f542132e6a31ddd4a6290bf7593f53d721a8159e96315a5e2b9ffdc2c28554ff64ca27b1732fde29d915309f7edbc32cdff69e89207
@@ -899,6 +899,7 @@ Masayuki KOYANAGI, 小柳 正之
899
899
  Masayuki MORI, 森 雅之
900
900
  Masayuki OGAWA, 小川 将之
901
901
  Masayuki SHINOHARA, 篠原 将之
902
+ Masayuki TANIHANA, 谿花 正由輝
902
903
  Masayuki WAKATSUCHI, 若土 雅之
903
904
  Masayuki YAMAZAKI, 山崎 仁之
904
905
  Masuji YAMADA, 山田 倍司
@@ -713,6 +713,7 @@ module OaTemplater
713
713
  tex.gsub!('新規事項', 'New Matter')
714
714
  tex.gsub!('実施可能要件', 'Enablement Requirements')
715
715
  tex.gsub!('産業上の利用可能性', 'Industrial Applicability')
716
+ tex.gsub!('特許請求の範囲の記載に関する委任省令要件', 'Ministerial Ordinance Requirements Regarding Claims')
716
717
  tex.gsub!('発明の単一性', 'Unity of Invention')
717
718
  tex.gsub!('明確性', 'Clarity')
718
719
  tex.gsub!('サポート要件', 'Support Requirements')
@@ -3,7 +3,7 @@ module OaTemplater
3
3
  R_HEADER_SEPARATOR_DETECT = /\p{N}(?:(|\()*[^\))\n]*(?:)|\))*(\s*:|\s*:|\s*\/|\s*/|\s*・| | )(?:請求項|引用文献|理由|先願|実施例)/
4
4
  R_ARTICLE_SECTION = /この出願は、次の理由.*?(?:(?:\p{Z}記\p{Z})|備考)/m
5
5
  R_HEADER_SEPARATOR = /\s*:|\s*:|\s*・|\/|/| | /
6
- R_HEADER_REASONS = '(?:^.{0,2}理\p{Z}*由\p{Z}*\p{N}*\p{Z}*(?:((?:特許[^\))\nに引性]*|新規性|新規事項|同日出願|産業上の利用可能性|サポート要件|拡大先願|進歩性|実施可能要件|発明の単一性|明確性)))(?:(?:及び|、) .{0,2}理\p{Z}*>由\p{Z}*\p{N}+\p{Z}*(?:((?:新規性|拡大先願|新規事項|同日出願|産業上の利用可能性|サポート要件|進歩性|実施可能要件|発明の単一性|明確性))))*(?:(?:及び|、) .{0,2}理\p{Z}*由\p{Z}*\p{N}+\p{Z}*(?:((?:新規性|拡大 先願|同日出願|新規事項|産業上の利用可能性|サポート要件|進歩性|実施可能要件|発明の単一性|明確性))))* | (?:.{0,2}理\p{Z}*由\p{Z}*\p{N}{0,2}\p{Z}*(特許法第?\p{N}{0,2}条第?\p{N}{0,2}項))(?:について) )'
6
+ R_HEADER_REASONS = '(?:^.{0,2}理\p{Z}*由\p{Z}*\p{N}*\p{Z}*(?:((?:特許[^\))\nに引性]*|新規性|新規事項|同日出願|特許請求の範囲の記載に関する委任省令要件|産業上の利用可能性|サポート要件|拡大先願|進歩性|実施可能要件|発明の単一性|明確性)))(?:(?:及び|、) .{0,2}理\p{Z}*>由\p{Z}*\p{N}+\p{Z}*(?:((?:新規性|拡大先願|新規事項|同日出願|特許請求の範囲の記載に関する委任省令要件|産業上の利用可能性|サポート要件|進歩性|実施可能要件|発明の単一性|明確性))))*(?:(?:及び|、) .{0,2}理\p{Z}*由\p{Z}*\p{N}+\p{Z}*(?:((?:新規性|拡大 先願|同日出願|特許請求の範囲の記載に関する委任省令要件|新規事項|産業上の利用可能性|サポート要件|進歩性|実施可能要件|発明の単一性|明確性))))* | (?:.{0,2}理\p{Z}*由\p{Z}*\p{N}{0,2}\p{Z}*(特許法第?\p{N}{0,2}条第?\p{N}{0,2}項))(?:について) )'
7
7
  R_HEADER_TYPES = /(
8
8
  #{R_HEADER_REASONS}
9
9
  | (?:^\s*$)
@@ -1,3 +1,3 @@
1
1
  module OaTemplater
2
- VERSION = '0.5.18'
2
+ VERSION = '0.5.19'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oa_templater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.18
4
+ version: 0.5.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Rubingh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-15 00:00:00.000000000 Z
11
+ date: 2016-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug