rucy 0.1.22 → 0.1.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/include/rucy/ruby.h +5 -0
- data/rucy.gemspec +2 -2
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b2ee08464989008f1c0570feb063721ce374d5ff8e2f7b0ce7853d996d0b389
|
4
|
+
data.tar.gz: 5fd32ea836009f89e089158d18b7dc6dc84ef8fa477a47dbd67680213f78e296
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2313127d50985a157caf5cc775b5d3b258184081404226e4ae237d404b4d4c4ce9209615125a1ceef4838fe139f98723da721eb17e869819d7c760b2c1905bab
|
7
|
+
data.tar.gz: 6219e8bd78e6fc909876efefaad9de757b99020f2c676dd8b33321063f236ccdff062026d1c44ae1c51b4a8ea5100db97d660c94addddd6dde8e039881aca8bc
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.23
|
data/include/rucy/ruby.h
CHANGED
data/rucy.gemspec
CHANGED
@@ -26,9 +26,9 @@ Gem::Specification.new do |s|
|
|
26
26
|
s.homepage = "https://github.com/xord/rucy"
|
27
27
|
|
28
28
|
s.platform = Gem::Platform::RUBY
|
29
|
-
s.required_ruby_version = '
|
29
|
+
s.required_ruby_version = '>= 2.6.0'
|
30
30
|
|
31
|
-
s.add_runtime_dependency 'xot', '~> 0.1.
|
31
|
+
s.add_runtime_dependency 'xot', '~> 0.1.23'
|
32
32
|
|
33
33
|
s.files = `git ls-files`.split $/
|
34
34
|
s.executables = s.files.grep(%r{^bin/}) {|f| File.basename f}
|
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.
|
4
|
+
version: 0.1.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- xordog
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-20 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.
|
19
|
+
version: 0.1.23
|
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.
|
26
|
+
version: 0.1.23
|
27
27
|
description: This library helps you to develop Ruby Extension by C++.
|
28
28
|
email: xordog@gmail.com
|
29
29
|
executables:
|
@@ -31,12 +31,12 @@ executables:
|
|
31
31
|
extensions:
|
32
32
|
- Rakefile
|
33
33
|
extra_rdoc_files:
|
34
|
-
- ".doc/ext/rucy/
|
35
|
-
- ".doc/ext/rucy/tester.cpp"
|
34
|
+
- ".doc/ext/rucy/class.cpp"
|
36
35
|
- ".doc/ext/rucy/exception.cpp"
|
37
36
|
- ".doc/ext/rucy/function.cpp"
|
37
|
+
- ".doc/ext/rucy/struct.cpp"
|
38
|
+
- ".doc/ext/rucy/tester.cpp"
|
38
39
|
- ".doc/ext/rucy/value.cpp"
|
39
|
-
- ".doc/ext/rucy/class.cpp"
|
40
40
|
files:
|
41
41
|
- ".doc/ext/rucy/class.cpp"
|
42
42
|
- ".doc/ext/rucy/exception.cpp"
|
@@ -97,16 +97,16 @@ require_paths:
|
|
97
97
|
- lib
|
98
98
|
required_ruby_version: !ruby/object:Gem::Requirement
|
99
99
|
requirements:
|
100
|
-
- - "
|
100
|
+
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
102
|
+
version: 2.6.0
|
103
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
104
|
requirements:
|
105
105
|
- - ">="
|
106
106
|
- !ruby/object:Gem::Version
|
107
107
|
version: '0'
|
108
108
|
requirements: []
|
109
|
-
rubygems_version: 3.
|
109
|
+
rubygems_version: 3.2.22
|
110
110
|
signing_key:
|
111
111
|
specification_version: 4
|
112
112
|
summary: A Ruby C++ Extension Helper Library.
|