object_table 0.3.0 → 0.3.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 +5 -13
- data/.rspec +2 -0
- data/README.md +15 -0
- data/lib/object_table/basic_grid.rb +2 -9
- data/lib/object_table/column.rb +16 -6
- data/lib/object_table/grouped.rb +24 -28
- data/lib/object_table/masked_column.rb +7 -17
- data/lib/object_table/printable.rb +42 -42
- data/lib/object_table/stacker.rb +63 -0
- data/lib/object_table/table_methods.rb +14 -13
- data/lib/object_table/version.rb +1 -1
- data/lib/object_table/view.rb +2 -3
- data/lib/object_table/view_methods.rb +2 -0
- data/lib/object_table.rb +2 -112
- data/object_table.gemspec +1 -0
- data/spec/object_table/basic_grid_spec.rb +25 -1
- data/spec/object_table/column_spec.rb +34 -0
- data/spec/object_table/grouped_spec.rb +56 -3
- data/spec/object_table/masked_column_spec.rb +11 -11
- data/spec/object_table/view_spec.rb +28 -0
- data/spec/object_table_spec.rb +79 -208
- data/spec/spec_helper.rb +95 -0
- data/spec/support/object_table_example.rb +14 -0
- data/spec/support/stacker_example.rb +158 -0
- data/spec/support/view_example.rb +85 -35
- metadata +26 -6
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
4
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
5
|
+
#
|
6
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
7
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
8
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
9
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
10
|
+
# a separate helper file that requires the additional dependencies and performs
|
11
|
+
# the additional setup, and require it from the spec files that actually need it.
|
12
|
+
#
|
13
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
14
|
+
# users commonly want.
|
15
|
+
#
|
16
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
17
|
+
|
18
|
+
|
19
|
+
require 'coveralls'
|
20
|
+
Coveralls.wear!
|
21
|
+
|
22
|
+
|
23
|
+
RSpec.configure do |config|
|
24
|
+
# rspec-expectations config goes here. You can use an alternate
|
25
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
26
|
+
# assertions if you prefer.
|
27
|
+
config.expect_with :rspec do |expectations|
|
28
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
29
|
+
# and `failure_message` of custom matchers include text for helper methods
|
30
|
+
# defined using `chain`, e.g.:
|
31
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
32
|
+
# # => "be bigger than 2 and smaller than 4"
|
33
|
+
# ...rather than:
|
34
|
+
# # => "be bigger than 2"
|
35
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
36
|
+
end
|
37
|
+
|
38
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
39
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
40
|
+
config.mock_with :rspec do |mocks|
|
41
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
42
|
+
# a real object. This is generally recommended, and will default to
|
43
|
+
# `true` in RSpec 4.
|
44
|
+
mocks.verify_partial_doubles = true
|
45
|
+
end
|
46
|
+
|
47
|
+
# The settings below are suggested to provide a good initial experience
|
48
|
+
# with RSpec, but feel free to customize to your heart's content.
|
49
|
+
=begin
|
50
|
+
# These two settings work together to allow you to limit a spec run
|
51
|
+
# to individual examples or groups you care about by tagging them with
|
52
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
53
|
+
# get run.
|
54
|
+
config.filter_run :focus
|
55
|
+
config.run_all_when_everything_filtered = true
|
56
|
+
|
57
|
+
# Limits the available syntax to the non-monkey patched syntax that is recommended.
|
58
|
+
# For more details, see:
|
59
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
60
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
61
|
+
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
|
62
|
+
config.disable_monkey_patching!
|
63
|
+
|
64
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
65
|
+
# be too noisy due to issues in dependencies.
|
66
|
+
config.warnings = true
|
67
|
+
|
68
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
69
|
+
# file, and it's useful to allow more verbose output when running an
|
70
|
+
# individual spec file.
|
71
|
+
if config.files_to_run.one?
|
72
|
+
# Use the documentation formatter for detailed output,
|
73
|
+
# unless a formatter has already been configured
|
74
|
+
# (e.g. via a command-line flag).
|
75
|
+
config.default_formatter = 'doc'
|
76
|
+
end
|
77
|
+
|
78
|
+
# Print the 10 slowest examples and example groups at the
|
79
|
+
# end of the spec run, to help surface which specs are running
|
80
|
+
# particularly slow.
|
81
|
+
config.profile_examples = 10
|
82
|
+
|
83
|
+
# Run specs in random order to surface order dependencies. If you find an
|
84
|
+
# order dependency and want to debug it, you can fix the order by providing
|
85
|
+
# the seed, which is printed after each run.
|
86
|
+
# --seed 1234
|
87
|
+
config.order = :random
|
88
|
+
|
89
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
90
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
91
|
+
# test failures related to randomization by passing the same `--seed` value
|
92
|
+
# as the one that triggered the failure.
|
93
|
+
Kernel.srand config.seed
|
94
|
+
=end
|
95
|
+
end
|
@@ -182,6 +182,20 @@ EOS
|
|
182
182
|
|
183
183
|
end
|
184
184
|
|
185
|
+
describe '#has_column?' do
|
186
|
+
let(:table) { ObjectTable.new(col1: [1, 2, 3], col2: [5, 5, 5]) }
|
187
|
+
|
188
|
+
it 'should be true for columns in the table' do
|
189
|
+
expect(subject).to have_column :col1
|
190
|
+
expect(subject).to have_column :col2
|
191
|
+
end
|
192
|
+
|
193
|
+
it 'should be false for columns not in the table' do
|
194
|
+
expect(subject).to_not have_column :col3
|
195
|
+
expect(subject).to_not have_column 'something else'
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
185
199
|
describe '#nrows' do
|
186
200
|
let(:table){ ObjectTable.new(col1: [1, 2, 3], col2: [5, 5, 5]) }
|
187
201
|
|
@@ -0,0 +1,158 @@
|
|
1
|
+
require 'object_table'
|
2
|
+
|
3
|
+
RSpec.shared_examples 'a table stacker' do
|
4
|
+
|
5
|
+
let(:grids) do
|
6
|
+
[
|
7
|
+
ObjectTable.new(col1: [1, 2, 3], col2: 5),
|
8
|
+
ObjectTable.new(col1: 10, col2: 50),
|
9
|
+
ObjectTable.new(col2: [10, 30], col1: 15).where{col2.eq 10},
|
10
|
+
ObjectTable::BasicGrid[col2: [1, 2], col1: 3..4],
|
11
|
+
]
|
12
|
+
end
|
13
|
+
|
14
|
+
let(:segment) { NArray.float(10, 10, 10).indgen }
|
15
|
+
|
16
|
+
let!(:grids_copy) { grids.map(&:clone) }
|
17
|
+
|
18
|
+
shared_examples 'a stacking operation' do
|
19
|
+
|
20
|
+
it 'should join the tables and grids together' do
|
21
|
+
expect(subject).to be_a described_class
|
22
|
+
expect(subject).to eql described_class.new(
|
23
|
+
col1: grids_copy.flat_map{|x| x[:col1].to_a},
|
24
|
+
col2: grids_copy.flat_map{|x| x[:col2].to_a},
|
25
|
+
)
|
26
|
+
end
|
27
|
+
|
28
|
+
context 'with non grids/tables' do
|
29
|
+
let(:grids){ [ObjectTable.new(col1: 10, col2: 50), 'not a table'] }
|
30
|
+
|
31
|
+
it 'should fail' do
|
32
|
+
expect{subject}.to raise_error
|
33
|
+
end
|
34
|
+
|
35
|
+
context 'with only a non-grid/table' do
|
36
|
+
let(:grids) { ['not a table'] }
|
37
|
+
|
38
|
+
it 'should fail' do
|
39
|
+
expect{subject}.to raise_error
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
context 'with extra column names' do
|
45
|
+
let(:grids){ [ObjectTable.new(col1: 10, col2: 50), ObjectTable.new(col1: 10, col2: 30, col3: 50)] }
|
46
|
+
|
47
|
+
it 'should fail' do
|
48
|
+
expect{subject}.to raise_error
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context 'with missing column names' do
|
53
|
+
let(:grids){ [ObjectTable.new(col1: 10, col2: 50), ObjectTable.new(col1: 10)] }
|
54
|
+
|
55
|
+
it 'should fail' do
|
56
|
+
expect{subject}.to raise_error
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
context 'with empty tables' do
|
61
|
+
let(:grids) { [ ObjectTable.new(col1: [1, 2, 3], col2: 5), ObjectTable.new ] }
|
62
|
+
|
63
|
+
it 'should ignore empty tables' do
|
64
|
+
expect(subject).to eql grids[0]
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'with only empty tables' do
|
68
|
+
let(:grids) { [ObjectTable.new] * 3 }
|
69
|
+
|
70
|
+
it 'should return an empty table' do
|
71
|
+
expect(subject).to eql described_class.new
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
context 'with tables with empty rows' do
|
77
|
+
let(:grids) { [ ObjectTable.new(col1: [1, 2, 3], col2: 5), ObjectTable.new(col1: [], col2: []) ] }
|
78
|
+
|
79
|
+
it 'should ignore empty tables' do
|
80
|
+
expect(subject).to eql grids_copy[0]
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
context 'with empty grids' do
|
85
|
+
let(:grids) { [ ObjectTable.new(col1: [1, 2, 3], col2: 5), ObjectTable::BasicGrid.new ] }
|
86
|
+
|
87
|
+
it 'should ignore empty grids' do
|
88
|
+
expect(subject).to eql grids_copy[0]
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
context 'with only narray segments' do
|
93
|
+
let(:grids) { [ObjectTable.new(col1: segment)] * 3 }
|
94
|
+
|
95
|
+
it 'should work' do
|
96
|
+
expect(subject.col1).to eql NArray.to_na(segment.to_a * 3)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
context 'with a mixture of segment types' do
|
101
|
+
let(:grids) { [ObjectTable.new(col1: segment)] * 2 + [ObjectTable::BasicGrid[col1: segment.to_a]] * 3 }
|
102
|
+
|
103
|
+
it 'should work' do
|
104
|
+
expect(subject.col1).to eql NArray.to_na(segment.to_a * 5)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
end
|
109
|
+
|
110
|
+
|
111
|
+
describe '.stack' do
|
112
|
+
subject{ described_class.stack *grids }
|
113
|
+
|
114
|
+
it_behaves_like 'a stacking operation'
|
115
|
+
|
116
|
+
it 'should duplicate the contents' do
|
117
|
+
grids.each do |chunk|
|
118
|
+
expect(subject).to_not be chunk
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
context 'with no arguments' do
|
123
|
+
let(:grids){ [] }
|
124
|
+
|
125
|
+
it 'should return an empty table' do
|
126
|
+
expect(subject).to eql described_class.new
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
context 'with only empty grids' do
|
131
|
+
let(:grids) { [ObjectTable::BasicGrid.new] * 3 }
|
132
|
+
|
133
|
+
it 'should return an empty table' do
|
134
|
+
expect(subject).to eql described_class.new
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
context 'with only array segments' do
|
139
|
+
let(:grids) { [ObjectTable::BasicGrid[col1: segment.to_a]] * 3 }
|
140
|
+
|
141
|
+
it 'should work' do
|
142
|
+
expect(subject.col1).to eql NArray.to_na(segment.to_a * 3)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
|
148
|
+
describe '#stack!' do
|
149
|
+
subject{ grids[0].stack! *grids[1..-1] }
|
150
|
+
it_behaves_like 'a stacking operation'
|
151
|
+
|
152
|
+
it 'should modify the table' do
|
153
|
+
expect(subject).to be grids[0]
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
|
158
|
+
end
|
@@ -54,43 +54,54 @@ RSpec.shared_examples 'a table view' do |cls|
|
|
54
54
|
let(:block) { Proc.new{col1 > 0} }
|
55
55
|
let(:view) { _make_relevant_view(table, block) }
|
56
56
|
|
57
|
-
let(:column){ :col1 }
|
58
57
|
let(:value) { [10, 20, 30] }
|
59
|
-
|
60
58
|
let(:args) { [] }
|
61
59
|
|
62
60
|
subject{ view.set_column(column, value, *args) }
|
63
61
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
62
|
+
shared_examples 'a column setter' do
|
63
|
+
context 'with a scalar' do
|
64
|
+
let(:value){ 10 }
|
65
|
+
it 'should fill the column with that value' do
|
66
|
+
subject
|
67
|
+
expect(view.columns[column].to_a).to eql ([value] * view.nrows)
|
68
|
+
end
|
68
69
|
end
|
69
70
|
|
70
|
-
|
71
|
-
|
72
|
-
|
71
|
+
context 'with the wrong length' do
|
72
|
+
let(:value) { [1, 2] }
|
73
|
+
it 'should fail' do
|
74
|
+
expect{subject}.to raise_error
|
75
|
+
end
|
73
76
|
end
|
74
77
|
|
75
|
-
|
78
|
+
context 'with an empty view' do
|
79
|
+
let(:block) { Proc.new{col1 < -1000} }
|
80
|
+
let(:value) { 3 }
|
76
81
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
end
|
82
|
+
context 'adding an empty column' do
|
83
|
+
it 'should add the column' do
|
84
|
+
subject
|
85
|
+
expect(view.columns[column]).to eq NArray[]
|
86
|
+
expect(table).to have_column column
|
87
|
+
end
|
84
88
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
+
context 'and setting an empty array to the column' do
|
90
|
+
it 'should work' do
|
91
|
+
subject
|
92
|
+
expect{view[column] = []}.to_not raise_error
|
93
|
+
expect(view[column]).to be_empty
|
94
|
+
expect(table).to have_column column
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
89
99
|
end
|
90
100
|
end
|
91
101
|
|
92
102
|
context 'for a new column' do
|
93
|
-
let(:column){ :col3 }
|
103
|
+
let(:column) { :col3 }
|
104
|
+
it_behaves_like 'a column setter'
|
94
105
|
|
95
106
|
it 'should create a new column' do
|
96
107
|
subject
|
@@ -119,14 +130,14 @@ RSpec.shared_examples 'a table view' do |cls|
|
|
119
130
|
end
|
120
131
|
|
121
132
|
context 'when failed to add column' do
|
122
|
-
let(:value){
|
133
|
+
let(:value) { 'a' }
|
134
|
+
let(:args) { ['int'] }
|
123
135
|
|
124
|
-
it 'should
|
125
|
-
expect
|
126
|
-
|
127
|
-
view.columns[column] = ObjectTable::Column.make([0] * 10)
|
128
|
-
end
|
136
|
+
it 'should fail' do
|
137
|
+
expect{subject}.to raise_error
|
138
|
+
end
|
129
139
|
|
140
|
+
it 'should not have that column' do
|
130
141
|
# the assignment is going to chuck an error
|
131
142
|
subject rescue nil
|
132
143
|
expect(view.columns).to_not include column
|
@@ -135,14 +146,40 @@ RSpec.shared_examples 'a table view' do |cls|
|
|
135
146
|
end
|
136
147
|
end
|
137
148
|
|
138
|
-
context '
|
139
|
-
let(:
|
149
|
+
context 'on an existing column' do
|
150
|
+
let(:column) { table.colnames[0] }
|
151
|
+
it_behaves_like 'a column setter'
|
140
152
|
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
153
|
+
it 'should assign values to the column' do
|
154
|
+
subject
|
155
|
+
expect(view.columns[column].to_a).to eql value
|
156
|
+
end
|
157
|
+
|
158
|
+
it 'should not modify anything outside the view' do
|
159
|
+
subject
|
160
|
+
expect(table.columns[column].to_a).to eql [0] + value
|
161
|
+
end
|
162
|
+
|
163
|
+
context 'when failed to set column' do
|
164
|
+
let(:value) { 'a' }
|
165
|
+
|
166
|
+
it 'should fail' do
|
167
|
+
expect{subject}.to raise_error
|
168
|
+
end
|
169
|
+
|
170
|
+
it 'should still have the column' do
|
171
|
+
# the assignment is going to chuck an error
|
172
|
+
subject rescue nil
|
173
|
+
expect(view.columns).to include column
|
174
|
+
expect(table.columns).to include column
|
175
|
+
end
|
176
|
+
|
177
|
+
it 'should make no changes' do
|
178
|
+
original = table.clone
|
179
|
+
# the assignment is going to chuck an error
|
180
|
+
subject rescue nil
|
181
|
+
expect(view).to eql table.where(&block)
|
182
|
+
expect(table).to eql original
|
146
183
|
end
|
147
184
|
end
|
148
185
|
end
|
@@ -194,4 +231,17 @@ RSpec.shared_examples 'a table view' do |cls|
|
|
194
231
|
end
|
195
232
|
end
|
196
233
|
|
234
|
+
describe '#clone' do
|
235
|
+
let(:table) { ObjectTable.new(col1: [1, 2, 3], col2: 5) }
|
236
|
+
let(:block) { Proc.new{col1 > 2} }
|
237
|
+
let(:clone) { subject.clone }
|
238
|
+
|
239
|
+
it 'should no longer have masked columns' do
|
240
|
+
clone.columns.each do |k, v|
|
241
|
+
expect(v).to be_a NArray
|
242
|
+
expect(v).to_not be_a ObjectTable::MaskedColumn
|
243
|
+
end
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
197
247
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: object_table
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cheney Lin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: narray
|
@@ -42,14 +42,14 @@ dependencies:
|
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: coveralls
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.7'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.7'
|
69
83
|
description: Simple data table table implementation in ruby
|
70
84
|
email:
|
71
85
|
- lincheney@gmail.com
|
@@ -74,6 +88,7 @@ extensions: []
|
|
74
88
|
extra_rdoc_files: []
|
75
89
|
files:
|
76
90
|
- .gitignore
|
91
|
+
- .rspec
|
77
92
|
- .travis.yml
|
78
93
|
- Gemfile
|
79
94
|
- LICENSE
|
@@ -86,6 +101,7 @@ files:
|
|
86
101
|
- lib/object_table/grouped.rb
|
87
102
|
- lib/object_table/masked_column.rb
|
88
103
|
- lib/object_table/printable.rb
|
104
|
+
- lib/object_table/stacker.rb
|
89
105
|
- lib/object_table/static_view.rb
|
90
106
|
- lib/object_table/table_child.rb
|
91
107
|
- lib/object_table/table_methods.rb
|
@@ -100,8 +116,10 @@ files:
|
|
100
116
|
- spec/object_table/static_view_spec.rb
|
101
117
|
- spec/object_table/view_spec.rb
|
102
118
|
- spec/object_table_spec.rb
|
119
|
+
- spec/spec_helper.rb
|
103
120
|
- spec/subclassing_spec.rb
|
104
121
|
- spec/support/object_table_example.rb
|
122
|
+
- spec/support/stacker_example.rb
|
105
123
|
- spec/support/view_example.rb
|
106
124
|
homepage: https://github.com/lincheney/ruby-object-table
|
107
125
|
licenses:
|
@@ -113,12 +131,12 @@ require_paths:
|
|
113
131
|
- lib
|
114
132
|
required_ruby_version: !ruby/object:Gem::Requirement
|
115
133
|
requirements:
|
116
|
-
- -
|
134
|
+
- - '>='
|
117
135
|
- !ruby/object:Gem::Version
|
118
136
|
version: '0'
|
119
137
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
138
|
requirements:
|
121
|
-
- -
|
139
|
+
- - '>='
|
122
140
|
- !ruby/object:Gem::Version
|
123
141
|
version: '0'
|
124
142
|
requirements: []
|
@@ -135,6 +153,8 @@ test_files:
|
|
135
153
|
- spec/object_table/static_view_spec.rb
|
136
154
|
- spec/object_table/view_spec.rb
|
137
155
|
- spec/object_table_spec.rb
|
156
|
+
- spec/spec_helper.rb
|
138
157
|
- spec/subclassing_spec.rb
|
139
158
|
- spec/support/object_table_example.rb
|
159
|
+
- spec/support/stacker_example.rb
|
140
160
|
- spec/support/view_example.rb
|