little_table 1.0.0
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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +40 -0
- data/Rakefile +1 -0
- data/lib/little_table.rb +42 -0
- data/lib/little_table/version.rb +3 -0
- data/little_table.gemspec +25 -0
- data/spec/app_spec.rb +77 -0
- data/spec/spec_helper.rb +3 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a1d49adfa9d961730f7efd1197fa18149c400408
|
4
|
+
data.tar.gz: 8bae5c0c0df775c2c589ff17554f2c6d9db26501
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bf19b21d431f7add6dcbcd83faef51b7d2fbb3ec3a4f3fc713a54217b199cc85f67da2d363ffe1720eda72d8fefa32e57ad92c70669cb22737c3ad810ba26976
|
7
|
+
data.tar.gz: a8db495acfcb0348d2dc846fbc8e8092b6710b2244e1fa48cd1061f8f7306330f001f48700b659cdc21bfa92875094cd58e7d42a449acfde9c7ec192738dd120
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Jankees van Woezik
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# LittleTable
|
2
|
+
|
3
|
+
Little Tabel converts cucumber like tables to usefull objects
|
4
|
+
|
5
|
+
| column1 | column2 |
|
6
|
+
| cell1x1 | cell1x2 |
|
7
|
+
| cell2x1 | cell2x2 |
|
8
|
+
|
9
|
+
Converts to:
|
10
|
+
|
11
|
+
[{column1: 'cell1x1', column2: 'cell1x2'}, {column1: 'cell2x1', column2: 'cell2x2'}] # hashes
|
12
|
+
['column1','column2'] # headers
|
13
|
+
[['cell1x1', 'cell1x2'], ['cell2x1', 'cell2x2']] # rows
|
14
|
+
|
15
|
+
|
16
|
+
## Installation
|
17
|
+
|
18
|
+
Add this line to your application's Gemfile:
|
19
|
+
|
20
|
+
gem 'little_table'
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
|
24
|
+
$ bundle
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install little_table
|
29
|
+
|
30
|
+
## Usage
|
31
|
+
|
32
|
+
TODO: Write usage instructions here
|
33
|
+
|
34
|
+
## Contributing
|
35
|
+
|
36
|
+
1. Fork it
|
37
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
38
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
39
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
40
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/little_table.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'active_support/all'
|
2
|
+
|
3
|
+
class LittleTable
|
4
|
+
|
5
|
+
def initialize input
|
6
|
+
@table_string = input
|
7
|
+
end
|
8
|
+
|
9
|
+
def length
|
10
|
+
@table_string.lines.count - 1
|
11
|
+
end
|
12
|
+
|
13
|
+
def headers
|
14
|
+
parse_line_number 0
|
15
|
+
end
|
16
|
+
|
17
|
+
def rows
|
18
|
+
@table_string.lines[1..-1].map { |line| parse_line line }
|
19
|
+
end
|
20
|
+
|
21
|
+
def hashes
|
22
|
+
result = []
|
23
|
+
rows.each do |row|
|
24
|
+
row_hash = {}
|
25
|
+
headers.each_with_index do |header,index|
|
26
|
+
row_hash[header.parameterize('_').to_sym] = row[index]
|
27
|
+
end
|
28
|
+
result.push row_hash
|
29
|
+
end
|
30
|
+
result
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def parse_line_number number
|
36
|
+
parse_line @table_string.lines[number]
|
37
|
+
end
|
38
|
+
|
39
|
+
def parse_line text
|
40
|
+
text.split('|').reject { |i| !i.present? }.map { |value| value.squish }
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'little_table/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "little_table"
|
8
|
+
spec.version = LittleTable::VERSION
|
9
|
+
spec.authors = ["Jankees van Woezik"]
|
10
|
+
spec.email = ["jankees@base42.nl"]
|
11
|
+
spec.description = %q{Little Tabel converts cucumber like tables to usefull objects}
|
12
|
+
spec.summary = %q{Convert your tables to objects}
|
13
|
+
spec.homepage = "http://rubygems.org/gems/little_table"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "rspec"
|
24
|
+
spec.add_development_dependency "active_support"
|
25
|
+
end
|
data/spec/app_spec.rb
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe LittleTable do
|
4
|
+
|
5
|
+
context 'with a simple table' do
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
@table = <<-EOF
|
9
|
+
| column1 | column2 |
|
10
|
+
| cell1 | cell2 |
|
11
|
+
EOF
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'should have a length of 1' do
|
15
|
+
LittleTable.new(@table).length.should == 1
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'should have headers' do
|
19
|
+
LittleTable.new(@table).headers.should == %w{column1 column2}
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should have cells' do
|
23
|
+
LittleTable.new(@table).rows.should == [['cell1', 'cell2']]
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'should have hashes' do
|
27
|
+
LittleTable.new(@table).hashes.should == [{column1: 'cell1', column2: 'cell2'}]
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
context 'with a little bit more complex table' do
|
33
|
+
before :each do
|
34
|
+
@table = <<-EOF
|
35
|
+
| column1 | column2 |
|
36
|
+
| cell1x1 | cell1x2 |
|
37
|
+
| cell2x1 | cell2x2 |
|
38
|
+
EOF
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'should have a length of 1' do
|
42
|
+
LittleTable.new(@table).length.should == 2
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'should have headers' do
|
46
|
+
LittleTable.new(@table).headers.should == %w{column1 column2}
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'should have cells' do
|
50
|
+
LittleTable.new(@table).rows.should == [['cell1x1', 'cell1x2'], ['cell2x1', 'cell2x2']]
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'should have hashes' do
|
54
|
+
LittleTable.new(@table).hashes.should == [{column1: 'cell1x1', column2: 'cell1x2'}, {column1: 'cell2x1', column2: 'cell2x2'}]
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
context 'table with complex header' do
|
60
|
+
before :each do
|
61
|
+
@table = <<-EOF
|
62
|
+
| column 1 | Colümn 2 |
|
63
|
+
| cell1 | cell2 |
|
64
|
+
EOF
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'should have headers' do
|
68
|
+
LittleTable.new(@table).headers.should == ['column 1', 'Colümn 2']
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'should have hashes' do
|
72
|
+
LittleTable.new(@table).hashes.should == [{column_1: 'cell1', column_2: 'cell2'}]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: little_table
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jankees van Woezik
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-06-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: active_support
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Little Tabel converts cucumber like tables to usefull objects
|
70
|
+
email:
|
71
|
+
- jankees@base42.nl
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE.txt
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- lib/little_table.rb
|
82
|
+
- lib/little_table/version.rb
|
83
|
+
- little_table.gemspec
|
84
|
+
- spec/app_spec.rb
|
85
|
+
- spec/spec_helper.rb
|
86
|
+
homepage: http://rubygems.org/gems/little_table
|
87
|
+
licenses:
|
88
|
+
- MIT
|
89
|
+
metadata: {}
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.0.2
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: Convert your tables to objects
|
110
|
+
test_files:
|
111
|
+
- spec/app_spec.rb
|
112
|
+
- spec/spec_helper.rb
|
113
|
+
has_rdoc:
|