layout_convert 0.0.2 → 0.0.3
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/.travis.yml +7 -0
- data/Gemfile +2 -0
- data/README.md +2 -0
- data/lib/layout_convert/version.rb +1 -1
- data/spec/.rspec +1 -0
- data/spec/layout_convert_spec.rb +6 -0
- data/spec/spec_helper.rb +3 -0
- metadata +6 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 756f68ea800bfb5a0187ea847a94bdae2c6a943d
|
4
|
+
data.tar.gz: 7b7974ee1b38c1c77f2b15c838f4dfb70842e239
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef7d79b5ad3dea925e61425b72efd77a6dd7a80c85061b12eb7e28e60f2c96225fa35cefb5ed15af2ae0a332eac0ed6ad9424e145dd432425cc97047b56037b6
|
7
|
+
data.tar.gz: 471444681c0b761fb89599102981f74b29181f1b9dd6ae8854ba8a6e4d1d8607cedacaf86e95030176e7ee49657fd3309d2f5840b68f7d8d191a6bb7f5620dbf
|
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -10,3 +10,5 @@ A String class now has these methods available
|
|
10
10
|
|
11
11
|
[](http://badge.fury.io/rb/layout_convert)
|
12
12
|
[](https://codeclimate.com/github/bluurn/layout_convert)
|
13
|
+
[](https://codeclimate.com/github/bluurn/layout_convert)
|
14
|
+
[](https://travis-ci.org/bluurn/layout_convert)
|
data/spec/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--require spec_helper
|
data/spec/layout_convert_spec.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
require "spec_helper"
|
1
2
|
require "layout_convert"
|
2
3
|
|
3
4
|
describe "A magic mixin module" do
|
@@ -102,4 +103,9 @@ describe "A magic mixin module" do
|
|
102
103
|
end
|
103
104
|
end
|
104
105
|
end
|
106
|
+
describe "has the 'split_words' method" do
|
107
|
+
it "should split words correctly" do
|
108
|
+
expect(latin_example.send('split_words').length).to be_equal 2
|
109
|
+
end
|
110
|
+
end
|
105
111
|
end
|
data/spec/spec_helper.rb
ADDED
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bluurn
|
@@ -47,6 +47,7 @@ extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
49
|
- .gitignore
|
50
|
+
- .travis.yml
|
50
51
|
- Gemfile
|
51
52
|
- LICENSE.txt
|
52
53
|
- README.md
|
@@ -54,7 +55,9 @@ files:
|
|
54
55
|
- layout_convert.gemspec
|
55
56
|
- lib/layout_convert.rb
|
56
57
|
- lib/layout_convert/version.rb
|
58
|
+
- spec/.rspec
|
57
59
|
- spec/layout_convert_spec.rb
|
60
|
+
- spec/spec_helper.rb
|
58
61
|
homepage: ''
|
59
62
|
licenses:
|
60
63
|
- MIT
|
@@ -80,4 +83,6 @@ signing_key:
|
|
80
83
|
specification_version: 4
|
81
84
|
summary: Basic string Latin <-> Cyrillic Layour swapper
|
82
85
|
test_files:
|
86
|
+
- spec/.rspec
|
83
87
|
- spec/layout_convert_spec.rb
|
88
|
+
- spec/spec_helper.rb
|