typogen 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/LICENSE.txt +21 -0
- data/README.md +2 -2
- data/lib/typogen/end_same_sound.rb +4 -3
- data/lib/typogen/version.rb +1 -1
- data/typogen.gemspec +2 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c2128561f9eb18925e68bdf2e0b693097d0fa0f
|
4
|
+
data.tar.gz: d48ea148f4c51b74e1691d10f90c3727e72a90ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39f0017e6c5467cae634b024a82303e23ea71b20165030e18d230213021228209dca7b47ccc4b0f38ccc4482ff891b74bd8c328b955377c103a8e46cc7da9a10
|
7
|
+
data.tar.gz: 25b41bb8e312ce6358277908d0b425be9b38dd2956f5dce3b3584f87a4eef94256b186114be53e7dfc390a4216c673872d2f3741066aeee3c30ef4a411eecacb
|
data/.travis.yml
CHANGED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 siman-man
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Simple typo generator (English)
|
|
7
7
|
Or install it yourself as:
|
8
8
|
|
9
9
|
```
|
10
|
-
$ gem install
|
10
|
+
$ gem install typogen
|
11
11
|
```
|
12
12
|
|
13
13
|
## Usage
|
@@ -41,5 +41,5 @@ instale
|
|
41
41
|
|
42
42
|
## Contributing
|
43
43
|
|
44
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/siman-man/
|
44
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/siman-man/typogen. 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.
|
45
45
|
|
@@ -1,13 +1,14 @@
|
|
1
1
|
module TypoGen
|
2
2
|
class EndSameSound
|
3
3
|
PATTERN_LIST = [
|
4
|
-
%w(
|
5
|
-
%w(ll le),
|
4
|
+
%w(dar der),
|
6
5
|
%w(se ce),
|
7
6
|
%w(sion tion),
|
8
7
|
%w(tar tor ter),
|
9
8
|
%w(ser cer),
|
10
|
-
%w(val vel)
|
9
|
+
%w(val vel),
|
10
|
+
%w(rize lize),
|
11
|
+
%w(ry ly)
|
11
12
|
]
|
12
13
|
|
13
14
|
def self.create(word)
|
data/lib/typogen/version.rb
CHANGED
data/typogen.gemspec
CHANGED
@@ -12,6 +12,8 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = %q{simple typo generator}
|
13
13
|
spec.description = %q{simple typo generator}
|
14
14
|
spec.homepage = "https://github.com/siman-man/typogen"
|
15
|
+
spec.license = "MIT"
|
16
|
+
spec.required_ruby_version = '>= 2.2.0'
|
15
17
|
|
16
18
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
19
|
f.match(%r{^(test|spec|features)/})
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typogen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- siman-man
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- ".travis.yml"
|
66
66
|
- CODE_OF_CONDUCT.md
|
67
67
|
- Gemfile
|
68
|
+
- LICENSE.txt
|
68
69
|
- README.md
|
69
70
|
- Rakefile
|
70
71
|
- bin/console
|
@@ -79,7 +80,8 @@ files:
|
|
79
80
|
- lib/typogen/version.rb
|
80
81
|
- typogen.gemspec
|
81
82
|
homepage: https://github.com/siman-man/typogen
|
82
|
-
licenses:
|
83
|
+
licenses:
|
84
|
+
- MIT
|
83
85
|
metadata: {}
|
84
86
|
post_install_message:
|
85
87
|
rdoc_options: []
|
@@ -89,7 +91,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
91
|
requirements:
|
90
92
|
- - ">="
|
91
93
|
- !ruby/object:Gem::Version
|
92
|
-
version:
|
94
|
+
version: 2.2.0
|
93
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
96
|
requirements:
|
95
97
|
- - ">="
|