lib-ruby-parser 0.0.1.beta3-x64-mingw32 → 1.0.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/lib-ruby-parser/messages.rb +466 -451
- data/lib/lib-ruby-parser/native/2.7/lib_ruby_parser.so +0 -0
- data/lib/lib-ruby-parser/native/3.0/lib_ruby_parser.so +0 -0
- data/lib/lib-ruby-parser/native/3.1/lib_ruby_parser.so +0 -0
- data/lib/lib-ruby-parser/nodes.rb +2527 -2946
- data/lib/lib-ruby-parser/version.rb +2 -2
- data/lib-ruby-parser.gemspec +1 -1
- metadata +6 -6
- data/lib/lib-ruby-parser/native/2.6/lib_ruby_parser.so +0 -0
data/lib-ruby-parser.gemspec
CHANGED
@@ -26,9 +26,9 @@ Gem::Specification.new do |spec|
|
|
26
26
|
'lib/lib-ruby-parser/version.rb',
|
27
27
|
'lib/lib-ruby-parser/messages.rb',
|
28
28
|
'lib/lib-ruby-parser/nodes.rb',
|
29
|
+
'lib/lib-ruby-parser/native/3.1/lib_ruby_parser.so',
|
29
30
|
'lib/lib-ruby-parser/native/3.0/lib_ruby_parser.so',
|
30
31
|
'lib/lib-ruby-parser/native/2.7/lib_ruby_parser.so',
|
31
|
-
'lib/lib-ruby-parser/native/2.6/lib_ruby_parser.so',
|
32
32
|
]
|
33
33
|
spec.bindir = 'exe'
|
34
34
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lib-ruby-parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Ilya Bylich
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby bindings for lib-ruby-parser.
|
14
14
|
email:
|
@@ -21,9 +21,9 @@ files:
|
|
21
21
|
- lib-ruby-parser.gemspec
|
22
22
|
- lib/lib-ruby-parser.rb
|
23
23
|
- lib/lib-ruby-parser/messages.rb
|
24
|
-
- lib/lib-ruby-parser/native/2.6/lib_ruby_parser.so
|
25
24
|
- lib/lib-ruby-parser/native/2.7/lib_ruby_parser.so
|
26
25
|
- lib/lib-ruby-parser/native/3.0/lib_ruby_parser.so
|
26
|
+
- lib/lib-ruby-parser/native/3.1/lib_ruby_parser.so
|
27
27
|
- lib/lib-ruby-parser/nodes.rb
|
28
28
|
- lib/lib-ruby-parser/version.rb
|
29
29
|
homepage: https://github.com/lib-ruby-parser/ruby-bindings
|
@@ -43,11 +43,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
43
|
version: 2.6.0
|
44
44
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - "
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
48
|
+
version: '0'
|
49
49
|
requirements: []
|
50
|
-
rubygems_version: 3.
|
50
|
+
rubygems_version: 3.3.7
|
51
51
|
signing_key:
|
52
52
|
specification_version: 4
|
53
53
|
summary: Ruby parser written in Rust.
|
Binary file
|