masososo 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/README.md +14 -0
- data/exe/masososo +5 -0
- data/lib/masososo/version.rb +1 -1
- data/masososo.gemspec +2 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: caa4badd60f193733f0a1a66e77394ae2ce8e78c03d437fd9d26a45c31f31bf8
|
4
|
+
data.tar.gz: 744125ab96f2bd57ace97a345e7824f7d0580d85614e5339a1121aa6e546ee98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f00c04c46ff0447250cb8d34e3f3ba6a95a68eaa9ae3ed2b0a5a73ece28c5a21e261e9dff989bfdc92525634175b3014a49aed9722e71a46b669622df4d01db
|
7
|
+
data.tar.gz: 67c1ff8750098eb62b41c4ab5120129d39fe72c39ed1df2b7dc56dd50057353796bb935af92fc709dd115fa9f695fe5491e84fe4a0d1cd077d0d43cb294d4914
|
data/README.md
CHANGED
@@ -28,12 +28,26 @@ Or install it yourself as:
|
|
28
28
|
'リンゴを4つとみかんを7つください'.masososo
|
29
29
|
# => "リリゴを4つとゐかんをワつくだちい"
|
30
30
|
|
31
|
+
# masososo aliased typo
|
32
|
+
'リンゴを4つとみかんを7つください'.typo
|
33
|
+
# => "ンソゴをムつとゐかんを7つくだちリ"
|
34
|
+
|
35
|
+
'リンゴを4つとみかんを7つください'.typo(frequency: 0.2)
|
36
|
+
# => "リンゴをムつとみかんを7つください"
|
37
|
+
|
31
38
|
?ソ.similar_chars
|
32
39
|
# => ["リ", "ン"]
|
33
40
|
?ソ.similar_chars(including_self: true)
|
34
41
|
# => ["ソ", "リ", "ン"]
|
35
42
|
```
|
36
43
|
|
44
|
+
or
|
45
|
+
|
46
|
+
```sh
|
47
|
+
$ echo リンゴガオイシイキセツデスネ | masososo
|
48
|
+
=> ンリコ゚ガオイシイキセツデ7ネ
|
49
|
+
```
|
50
|
+
|
37
51
|
## Contributing
|
38
52
|
|
39
53
|
Bug reports and pull requests are welcome on GitHub at https://github.com/oieioi/masososo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/exe/masososo
ADDED
data/lib/masososo/version.rb
CHANGED
data/masososo.gemspec
CHANGED
@@ -21,6 +21,8 @@ Gem::Specification.new do |spec|
|
|
21
21
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
22
|
end
|
23
23
|
spec.require_paths = ["lib"]
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
26
|
|
25
27
|
spec.add_development_dependency "bundler", "~> 1.17.2"
|
26
28
|
spec.add_development_dependency "byebug"
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: masososo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- oieioi
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2019-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -83,7 +83,8 @@ dependencies:
|
|
83
83
|
description: Make typo with similar-looking characters such as "ソ", "ン", "リ".
|
84
84
|
email:
|
85
85
|
- atsuinatsu.samuifuyu@gmail.com
|
86
|
-
executables:
|
86
|
+
executables:
|
87
|
+
- masososo
|
87
88
|
extensions: []
|
88
89
|
extra_rdoc_files: []
|
89
90
|
files:
|
@@ -100,6 +101,7 @@ files:
|
|
100
101
|
- Rakefile
|
101
102
|
- bin/console
|
102
103
|
- bin/setup
|
104
|
+
- exe/masososo
|
103
105
|
- lib/masososo.rb
|
104
106
|
- lib/masososo/core_ext.rb
|
105
107
|
- lib/masososo/indexer.rb
|