autocorrect-rb 2.9.0-x86_64-linux → 2.9.1.pre.rc0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/autocorrect/Cargo.toml +3 -2
- data/ext/autocorrect/src/lib.rs +8 -7
- data/lib/autocorrect/3.1/autocorrect.so +0 -0
- data/lib/autocorrect/3.2/autocorrect.so +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81a21ef23f7b70df0a06663ac6eeb85fb5954506f7c667579de7e7b4cf8428a2
|
4
|
+
data.tar.gz: 5b004f780325a4aa27720b23f0d39130d8227475d2ac6a39cdd0f76fdf6ba9ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65c2c5043e1661a5f8e64f967e0a94e71ff5c2c86b72938ba0c821aa2b60778d6973e9946dad690983f5d071e8c01a94913879cb1f0432062eabdd60ad3e512b
|
7
|
+
data.tar.gz: 1f8c38eb3d8ad00a7c3dda438e589af4925d0cd654c64089572e899b1adf51753c1163c893acc98453f43388194f81f0211351dbcda58d894ec7e9b2a0eb1279
|
data/ext/autocorrect/Cargo.toml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
[package]
|
2
2
|
edition = "2021"
|
3
3
|
name = "autocorrect-rb"
|
4
|
-
version = "2.9.
|
4
|
+
version = "2.9.1"
|
5
5
|
|
6
6
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
7
7
|
[lib]
|
@@ -10,4 +10,5 @@ name = "autocorrect"
|
|
10
10
|
|
11
11
|
[dependencies]
|
12
12
|
autocorrect = "2"
|
13
|
-
magnus = "0.
|
13
|
+
magnus = "0.6"
|
14
|
+
rb-sys = { version = "*", default-features = false, features = ["stable-api-compiled-fallback"] }
|
data/ext/autocorrect/src/lib.rs
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
use magnus::{define_class, function, method, Error, Module, Object};
|
1
|
+
use magnus::{define_class, function, method, Error, IntoValue, Module, Object};
|
2
2
|
|
3
3
|
#[derive(Debug, Clone)]
|
4
4
|
pub struct LineResult {
|
@@ -74,10 +74,11 @@ impl LintResult {
|
|
74
74
|
hash.aset("filepath", self.filepath())?;
|
75
75
|
hash.aset(
|
76
76
|
"lines",
|
77
|
-
|
78
|
-
.
|
79
|
-
|
80
|
-
|
77
|
+
magnus::RArray::from_iter(
|
78
|
+
self.lines()
|
79
|
+
.iter()
|
80
|
+
.map(|l| l.to_hash().unwrap().into_value()),
|
81
|
+
),
|
81
82
|
)?;
|
82
83
|
hash.aset("error", self.error())?;
|
83
84
|
Ok(hash)
|
@@ -137,13 +138,13 @@ pub fn load_config(config_str: String) {
|
|
137
138
|
|
138
139
|
#[magnus::init(name = "autocorrect")]
|
139
140
|
fn init() -> Result<(), Error> {
|
140
|
-
let class = define_class("AutoCorrect",
|
141
|
+
let class = define_class("AutoCorrect", magnus::class::object())?;
|
141
142
|
class.define_singleton_method("format", function!(format, 1))?;
|
142
143
|
class.define_singleton_method("format_for", function!(format_for, 2))?;
|
143
144
|
class.define_singleton_method("lint_for", function!(lint_for, 2))?;
|
144
145
|
class.define_singleton_method("load_config", function!(load_config, 1))?;
|
145
146
|
|
146
|
-
let ignorer_class = class.define_class("Ignorer",
|
147
|
+
let ignorer_class = class.define_class("Ignorer", magnus::class::object())?;
|
147
148
|
ignorer_class.define_singleton_method("new", function!(Ignorer::new, 1))?;
|
148
149
|
ignorer_class.define_method("ignored?", method!(Ignorer::is_ignored, 1))?;
|
149
150
|
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autocorrect-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.9.
|
4
|
+
version: 2.9.1.pre.rc0
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Jason Lee
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rb_sys
|
@@ -58,9 +58,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
58
|
version: 3.3.dev
|
59
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
|
-
- - "
|
61
|
+
- - ">"
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
63
|
+
version: 1.3.1
|
64
64
|
requirements: []
|
65
65
|
rubygems_version: 3.4.4
|
66
66
|
signing_key:
|