masososo 0.0.1 → 0.0.2
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 +2 -2
- data/lib/masososo/core_ext.rb +16 -8
- data/lib/masososo/version.rb +1 -1
- data/lib/masososo.rb +8 -2
- data/masososo.gemspec +2 -2
- 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: c2bf11853df745a280cbbeb980058c13b096400cfc97fff5894f0746197d0107
|
4
|
+
data.tar.gz: b74b0b31502d4b00aca3ea985028aea3602ac5affb267707be323ef12bc7fd99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dc2aec44bac4e540a42bd154f9897895fcd6eba6a014c751f8ed4ea4e0980f81dd0e31f9a631645c16d02873c5e308a74deb5ba0b7d27c3cd6d4d1e8638617f
|
7
|
+
data.tar.gz: 9da37da83584f1897710d09904d32809ad218045c4931efdaef8afb527b908c566d677c66b94b500d2d1477f8af4833e22c84a0d1728bfe8b80b3e1c71a7e818
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
[](https://travis-ci.com/oieioi/masososo)
|
1
|
+
[](https://badge.fury.io/rb/masososo) [](https://travis-ci.com/oieioi/masososo)
|
2
2
|
|
3
3
|
# masososo
|
4
4
|
|
5
|
-
|
5
|
+
Make typo with similar-looking characters such as "ソ", "ン", "リ".
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
data/lib/masososo/core_ext.rb
CHANGED
@@ -1,14 +1,22 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
class String
|
4
|
-
#
|
4
|
+
# Return the string replaced similar-looking chars randomly.
|
5
5
|
#
|
6
|
-
# '
|
7
|
-
# # => "
|
8
|
-
|
9
|
-
|
6
|
+
# 'リリリリリリリリリン'.typo
|
7
|
+
# # => "ソリンッリリリッンソ"
|
8
|
+
#
|
9
|
+
# Setting <tt>frequency: 0</tt> disables typo. Default value is <tt>0.5</tt>.
|
10
|
+
#
|
11
|
+
# 'リリリリリリリリリン'.typo(frequency: 0)
|
12
|
+
# # => "リリリリリリリリリン"
|
13
|
+
#
|
14
|
+
# 'リリリリリリリリリン'.typo(frequency: 1.0)
|
15
|
+
# # => "ソソンッソソソッンリ"
|
16
|
+
def typo(options = {})
|
17
|
+
Masososo.similar_string(self, options)
|
10
18
|
end
|
11
|
-
alias masososo
|
19
|
+
alias masososo typo
|
12
20
|
|
13
21
|
# Returns similar chars.
|
14
22
|
#
|
@@ -17,7 +25,7 @@ class String
|
|
17
25
|
#
|
18
26
|
# 'ソ'.similar_chars(including_self: true)
|
19
27
|
# # => ["ソ", "リ", "ン"]
|
20
|
-
def similar_chars(
|
21
|
-
Masososo.similar_chars(self,
|
28
|
+
def similar_chars(options = {})
|
29
|
+
Masososo.similar_chars(self, options)
|
22
30
|
end
|
23
31
|
end
|
data/lib/masososo/version.rb
CHANGED
data/lib/masososo.rb
CHANGED
@@ -18,8 +18,14 @@ module Masososo
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
-
def similar_string(str, including_self:
|
22
|
-
str.chars.map
|
21
|
+
def similar_string(str, including_self: false, frequency: 0.5, **)
|
22
|
+
str.chars.map do |char|
|
23
|
+
if rand < frequency
|
24
|
+
similar_chars(char, including_self: including_self).sample
|
25
|
+
else
|
26
|
+
char
|
27
|
+
end
|
28
|
+
end.join('')
|
23
29
|
end
|
24
30
|
|
25
31
|
@@similar_char_index = Indexer.index(SIMILAR_CHAR_SETS, false)
|
data/masososo.gemspec
CHANGED
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["oieioi"]
|
11
11
|
spec.email = ["atsuinatsu.samuifuyu@gmail.com"]
|
12
12
|
|
13
|
-
spec.summary = '
|
14
|
-
spec.description = '
|
13
|
+
spec.summary = 'Make typo with similar-looking characters such as "ソ", "ン", "リ".'
|
14
|
+
spec.description = 'Make typo with similar-looking characters such as "ソ", "ン", "リ".'
|
15
15
|
spec.homepage = "https://github.com/oieioi/masososo/"
|
16
16
|
spec.license = "MIT"
|
17
17
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- oieioi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04-
|
11
|
+
date: 2019-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description:
|
83
|
+
description: Make typo with similar-looking characters such as "ソ", "ン", "リ".
|
84
84
|
email:
|
85
85
|
- atsuinatsu.samuifuyu@gmail.com
|
86
86
|
executables: []
|
@@ -128,5 +128,5 @@ requirements: []
|
|
128
128
|
rubygems_version: 3.0.3
|
129
129
|
signing_key:
|
130
130
|
specification_version: 4
|
131
|
-
summary:
|
131
|
+
summary: Make typo with similar-looking characters such as "ソ", "ン", "リ".
|
132
132
|
test_files: []
|