autocorrect-rb 2.5.6.pre1

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.
@@ -0,0 +1,8 @@
1
+
2
+ #![feature(provide_any)]
3
+
4
+ use std::any::{Demand, Provider};
5
+
6
+ fn _f<'a, P: Provider>(p: &'a P, demand: &mut Demand<'a>) {
7
+ p.provide(demand);
8
+ }
@@ -0,0 +1,7 @@
1
+ begin
2
+ # load the precompiled extension file
3
+ ruby_version = /(\d+\.\d+)/.match(::RUBY_VERSION)
4
+ require_relative "autocorrect/#{ruby_version}/autocorrect"
5
+ rescue LoadError
6
+ require "autocorrect/autocorrect"
7
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: autocorrect-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.5.6.pre1
5
+ platform: ruby
6
+ authors:
7
+ - Jason Lee
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-01-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rb_sys
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.18
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.18
27
+ description: AutoCorrect is a linter and formatter to help you to improve copywriting,
28
+ correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean).
29
+ email:
30
+ - huacnlee@gmail.com
31
+ executables: []
32
+ extensions:
33
+ - ext/autocorrect/extconf.rb
34
+ extra_rdoc_files: []
35
+ files:
36
+ - README.md
37
+ - Rakefile
38
+ - ext/autocorrect/Cargo.lock
39
+ - ext/autocorrect/Cargo.toml
40
+ - ext/autocorrect/extconf.rb
41
+ - ext/autocorrect/src/lib.rs
42
+ - ext/autocorrect/target/debug/build/bindgen-2bfaec9031475734/out/tests.rs
43
+ - ext/autocorrect/target/debug/build/clang-sys-989543ac26a5e988/out/common.rs
44
+ - ext/autocorrect/target/debug/build/clang-sys-989543ac26a5e988/out/dynamic.rs
45
+ - ext/autocorrect/target/debug/build/rb-sys-4b217af8fe7506dd/out/bindings-raw.rs
46
+ - ext/autocorrect/target/debug/build/rb-sys-4b217af8fe7506dd/out/bindings.rs
47
+ - ext/autocorrect/target/debug/build/thiserror-6f4e16a661287080/out/probe.rs
48
+ - ext/autocorrect/target/debug/incremental/autocorrect-ycs7cwobmcw6/s-ggxr2dhzul-3iamp5.lock
49
+ - lib/autocorrect-rb.rb
50
+ homepage: https://github.com/huacnlee/autocorrect
51
+ licenses:
52
+ - MIT
53
+ metadata: {}
54
+ post_install_message:
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">"
66
+ - !ruby/object:Gem::Version
67
+ version: 1.3.1
68
+ requirements: []
69
+ rubygems_version: 3.4.1
70
+ signing_key:
71
+ specification_version: 4
72
+ summary: AutoCorrect is a linter and formatter to help you to improve copywriting.
73
+ test_files: []