autocorrect 2.6.1

A linter and formatter for help you improve copywriting, to correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean).
Documentation
// autocorrect: false
use super::*;
use autocorrect_derive::GrammarParser;
use pest::Parser as P;
use pest_derive::Parser;

#[derive(GrammarParser, Parser)]
#[grammar = "../grammar/ruby.pest"]
struct RubyParser;

#[cfg(test)]
mod tests {
    use super::*;
    use indoc::indoc;
    use pretty_assertions::assert_eq;

    #[test]
    fn it_format_ruby() {
        let example = indoc! {r###"
        # 第1行注释
        # 第2行注释
        def hello(a, b: "第1个参数")
          re = /hello你好/
          re1 = %r{hello你好}
          re2 = Regexp.new('hello你好' )
          re3 = Regexp.new( "hello你好")

          a = "hello世界#{a}"
          b = '你好hello世界'
        end
        "###};

        let expect = indoc! {r###"
        # 第 1 行注释
        # 第 2 行注释
        def hello(a, b: "第 1 个参数")
          re = /hello你好/
          re1 = %r{hello你好}
          re2 = Regexp.new('hello你好' )
          re3 = Regexp.new( "hello你好")

          a = "hello 世界#{a}"
          b = '你好 hello 世界'
        end
        "###};

        assert_eq!(expect, format_for(example, "ruby").to_string());
    }
}