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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6fb9407c176772d8f7861bd3604d29369cfb3b01
4
- data.tar.gz: 40f9a6eda1b166cb7f0f513ec854a74e0625082d
3
+ metadata.gz: 756f68ea800bfb5a0187ea847a94bdae2c6a943d
4
+ data.tar.gz: 7b7974ee1b38c1c77f2b15c838f4dfb70842e239
5
5
  SHA512:
6
- metadata.gz: 0bf19e8b5724c78fe2823a03624df4327dfa4fa4a04915333907c171622fe0fde5188b6438d90a035b880092efea2d66624a8d45b837080029b617a0557eae6e
7
- data.tar.gz: af549ca221160455a5c127c0c7ebc316228be0d2c374af31745f87699986f0e119ca778756464d596b5981a16f163a46d53265c2fb6937e5686b55526636ddd7
6
+ metadata.gz: ef7d79b5ad3dea925e61425b72efd77a6dd7a80c85061b12eb7e28e60f2c96225fa35cefb5ed15af2ae0a332eac0ed6ad9424e145dd432425cc97047b56037b6
7
+ data.tar.gz: 471444681c0b761fb89599102981f74b29181f1b9dd6ae8854ba8a6e4d1d8607cedacaf86e95030176e7ee49657fd3309d2f5840b68f7d8d191a6bb7f5620dbf
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - "2.0.0"
4
+ script: rake spec_all
5
+ addons:
6
+ code_climate:
7
+ repo_token: 51960221e8151ad9b40733ea47d536f89f5da3f418b350297c06f23e45f11e14
data/Gemfile CHANGED
@@ -2,3 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in layout_convert.gemspec
4
4
  gemspec
5
+ gem "rspec"
6
+ gem "codeclimate-test-reporter", group: :test, require: nil
data/README.md CHANGED
@@ -10,3 +10,5 @@ A String class now has these methods available
10
10
 
11
11
  [![Gem Version](https://badge.fury.io/rb/layout_convert.svg)](http://badge.fury.io/rb/layout_convert)
12
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)
@@ -1,3 +1,3 @@
1
1
  module LayoutConvert
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/spec/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
@@ -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
@@ -0,0 +1,3 @@
1
+ require "codeclimate-test-reporter"
2
+ ENV['CODECLIMATE_REPO_TOKEN'] = "51960221e8151ad9b40733ea47d536f89f5da3f418b350297c06f23e45f11e14"
3
+ CodeClimate::TestReporter.start
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.2
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