active_hash-like 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 46efe239147b9aa378998f9086e13d8c2a979907
4
+ data.tar.gz: 6005f1dc41be14a1307317ac9c7ca366c13ff063
5
+ SHA512:
6
+ metadata.gz: f938bfa56ff97b36b5bcbd15e397f296aece37dad6b332457a8bce4225c4a49fca8dc60038bb7929de1a16c3a4979845f5be02489a3da61be69258640f4bbcc1
7
+ data.tar.gz: e5fd7141d475710a93184add84e5e4f4daebd7c69c8efe28dc9c6a900afb47b8ff145ea37c878690a647d0427df0a888ca77c8a432421d4830cfa5bd23c85759
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /vendor/
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.11.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in active_hash-like.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 monochromegane
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,98 @@
1
+ # ActiveHash::Like [![Build Status](https://travis-ci.org/monochromegane/active_hash-like.svg?branch=master)](https://travis-ci.org/monochromegane/active_hash-like)
2
+
3
+ Custom matcher for ActiveHash. It provides `like` operator.
4
+
5
+ ## Usage
6
+
7
+ After install ActiveHash::Like, you can use `like` method.
8
+
9
+ ```rb
10
+ class Country < ActiveHash::Base; end
11
+
12
+ Country.like(name: 'Cana%')
13
+ ```
14
+
15
+ If you want to use `like` in the where method parameter, you can use `ActiveHash::Match::Like` matcher.
16
+
17
+ ```rb
18
+ # Specify match type.
19
+ Country.where(name: ActiveHash::Match::Like.new('Cana%'))
20
+
21
+ # Or use forward, backward, partial method.
22
+ Country.where(name: ActiveHash::Match::Like.forward('Cana'))
23
+ ```
24
+
25
+ ## Custom matcher
26
+
27
+ `ActiveHash::Match::Like` is one of custom matcher. You can create your custom matcher.
28
+ It should have `call` method like the following:
29
+
30
+ ```rb
31
+ class MyCustomMatcher
32
+ attr_accessor :pattern
33
+
34
+ def initialize(pattern)
35
+ self.pattern = pattern
36
+ end
37
+
38
+ def call(value)
39
+ # Case ignore matcher
40
+ value.upcase == pattern.upcase
41
+ end
42
+ end
43
+
44
+ Country.where(name: MyCustomMatcher.new('pattern'))
45
+ ```
46
+
47
+ So, you can use `Proc` object as simple custom matcher.
48
+
49
+ ```rb
50
+ Country.where(name: ->(value){ value == 'some value'})
51
+ ```
52
+
53
+ ## OR condition
54
+
55
+ you can use key: `or` like the following:
56
+
57
+ ```rb
58
+ Country.where(name: 'Canada', or: {field1: 'foo', field2: 'bar'})
59
+ #=> name = 'Canada' and (field1 = 'foo' or field2 = 'bar')
60
+ ```
61
+
62
+ If you want to use `or` to one column, you must use custom matcher.
63
+
64
+ ```rb
65
+ Country.where(name: ->(val){val == 'Canada' || val == 'US'})
66
+ ```
67
+
68
+ ## Installation
69
+
70
+ Add this line to your application's Gemfile:
71
+
72
+ ```ruby
73
+ gem 'active_hash-like'
74
+ ```
75
+
76
+ And then execute:
77
+
78
+ $ bundle
79
+
80
+ Or install it yourself as:
81
+
82
+ $ gem install active_hash-like
83
+
84
+ ## Development
85
+
86
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
87
+
88
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
89
+
90
+ ## Contributing
91
+
92
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/active_hash-like.
93
+
94
+
95
+ ## License
96
+
97
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
98
+
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'active_hash/like/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "active_hash-like"
8
+ spec.version = ActiveHash::Like::VERSION
9
+ spec.authors = ["monochromegane"]
10
+ spec.email = ["dev.kuro.obi@gmail.com"]
11
+
12
+ spec.summary = %q{Custom matcher for ActiveHash. It provides `like` operator.}
13
+ spec.description = %q{Custom matcher for ActiveHash. It provides `like` operator.}
14
+ spec.homepage = "https://github.com/monochromegane/active_hash-like"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency "active_hash"
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.11"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "minitest", "~> 5.0"
27
+ spec.add_development_dependency "pry"
28
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "active_hash/like"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,34 @@
1
+ module ActiveHash
2
+ module CustomMatchable
3
+ def self.prepended(base)
4
+ class << base
5
+ self.prepend(ClassMethods)
6
+ end
7
+ end
8
+
9
+ module ClassMethods
10
+
11
+ def like(options)
12
+ where(options.inject({}) do |likes, (column, pattern)|
13
+ likes[column] = ActiveHash::Matcher::Like.new(pattern)
14
+ likes
15
+ end)
16
+ end
17
+
18
+ def where(options)
19
+ return @records if options.nil?
20
+ (@records || []).select do |record|
21
+ options.all? do |col, matcher|
22
+ if matcher.respond_to?(:call)
23
+ matcher.call(record[col])
24
+ elsif col.to_sym == :or
25
+ ActiveHash::Matcher::Or.new(matcher).call(record)
26
+ else
27
+ record[col] == matcher
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,11 @@
1
+ require "active_hash/like/version"
2
+ require "active_hash/custom_matchable"
3
+ require "active_hash/matcher/like"
4
+ require "active_hash/matcher/or"
5
+
6
+ require "active_hash/like/railtie" if defined?(Rails::Railtie)
7
+
8
+ module ActiveHash
9
+ module Like
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ module ActiveHash
2
+ module Like
3
+ class Railtie < Rails::Railtie
4
+ initializer 'prepend_active_hash-custom_matchable-module' do
5
+ ActiveHash::Base.prepend(ActiveHash::CustomMatchable)
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ module ActiveHash
2
+ module Like
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,46 @@
1
+ module ActiveHash::Matcher
2
+ class Like
3
+ class << self
4
+ def forward(pattern)
5
+ new("#{pattern}%")
6
+ end
7
+
8
+ def backward(pattern)
9
+ new("%#{pattern}")
10
+ end
11
+
12
+ def partial(pattern)
13
+ new("%#{pattern}%")
14
+ end
15
+ end
16
+
17
+ attr_accessor :pattern, :match_type
18
+
19
+ def initialize(pattern)
20
+ pattern = pattern.to_s
21
+ self.pattern = pattern.gsub(/\A%|%\Z/, '')
22
+
23
+ self.match_type = case pattern
24
+ when /\A%.*%\Z/ then :partial
25
+ when /\A%/ then :backward
26
+ when /%\Z/ then :forward
27
+ else :none
28
+ end
29
+ end
30
+
31
+ def call(value)
32
+ match(value.to_s.upcase, pattern.upcase)
33
+ end
34
+
35
+ private
36
+
37
+ def match(value, pattern)
38
+ case match_type
39
+ when :forward then value.start_with?(pattern)
40
+ when :backward then value.end_with?(pattern)
41
+ when :partial then value.include?(pattern)
42
+ else value == pattern
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,22 @@
1
+ module ActiveHash::Matcher
2
+ class Or
3
+ attr_accessor :patterns
4
+
5
+ def initialize(patterns)
6
+ self.patterns = patterns
7
+ end
8
+
9
+ def call(record)
10
+ patterns.any? do |col, matcher|
11
+ if matcher.respond_to?(:call)
12
+ matcher.call(record[col])
13
+ elsif col.to_sym == :or
14
+ ActiveHash::Matcher::Or.new(matcher).call(record)
15
+ else
16
+ record[col] == matcher
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: active_hash-like
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - monochromegane
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: active_hash
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.11'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Custom matcher for ActiveHash. It provides `like` operator.
84
+ email:
85
+ - dev.kuro.obi@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".travis.yml"
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - active_hash-like.gemspec
97
+ - bin/console
98
+ - bin/setup
99
+ - lib/active_hash/custom_matchable.rb
100
+ - lib/active_hash/like.rb
101
+ - lib/active_hash/like/railtie.rb
102
+ - lib/active_hash/like/version.rb
103
+ - lib/active_hash/matcher/like.rb
104
+ - lib/active_hash/matcher/or.rb
105
+ homepage: https://github.com/monochromegane/active_hash-like
106
+ licenses:
107
+ - MIT
108
+ metadata: {}
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ required_rubygems_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ requirements: []
124
+ rubyforge_project:
125
+ rubygems_version: 2.4.5.1
126
+ signing_key:
127
+ specification_version: 4
128
+ summary: Custom matcher for ActiveHash. It provides `like` operator.
129
+ test_files: []