qenumerable 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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/.travis.yml +1 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +64 -0
- data/Rakefile +6 -0
- data/lib/qenumerable.rb +18 -0
- data/lib/qenumerable/version.rb +3 -0
- data/qenumerable.gemspec +24 -0
- data/spec/qenumerable_spec.rb +60 -0
- data/spec/spec_helper.rb +11 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5c7d75851fa0d5535d153ed324135c554b89055e
|
4
|
+
data.tar.gz: 1c8eb2d99358241d75631e3d2f2de8bb2bcbae73
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 426b0d87e00dd521dec9e575c2553896264f29c6e2c30b60ca8d0884d33c7d92ddd1c77eb3fc682c4d8a3b59ab0e5069bebfe3628e8f97636fedc3357054a1a5
|
7
|
+
data.tar.gz: 056462377afd3591abdab8b64877063ca032fe45d7844704292cf20d22f551be78d660c39e2c1d3f7d01f2a64f17084199b766f6f6e72f10772e5f6c0ad78a15
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
language: ruby
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Brandon Weaver
|
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,64 @@
|
|
1
|
+
# Qenumerable
|
2
|
+
|
3
|
+
Allows you to query against collections.
|
4
|
+
|
5
|
+
## Usage
|
6
|
+
|
7
|
+
Let's get ourselves a collection to use:
|
8
|
+
```ruby
|
9
|
+
class Object; include QEnumerable end
|
10
|
+
|
11
|
+
brandon = Person.new('brandon', 23, 'm')
|
12
|
+
john = Person.new('john', 42, 'm')
|
13
|
+
jill = Person.new('jill', 31, 'f')
|
14
|
+
alice = Person.new('alice', 50, 'f')
|
15
|
+
zeke = Person.new('zeke', 18, 'm')
|
16
|
+
|
17
|
+
people = [brandon, john, jill, alice, zeke]
|
18
|
+
```
|
19
|
+
|
20
|
+
### Select Where
|
21
|
+
|
22
|
+
Select all objects where params match:
|
23
|
+
```ruby
|
24
|
+
people.select_where name: /^j/
|
25
|
+
# => [john, jill]
|
26
|
+
```
|
27
|
+
|
28
|
+
### Reject Where
|
29
|
+
|
30
|
+
Reject all objects where params match:
|
31
|
+
```ruby
|
32
|
+
people.reject_where name: /^j/
|
33
|
+
# => [brandon, alice, zeke]
|
34
|
+
```
|
35
|
+
|
36
|
+
### Find Where
|
37
|
+
|
38
|
+
Finds the first object where params match:
|
39
|
+
```ruby
|
40
|
+
people.find_where name: /^j/
|
41
|
+
# => john
|
42
|
+
```
|
43
|
+
|
44
|
+
## Installation
|
45
|
+
|
46
|
+
Add this line to your application's Gemfile:
|
47
|
+
|
48
|
+
gem 'qenumerable'
|
49
|
+
|
50
|
+
And then execute:
|
51
|
+
|
52
|
+
$ bundle
|
53
|
+
|
54
|
+
Or install it yourself as:
|
55
|
+
|
56
|
+
$ gem install qenumerable
|
57
|
+
|
58
|
+
## Contributing
|
59
|
+
|
60
|
+
1. Fork it ( http://github.com/baweaver/qenumerable/fork )
|
61
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
62
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
63
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
64
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/qenumerable.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
require "qenumerable/version"
|
2
|
+
require 'izzy'
|
3
|
+
|
4
|
+
module QEnumerable
|
5
|
+
include Izzy
|
6
|
+
|
7
|
+
def select_where(matchers = {})
|
8
|
+
self.select { |s| s.matches_all? matchers }
|
9
|
+
end
|
10
|
+
|
11
|
+
def reject_where(matchers = {})
|
12
|
+
self.reject { |s| s.matches_all? matchers }
|
13
|
+
end
|
14
|
+
|
15
|
+
def find_where(matchers = {})
|
16
|
+
self.find { |s| s.matches_all? matchers }
|
17
|
+
end
|
18
|
+
end
|
data/qenumerable.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 'qenumerable/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "qenumerable"
|
8
|
+
spec.version = QEnumerable::VERSION
|
9
|
+
spec.authors = ["Brandon Weaver"]
|
10
|
+
spec.email = ["keystonelemur@gmail.com"]
|
11
|
+
spec.summary = %q{Query against collections}
|
12
|
+
spec.homepage = "https://www.github.com/baweaver/qenumerable"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.5"
|
21
|
+
spec.add_development_dependency "rake"
|
22
|
+
spec.add_development_dependency "rspec"
|
23
|
+
spec.add_runtime_dependency "izzy"
|
24
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
class Object; include QEnumerable end
|
4
|
+
|
5
|
+
# As we're only querying against things, there's absolutely no sense in making
|
6
|
+
# objects in a let as they'll never mutate.
|
7
|
+
|
8
|
+
Person = Struct.new(:name, :age, :gender)
|
9
|
+
|
10
|
+
brandon = Person.new('brandon', 23, 'm')
|
11
|
+
john = Person.new('john', 42, 'm')
|
12
|
+
jill = Person.new('jill', 31, 'f')
|
13
|
+
alice = Person.new('alice', 50, 'f')
|
14
|
+
zeke = Person.new('zeke', 18, 'm')
|
15
|
+
|
16
|
+
people = [brandon, john, jill, alice, zeke]
|
17
|
+
|
18
|
+
describe 'QEnumerable' do
|
19
|
+
describe '#select_where' do
|
20
|
+
it 'returns people whose names start with j' do
|
21
|
+
expect(people.select_where(name: /^j/)).to eq([john, jill])
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'returns people whose ages are above 30' do
|
25
|
+
expect(people.select_where(age: -> a { a > 30 })).to eq([john, jill, alice])
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'returns people who are male' do
|
29
|
+
expect(people.select_where(gender: 'm')).to eq([brandon, john, zeke])
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe '#reject_where' do
|
34
|
+
it 'returns people whose names do not start with j' do
|
35
|
+
expect(people.reject_where(name: /^j/)).not_to eq([john, jill])
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'returns people whose ages are not above 30' do
|
39
|
+
expect(people.reject_where(age: -> a { a > 30 })).not_to eq([john, jill, alice])
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'returns people who are not male' do
|
43
|
+
expect(people.reject_where(gender: 'm')).not_to eq([brandon, john, zeke])
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe '#find_where' do
|
48
|
+
it 'returns the first person whose name starts with j' do
|
49
|
+
expect(people.find_where(name: /^j/)).to eq(john)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'returns the first person whose age is above 30' do
|
53
|
+
expect(people.find_where(age: -> a { a > 30 })).to eq(john)
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'returns the first person who is male' do
|
57
|
+
expect(people.find_where(gender: 'm')).to eq(brandon)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: qenumerable
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brandon Weaver
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-20 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.5'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
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: izzy
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- keystonelemur@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- ".travis.yml"
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- lib/qenumerable.rb
|
84
|
+
- lib/qenumerable/version.rb
|
85
|
+
- qenumerable.gemspec
|
86
|
+
- spec/qenumerable_spec.rb
|
87
|
+
- spec/spec_helper.rb
|
88
|
+
homepage: https://www.github.com/baweaver/qenumerable
|
89
|
+
licenses:
|
90
|
+
- MIT
|
91
|
+
metadata: {}
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubyforge_project:
|
108
|
+
rubygems_version: 2.2.1
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
111
|
+
summary: Query against collections
|
112
|
+
test_files:
|
113
|
+
- spec/qenumerable_spec.rb
|
114
|
+
- spec/spec_helper.rb
|