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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 221efaec566daf80f86fd7e4290b34493c1c2b20003dd92fe043c027a77f42eb
4
- data.tar.gz: b755744e6f8d85065e4d0bee7378cff0748b3f15fd6adc2a80f29ec4c7b6c93f
3
+ metadata.gz: c2bf11853df745a280cbbeb980058c13b096400cfc97fff5894f0746197d0107
4
+ data.tar.gz: b74b0b31502d4b00aca3ea985028aea3602ac5affb267707be323ef12bc7fd99
5
5
  SHA512:
6
- metadata.gz: 658ae39b8d8f350682e519aacffceb9534d3697cf2ecd4bc7a9a768468742b98906cfb298553149a81b9fe3459ea621207ff539832ce63f9e02495168a96b296
7
- data.tar.gz: 06e3ca902cd71cafa38b6bfbf6347e8cfb5de1485926f3b5fd01265661cb105df28adc8753721c95c03196a317af518ec236cf4d8e0d310528dcbc8722dc9214
6
+ metadata.gz: 0dc2aec44bac4e540a42bd154f9897895fcd6eba6a014c751f8ed4ea4e0980f81dd0e31f9a631645c16d02873c5e308a74deb5ba0b7d27c3cd6d4d1e8638617f
7
+ data.tar.gz: 9da37da83584f1897710d09904d32809ad218045c4931efdaef8afb527b908c566d677c66b94b500d2d1477f8af4833e22c84a0d1728bfe8b80b3e1c71a7e818
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- [![Build Status](https://travis-ci.com/oieioi/masososo.svg?token=okzT4ciBqpfSUbg7GQfs&branch=master)](https://travis-ci.com/oieioi/masososo)
1
+ [![Gem Version](https://badge.fury.io/rb/masososo.svg)](https://badge.fury.io/rb/masososo) [![Build Status](https://travis-ci.com/oieioi/masososo.svg?token=okzT4ciBqpfSUbg7GQfs&branch=master)](https://travis-ci.com/oieioi/masososo)
2
2
 
3
3
  # masososo
4
4
 
5
- Return similar-looking characters for example "", "" and "".
5
+ Make typo with similar-looking characters such as "ソ", "", "".
6
6
 
7
7
  ## Installation
8
8
 
@@ -1,14 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class String
4
- # Returns the string replaced similar chars randomly.
4
+ # Return the string replaced similar-looking chars randomly.
5
5
  #
6
- # 'マリリン・マンソン'.masososo
7
- # # => "マソソソ・マソソソ" or "マンンン・マソソリ" or ...
8
- def similar_string(opt = {})
9
- Masososo.similar_string(self, opt)
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 similar_string
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(opt = {})
21
- Masososo.similar_chars(self, opt)
28
+ def similar_chars(options = {})
29
+ Masososo.similar_chars(self, options)
22
30
  end
23
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Masososo
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
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: true, **)
22
- str.chars.map { |char| similar_chars(char, including_self: including_self).sample }.join('')
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 = 'Return similar-looking characters for example "", "" and "".'
14
- spec.description = 'Return similar-looking characters for example "", "" and "".'
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.1
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-10 00:00:00.000000000 Z
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: Return similar-looking characters for example "", "" and "".
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: Return similar-looking characters for example "", "" and "".
131
+ summary: Make typo with similar-looking characters such as "ソ", "", "".
132
132
  test_files: []