layout_convert 0.0.4 → 0.0.5
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 +12 -5
- data/layout_convert.gemspec +11 -1
- data/lib/layout_convert/version.rb +1 -1
- metadata +19 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c303a459a9d43b427ef654f33b257dbfdbaf8d1
|
4
|
+
data.tar.gz: cc013acc0691cefa6a06a53d1c61143252cd1b4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4e2cf0db510feca6582561efa0796e6bff7ad620ae557fd447f394da3ac3e06533d7ba2f1b23efd2dd44490b2fd1d2d44f47234afa6c32ccb006dfe96fa958b
|
7
|
+
data.tar.gz: a5f09f6fc8253244e5d456e795f0ce855ebc1844ef78ef5fbef11d5a96ff3ed7200136f0a5d40bf7fb242eb6cfddc6d645c0f75b58a454a255582a62ad0b4c06
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Basic latin2cyrillic layout swapper
|
1
|
+
# Basic latin2cyrillic layout swapper [](http://badge.fury.io/rb/layout_convert) [](https://codeclimate.com/github/bluurn/layout_convert) [](https://codeclimate.com/github/bluurn/layout_convert) [](https://travis-ci.org/bluurn/layout_convert)
|
2
2
|
|
3
3
|
A String class now has these methods available
|
4
4
|
* cyrillic?
|
@@ -8,7 +8,14 @@ A String class now has these methods available
|
|
8
8
|
* latinish?
|
9
9
|
* swap_layout
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
It's simple, just type
|
14
|
+
```
|
15
|
+
"ghbdtn".swap_layout
|
16
|
+
```
|
17
|
+
And you will get this result
|
18
|
+
```
|
19
|
+
=> "привет"
|
20
|
+
```
|
21
|
+
Easy! :)
|
data/layout_convert.gemspec
CHANGED
@@ -16,7 +16,17 @@ A String class now has these methods available
|
|
16
16
|
* mixed?
|
17
17
|
* cyrillish?
|
18
18
|
* latinish?
|
19
|
-
* swap_layout
|
19
|
+
* swap_layout
|
20
|
+
Usage: It's simple, just type
|
21
|
+
```
|
22
|
+
"ghbdtn".swap_layout
|
23
|
+
```
|
24
|
+
And you will get this result
|
25
|
+
```
|
26
|
+
=> "привет"
|
27
|
+
```
|
28
|
+
Easy! :)
|
29
|
+
}
|
20
30
|
spec.homepage = ""
|
21
31
|
spec.license = "MIT"
|
22
32
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: layout_convert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bluurn
|
@@ -38,8 +38,24 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
42
|
-
|
41
|
+
description: |2
|
42
|
+
|
43
|
+
A String class now has these methods available
|
44
|
+
* cyrillic?
|
45
|
+
* latin?
|
46
|
+
* mixed?
|
47
|
+
* cyrillish?
|
48
|
+
* latinish?
|
49
|
+
* swap_layout
|
50
|
+
Usage: It's simple, just type
|
51
|
+
```
|
52
|
+
"ghbdtn".swap_layout
|
53
|
+
```
|
54
|
+
And you will get this result
|
55
|
+
```
|
56
|
+
=> "привет"
|
57
|
+
```
|
58
|
+
Easy! :)
|
43
59
|
email:
|
44
60
|
- bluurn@gmail.com
|
45
61
|
executables: []
|