rucy 0.1.29 → 0.1.30

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: 24def7804f8e0e7610b1720165ad571a713c436c0726aededae1b01021e70530
4
- data.tar.gz: 798b35c1b70a07e1d3c7043600a87fe99f5ccfb73c267f6a936408db6f098d70
3
+ metadata.gz: e8aa5ea6b09dce36e1eb46e3f5bb27c6316c6bfa9deebae90c35658a156f61da
4
+ data.tar.gz: ad210cfad2639931777a1cc5c6e4392f03b84f82268c91c01996e3a3d5783640
5
5
  SHA512:
6
- metadata.gz: e287b36d19e74811b01f25baf4d31571abe9b616650319ea58a55ac1a9ebe9d98ec99a89e27d24112d2ced807b676078310af88590f7e2be47191be2c31f7217
7
- data.tar.gz: 5320e909cbce0943fc564ee1ddda091d07376a1d301b4c79fafece40e5cb41dc9adc0553e0a17bad492018951e71f2401669d5e0a7173a633929c35659f5f905
6
+ metadata.gz: 6bd30011857e1f6ea7c0e472fff0dfdf78645e062bd51f4bf4ed03f08b647e036d8a06f58b9dc79953a8ed2458845008ed9240d1d8d63bc09a84aae96469b242
7
+ data.tar.gz: 76dd8197bf2d9f7bc8754e5e6071acefb82657af0875bc20280e14f3eb9473526c38493986d4f1c20562ad287607e6331f245eaee286fe7a63d87b43cc5d42c5
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.29
1
+ 0.1.30
data/rucy.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- mode: ruby; coding: utf-8 -*-
2
2
 
3
3
 
4
- File.expand_path('../lib', __FILE__)
4
+ File.expand_path('lib', __dir__)
5
5
  .tap {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)}
6
6
 
7
7
  require 'rucy/module'
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
28
28
  s.platform = Gem::Platform::RUBY
29
29
  s.required_ruby_version = '>= 2.6.0'
30
30
 
31
- s.add_runtime_dependency 'xot', '~> 0.1.29'
31
+ s.add_runtime_dependency 'xot', '~> 0.1.30'
32
32
 
33
33
  s.files = `git ls-files`.split $/
34
34
  s.executables = s.files.grep(%r{^bin/}) {|f| File.basename f}
data/task/doc.rake CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- mode: ruby; coding: utf-8 -*-
2
2
 
3
3
 
4
- File.expand_path('../../bin', __FILE__).tap do |path|
4
+ File.expand_path('../bin', __dir__).tap do |path|
5
5
  ENV['PATH'] += ":#{path}" unless ENV['PATH'].split(':').include?(path)
6
6
  end
7
7
 
data/test/helper.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  %w[../xot .]
5
- .map {|s| File.expand_path "../../#{s}/lib", __FILE__}
5
+ .map {|s| File.expand_path "../#{s}/lib", __dir__}
6
6
  .each {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)}
7
7
 
8
8
  require 'test/unit'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rucy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.29
4
+ version: 0.1.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - xordog
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-13 00:00:00.000000000 Z
11
+ date: 2023-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xot
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.29
19
+ version: 0.1.30
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.29
26
+ version: 0.1.30
27
27
  description: This library helps you to develop Ruby Extension by C++.
28
28
  email: xordog@gmail.com
29
29
  executables:
@@ -107,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
107
  - !ruby/object:Gem::Version
108
108
  version: '0'
109
109
  requirements: []
110
- rubygems_version: 3.2.33
110
+ rubygems_version: 3.4.1
111
111
  signing_key:
112
112
  specification_version: 4
113
113
  summary: A Ruby C++ Extension Helper Library.