meteor 0.9.36 → 0.9.37

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: 7c820bce827158078b9e6d222628f8158ec3869cd13a433aaa6fdbac0d15bb9b
4
- data.tar.gz: 1f9df5b7ecf2c0bfefcc6d2ac875106c9e258c3f708528d7a80719b678aa3f72
3
+ metadata.gz: fd24e160dd8ebd42f87b6305122d0dd287d96b3c44b2ab3c16a17170b967ae6f
4
+ data.tar.gz: ef330abcca5a835e3e8371688bd28638895e54845cb1c0137db17ee69257ec45
5
5
  SHA512:
6
- metadata.gz: 57cc68c8f09c83dc86874d4ac11c44307bf6a0d55b5bf3c437d6c3949a5ffdb177241ec1cf27deee73cd71cf6d8b94ef42c03dc2ceca27a9b03b7e8cdf8b7dff
7
- data.tar.gz: 96e7e62faf4ad7660e733a223f30339369901cdff5f21ac27445108159afd8bc949507adaab55a8ced1851bc84f637ad4a17d44b01c3bcc835cf5596689b83ad
6
+ metadata.gz: 12d65f04b18888dd403ae5e2399edf5c34bfa4db91ae3d65d0538533aec072c5ab1a40e3067dc8482b0a7dd6aaae7888e8b0396a86f4dc6312fc93203872c712
7
+ data.tar.gz: 8063860a96ac60fa30d314bda48c91ccb1b5af4fb058a5c995a3aaa1e0338e601545bbcc6a9013c40dd9dbd16a3b15d247074a87b9f3bd23033678582acb6a93
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.9.37 / 2026-07-08 Yasumasa Ashida <ys.ashida@gmail.com>
2
+
3
+ * Refactor Meteor::Core::Kernel
4
+
1
5
  == 0.9.36 / 2026-07-08 Yasumasa Ashida <ys.ashida@gmail.com>
2
6
 
3
7
  * Refactor Meteor::Element
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- meteor (0.9.36)
4
+ meteor (0.9.37)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -138,6 +138,7 @@ module Meteor
138
138
  # initializer (イニシャライザ)
139
139
  #
140
140
  def initialize
141
+ super
141
142
  # parent element (親要素)
142
143
  # @parent = nil
143
144
 
@@ -168,7 +169,7 @@ module Meteor
168
169
  end
169
170
 
170
171
  #
171
- # psrse document (ドキュメントを解析する)
172
+ # parse document (ドキュメントを解析する)
172
173
  # @param [String] document document (ドキュメント)
173
174
  #
174
175
  def parse; end
data/lib/meteor.rb CHANGED
@@ -37,11 +37,11 @@ require 'meteor/ml/xml/parser_impl'
37
37
  # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
38
38
  #
39
39
  # @author Yasumasa Ashida
40
- # @version 0.9.36
40
+ # @version 0.9.37
41
41
  #
42
42
 
43
43
  module Meteor
44
- VERSION = '0.9.36'
44
+ VERSION = '0.9.37'
45
45
 
46
46
  # require 'fileutils'
47
47
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meteor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.36
4
+ version: 0.9.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasumasa Ashida