little_table 1.0.1 → 1.0.2

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: 69aff402a45d794216ce4172772b8e8f21e0526a
4
- data.tar.gz: 2ab7679c309d3e0287c155b39b5eb6146f82b9c9
3
+ metadata.gz: 334f3a2a6a9517f5dfdb87d95c39498960062350
4
+ data.tar.gz: 1a83bca96dccfc48954b1ab3bf25f137b4f0f773
5
5
  SHA512:
6
- metadata.gz: 79a9f68848ba5283f8052636610fd48104daf817234db640413d742f538354fdd422d46e5a6b9b233fd9d37fa7fd0b68263887a517bad921b21922ef13f9d780
7
- data.tar.gz: 71efe35450e5298f518f2571e85cd2670c22d7c10d678fe446a7bebae5adcb0c32da7a5c634ca41b95f3e347a7b7ce714e8e6cad6ad821a9bbb3eeecb40de151
6
+ metadata.gz: 2002bf23d2651e5fbfac6e107333911d9db7977d52f6c2dd3f50dce48162ea72e2b4b824d9a9c29901c5243020d8bb6b2a2084f920353f585cec036646125f3b
7
+ data.tar.gz: 657942f96ad2aaf7e4807bb17f6695b5728c042c095f9e77e539b810224d6ca81cac961ffe3d946fcd4aa3d5c09d9d5af62ff6a57120b409a2ffda7f6fa7c241
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.2
5
+ - 1.9.3
6
+ - 2.0.0
7
+
8
+ script: bundle exec rspec spec
data/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ [![Build Status](https://travis-ci.org/jankeesvw/little_table.png)](https://travis-ci.org/jankeesvw/little_table)
2
+ [![Code Climate](https://codeclimate.com/github/jankeesvw/little_table.png)](https://codeclimate.com/github/jankeesvw/little_table)
3
+
1
4
  # LittleTable
2
5
 
3
6
  Little Tabel converts cucumber like tables to usefull objects
data/lib/little_table.rb CHANGED
@@ -2,8 +2,6 @@ require 'active_support/all'
2
2
 
3
3
  class LittleTable
4
4
 
5
- VERSION = "1.0.1"
6
-
7
5
  def initialize input
8
6
  @table_string = input
9
7
  end
data/little_table.gemspec CHANGED
@@ -5,7 +5,7 @@ require 'little_table'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "little_table"
8
- spec.version = LittleTable::VERSION
8
+ spec.version = "1.0.2"
9
9
  spec.authors = ["Jankees van Woezik"]
10
10
  spec.email = ["jankees@base42.nl"]
11
11
  spec.description = %q{Little Tabel converts cucumber like tables to useful objects}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: little_table
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jankees van Woezik
@@ -74,6 +74,7 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - .gitignore
77
+ - .travis.yml
77
78
  - Gemfile
78
79
  - LICENSE.txt
79
80
  - README.md