lib-ruby-parser 4.0.3.0-x64-mingw32 → 4.0.3.1-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +122 -122
- data/lib/lib-ruby-parser/messages.rb +468 -468
- data/lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.0/lib_ruby_parser.so +0 -0
- data/lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.1/lib_ruby_parser.so +0 -0
- data/lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.2/lib_ruby_parser.so +0 -0
- data/lib/lib-ruby-parser/nodes.rb +2456 -2456
- data/lib/lib-ruby-parser/version.rb +4 -4
- data/lib/lib-ruby-parser.rb +323 -314
- data/lib-ruby-parser.gemspec +36 -36
- metadata +9 -9
- 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-ruby-parser.gemspec
CHANGED
@@ -1,36 +1,36 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require_relative 'lib/lib-ruby-parser/version'
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = 'lib-ruby-parser'
|
7
|
-
spec.version = LibRubyParser::VERSION
|
8
|
-
spec.licenses = ['MIT']
|
9
|
-
spec.authors = ['Ilya Bylich']
|
10
|
-
spec.email = ['ibylich@gmail.com']
|
11
|
-
|
12
|
-
spec.summary = 'Ruby parser written in Rust.'
|
13
|
-
spec.description = 'Ruby bindings for lib-ruby-parser.'
|
14
|
-
spec.homepage = 'https://github.com/lib-ruby-parser/ruby-bindings'
|
15
|
-
|
16
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
|
17
|
-
spec.platform = 'x64-mingw32'
|
18
|
-
|
19
|
-
spec.metadata['homepage_uri'] = spec.homepage
|
20
|
-
spec.metadata['source_code_uri'] = 'https://github.com/lib-ruby-parser/ruby-bindings'
|
21
|
-
|
22
|
-
spec.files = [
|
23
|
-
'README.md',
|
24
|
-
'lib-ruby-parser.gemspec',
|
25
|
-
'lib/lib-ruby-parser.rb',
|
26
|
-
'lib/lib-ruby-parser/version.rb',
|
27
|
-
'lib/lib-ruby-parser/messages.rb',
|
28
|
-
'lib/lib-ruby-parser/nodes.rb',
|
29
|
-
'lib/lib-ruby-parser/native/3.
|
30
|
-
'lib/lib-ruby-parser/native/3.
|
31
|
-
'lib/lib-ruby-parser/native/
|
32
|
-
]
|
33
|
-
spec.bindir = 'exe'
|
34
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
35
|
-
spec.require_paths = ['lib']
|
36
|
-
end
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/lib-ruby-parser/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'lib-ruby-parser'
|
7
|
+
spec.version = LibRubyParser::VERSION
|
8
|
+
spec.licenses = ['MIT']
|
9
|
+
spec.authors = ['Ilya Bylich']
|
10
|
+
spec.email = ['ibylich@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = 'Ruby parser written in Rust.'
|
13
|
+
spec.description = 'Ruby bindings for lib-ruby-parser.'
|
14
|
+
spec.homepage = 'https://github.com/lib-ruby-parser/ruby-bindings'
|
15
|
+
|
16
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
|
17
|
+
spec.platform = 'x64-mingw32'
|
18
|
+
|
19
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
20
|
+
spec.metadata['source_code_uri'] = 'https://github.com/lib-ruby-parser/ruby-bindings'
|
21
|
+
|
22
|
+
spec.files = [
|
23
|
+
'README.md',
|
24
|
+
'lib-ruby-parser.gemspec',
|
25
|
+
'lib/lib-ruby-parser.rb',
|
26
|
+
'lib/lib-ruby-parser/version.rb',
|
27
|
+
'lib/lib-ruby-parser/messages.rb',
|
28
|
+
'lib/lib-ruby-parser/nodes.rb',
|
29
|
+
'lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.2/lib_ruby_parser.so',
|
30
|
+
'lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.1/lib_ruby_parser.so',
|
31
|
+
'lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.0/lib_ruby_parser.so',
|
32
|
+
]
|
33
|
+
spec.bindir = 'exe'
|
34
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
35
|
+
spec.require_paths = ['lib']
|
36
|
+
end
|
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: 4.0.3.
|
4
|
+
version: 4.0.3.1
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Ilya Bylich
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-21 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/
|
25
|
-
- lib/lib-ruby-parser/native/3.
|
26
|
-
- lib/lib-ruby-parser/native/3.
|
24
|
+
- lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.0/lib_ruby_parser.so
|
25
|
+
- lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.1/lib_ruby_parser.so
|
26
|
+
- lib/lib-ruby-parser/native/x86_64-pc-windows-gnu/3.2/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
|
@@ -32,7 +32,7 @@ licenses:
|
|
32
32
|
metadata:
|
33
33
|
homepage_uri: https://github.com/lib-ruby-parser/ruby-bindings
|
34
34
|
source_code_uri: https://github.com/lib-ruby-parser/ruby-bindings
|
35
|
-
post_install_message:
|
35
|
+
post_install_message:
|
36
36
|
rdoc_options: []
|
37
37
|
require_paths:
|
38
38
|
- lib
|
@@ -47,8 +47,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '0'
|
49
49
|
requirements: []
|
50
|
-
rubygems_version: 3.
|
51
|
-
signing_key:
|
50
|
+
rubygems_version: 3.4.6
|
51
|
+
signing_key:
|
52
52
|
specification_version: 4
|
53
53
|
summary: Ruby parser written in Rust.
|
54
54
|
test_files: []
|
Binary file
|
Binary file
|
Binary file
|