liner 0.0.1
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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +9 -0
- data/lib/liner.rb +88 -0
- data/liner.gemspec +24 -0
- data/test/liner_test.rb +85 -0
- metadata +104 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Josh Lewis
|
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,29 @@
|
|
1
|
+
# Liner
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'liner'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install liner
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/liner.rb
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
class Liner
|
2
|
+
|
3
|
+
VERSION = '0.0.1'
|
4
|
+
|
5
|
+
class << self
|
6
|
+
def new(*args)
|
7
|
+
self < Liner ? super(*args) : new_subclass(*args)
|
8
|
+
end
|
9
|
+
|
10
|
+
def new_subclass(*keys)
|
11
|
+
Class.new(self) do |klass|
|
12
|
+
self.table_keys = (table_keys + keys.map(&:to_sym)).uniq
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def inherited(child)
|
17
|
+
child.table_keys = (child.table_keys + self.table_keys).uniq
|
18
|
+
end
|
19
|
+
|
20
|
+
def table_keys
|
21
|
+
@table_keys ||= []
|
22
|
+
end
|
23
|
+
protected :table_keys
|
24
|
+
|
25
|
+
def table_keys=(keys)
|
26
|
+
keys = keys.map(&:to_sym)
|
27
|
+
keys.each do |key|
|
28
|
+
define_method(key) do
|
29
|
+
self[key]
|
30
|
+
end
|
31
|
+
define_method("#{key}=") do |value|
|
32
|
+
self[key] = value
|
33
|
+
end
|
34
|
+
end
|
35
|
+
@table_keys = keys
|
36
|
+
end
|
37
|
+
protected :table_keys=
|
38
|
+
end
|
39
|
+
|
40
|
+
def initialize(hash=nil)
|
41
|
+
@table = table_keys.inject({}){ |h,k| h[k]=nil; h }
|
42
|
+
if hash
|
43
|
+
hash.each do |k,v|
|
44
|
+
self[k] = hash[k]
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def table_keys
|
50
|
+
self.class.send(:table_keys)
|
51
|
+
end
|
52
|
+
private :table_keys
|
53
|
+
|
54
|
+
def [](key)
|
55
|
+
@table[key.to_sym]
|
56
|
+
end
|
57
|
+
|
58
|
+
def []=(key,value)
|
59
|
+
key = key.to_sym
|
60
|
+
if table_keys.include?(key)
|
61
|
+
@table[key] = value
|
62
|
+
else
|
63
|
+
raise ArgumentError, "Invalid liner attribute: '#{key}'."
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def to_h
|
68
|
+
@table.dup
|
69
|
+
end
|
70
|
+
|
71
|
+
attr_reader :table
|
72
|
+
protected :table
|
73
|
+
|
74
|
+
def ==(other)
|
75
|
+
return false unless other.class == self.class
|
76
|
+
@table == other.table
|
77
|
+
end
|
78
|
+
|
79
|
+
def eql?(other)
|
80
|
+
return false unless other.class == self.class
|
81
|
+
@table.eql?(other.table)
|
82
|
+
end
|
83
|
+
|
84
|
+
def inspect
|
85
|
+
attribute_string = @table.map{|k,v| "#{k}=#{v.inspect}"}.join(', ')
|
86
|
+
"#<#{self.class} #{attribute_string}>"
|
87
|
+
end
|
88
|
+
end
|
data/liner.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'liner'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "liner"
|
8
|
+
spec.version = Liner::VERSION
|
9
|
+
spec.authors = ["Josh Lewis"]
|
10
|
+
spec.email = ["josh.w.lewis@gmail.com"]
|
11
|
+
spec.description = %q{A liner for Ruby objects. Add attribute, inspection, and equality methods.}
|
12
|
+
spec.summary = %q{A liner for Ruby objects. Add attribute, inspection, and equality methods.}
|
13
|
+
spec.homepage = "https://github.com/joshwlewis/liner"
|
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 "minitest"
|
24
|
+
end
|
data/test/liner_test.rb
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
require 'minitest/autorun'
|
2
|
+
|
3
|
+
describe Liner do
|
4
|
+
it "::new_subclass must create a new class" do
|
5
|
+
Liner.new_subclass(:a).must_be :<, Liner
|
6
|
+
end
|
7
|
+
|
8
|
+
it "::new must create a new class" do
|
9
|
+
Liner.new(:a).must_be :<, Liner
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
class Beer < Liner.new(:name)
|
14
|
+
end
|
15
|
+
|
16
|
+
describe Beer do
|
17
|
+
subject { Beer.new(name: "Pabst") }
|
18
|
+
it "::new must create a new instance" do
|
19
|
+
subject.must_be_instance_of Beer
|
20
|
+
subject.must_be_kind_of Liner
|
21
|
+
end
|
22
|
+
|
23
|
+
it "#[] should read attributes" do
|
24
|
+
subject[:name].must_equal "Pabst"
|
25
|
+
end
|
26
|
+
|
27
|
+
it "#[]= should set attributes" do
|
28
|
+
subject[:name]= "High Life"
|
29
|
+
subject.name.must_equal "High Life"
|
30
|
+
end
|
31
|
+
|
32
|
+
it "#[]= should not set invalid attributes" do
|
33
|
+
->{ subject[:foo] = 'bar' }.must_raise ArgumentError
|
34
|
+
end
|
35
|
+
|
36
|
+
it "#inspect must include all attributes" do
|
37
|
+
subject.inspect.must_equal '#<Beer name="Pabst">'
|
38
|
+
end
|
39
|
+
|
40
|
+
describe "#==" do
|
41
|
+
it "should return true when hashes are equal" do
|
42
|
+
subject.must_be :==, Beer.new(name: 'Pabst')
|
43
|
+
end
|
44
|
+
it "should return false when hashes are not equal" do
|
45
|
+
subject.wont_be :==, Beer.new(name: 'Natural Light')
|
46
|
+
end
|
47
|
+
end
|
48
|
+
describe "#eql?" do
|
49
|
+
it "should return true when hashes are equal" do
|
50
|
+
subject.must_be :eql?, Beer.new(name: 'Pabst')
|
51
|
+
end
|
52
|
+
it "should return false when hashes are not equal" do
|
53
|
+
subject.wont_be :eql?, Beer.new(name: 'Natural Light')
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
it "#to_h should return the table" do
|
58
|
+
subject.to_h.must_equal name: 'Pabst'
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
PaleAle = Beer.new_subclass(:hops)
|
63
|
+
describe PaleAle do
|
64
|
+
subject { PaleAle.new(name: "Sierra Nevada", hops: "Cascade") }
|
65
|
+
|
66
|
+
it "::new must create a new instance" do
|
67
|
+
subject.must_be_instance_of PaleAle
|
68
|
+
subject.must_be_kind_of Beer
|
69
|
+
subject.must_be_kind_of Liner
|
70
|
+
end
|
71
|
+
|
72
|
+
it "#name must get the name" do
|
73
|
+
subject.name.must_equal "Sierra Nevada"
|
74
|
+
end
|
75
|
+
|
76
|
+
it "#hops must get the hops" do
|
77
|
+
subject.hops.must_equal "Cascade"
|
78
|
+
end
|
79
|
+
|
80
|
+
it "#hops= must set the hops" do
|
81
|
+
subject.hops = nil
|
82
|
+
subject.hops.must_equal nil
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: liner
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Josh Lewis
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-12-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: minitest
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: A liner for Ruby objects. Add attribute, inspection, and equality methods.
|
63
|
+
email:
|
64
|
+
- josh.w.lewis@gmail.com
|
65
|
+
executables: []
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- .gitignore
|
70
|
+
- Gemfile
|
71
|
+
- LICENSE.txt
|
72
|
+
- README.md
|
73
|
+
- Rakefile
|
74
|
+
- lib/liner.rb
|
75
|
+
- liner.gemspec
|
76
|
+
- test/liner_test.rb
|
77
|
+
homepage: https://github.com/joshwlewis/liner
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ! '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ! '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 1.8.23
|
99
|
+
signing_key:
|
100
|
+
specification_version: 3
|
101
|
+
summary: A liner for Ruby objects. Add attribute, inspection, and equality methods.
|
102
|
+
test_files:
|
103
|
+
- test/liner_test.rb
|
104
|
+
has_rdoc:
|