layout_convert 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 074fafadbd701da746ad20bfb735f1d628459606
4
- data.tar.gz: a8ccd652654357717fbe36580db52c3f68b1645e
3
+ metadata.gz: 0c303a459a9d43b427ef654f33b257dbfdbaf8d1
4
+ data.tar.gz: cc013acc0691cefa6a06a53d1c61143252cd1b4a
5
5
  SHA512:
6
- metadata.gz: 26af8664a4aa027d0d50450ae1b4648ffce365895e0b28e12ba686b1526a74f0c4f088dad242161a5eff23d7073fc88f42205ec5cbfdd8188b26b2bc37794051
7
- data.tar.gz: 61e2b24932326532e1d04eecae2c0058cf6f9ccb5f6df49dee6815b0582b480003a363a23e7a46245c1e503927d7a1763e3dfadc4cc8e4f50d9f7b146dbcfd71
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 [![Gem Version](https://badge.fury.io/rb/layout_convert.svg)](http://badge.fury.io/rb/layout_convert) [![Code Climate](https://codeclimate.com/github/bluurn/layout_convert.png)](https://codeclimate.com/github/bluurn/layout_convert) [![Coverage](https://codeclimate.com/github/bluurn/layout_convert/coverage.png)](https://codeclimate.com/github/bluurn/layout_convert) [![Build Status](https://travis-ci.org/bluurn/layout_convert.svg?branch=master)](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
- [![Gem Version](https://badge.fury.io/rb/layout_convert.svg)](http://badge.fury.io/rb/layout_convert)
12
- [![Code Climate](https://codeclimate.com/github/bluurn/layout_convert.png)](https://codeclimate.com/github/bluurn/layout_convert)
13
- [![Coverage](https://codeclimate.com/github/bluurn/layout_convert/coverage.png)](https://codeclimate.com/github/bluurn/layout_convert)
14
- [![Build Status](https://travis-ci.org/bluurn/layout_convert.svg?branch=master)](https://travis-ci.org/bluurn/layout_convert)
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! :)
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module LayoutConvert
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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: "\nA String class now has these methods available\n* cyrillic?\n* latin?\n*
42
- mixed?\n* cyrillish?\n* latinish?\n* swap_layout "
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: []