easy_search_form 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +67 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/easy_search.gemspec +25 -0
- data/lib/easy_search/acts_as_searchable.rb +53 -0
- data/lib/easy_search/easysearch_helper.rb +5 -0
- data/lib/easy_search/version.rb +3 -0
- data/lib/easy_search/views/_search_form.html.erb +4 -0
- data/lib/easy_search.rb +9 -0
- metadata +100 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 457b6c7008b5d614c5d7cea255d8cef57afe8111
|
4
|
+
data.tar.gz: d07504bd835c7aa621ac7b7988cade16fea46ef7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 136282ba9ce5f434ff95340167c3d5290077d369a9c4adad7e2c2a6064988957d242943dda70c1c72a4394eee571fa10f24672c56ff6f9c12c10b7144a6c932a
|
7
|
+
data.tar.gz: e8e02dccbd009e69bece9c0040bae8e800d6766fb45c5144adfef6b2ef368d2bd3f994f4b6e34731bd45c8bd5bb8a4d57a944d56b7c8210db090d3d0cb17cd5d
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Bruno Cordeiro
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# EasySearch
|
2
|
+
|
3
|
+
## Introduction
|
4
|
+
|
5
|
+
When i was creating search form i get bored because this is a very repetitive task, and because that i start to create this gem, this first version is the very basic but by now this is enough, and i will improve this, and if you have some suggestion please let me know this.
|
6
|
+
|
7
|
+
## How to install
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'easy_search'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install easy_search
|
22
|
+
|
23
|
+
## Example
|
24
|
+
|
25
|
+
Migrations
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
create_table :products do |t|
|
29
|
+
t.string :description, :null => false
|
30
|
+
t.integer :size, :null => false
|
31
|
+
end
|
32
|
+
```
|
33
|
+
|
34
|
+
Models
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
class Product < ActiveRecord::Base
|
38
|
+
# :equals tell the plugin to use "=" in SQL instead LIKE that is the default.
|
39
|
+
acts_as_searchable :description, :size => :equals
|
40
|
+
end
|
41
|
+
```
|
42
|
+
|
43
|
+
Controller
|
44
|
+
|
45
|
+
```ruby
|
46
|
+
def index
|
47
|
+
# Replace the all for search and pass the param if the param is null it will return all.
|
48
|
+
@users = User.search params[:query]
|
49
|
+
end
|
50
|
+
```
|
51
|
+
|
52
|
+
View
|
53
|
+
```ruby
|
54
|
+
# Put the search_form when you want to print the search form.
|
55
|
+
<%= search_form %>
|
56
|
+
```
|
57
|
+
|
58
|
+
## Contact
|
59
|
+
|
60
|
+
if you need help contanct me: bfscordeiro (at) gmail.com
|
61
|
+
|
62
|
+
|
63
|
+
Copyright (c) 2010 Bruno Cordeiro, released under the MIT license
|
64
|
+
|
65
|
+
## License
|
66
|
+
|
67
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "easy_search"
|
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
|
data/bin/setup
ADDED
data/easy_search.gemspec
ADDED
@@ -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 'easy_search/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "easy_search_form"
|
8
|
+
spec.version = EasySearch::VERSION
|
9
|
+
spec.authors = ["Bruno Cordeiro"]
|
10
|
+
spec.email = ["bfscordeiro@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Make easy create simple search formss.}
|
13
|
+
spec.description = %q{Make easy create simple search formss.}
|
14
|
+
spec.homepage = "https://github.com/brunofrank/easy_search"
|
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_development_dependency "bundler", "~> 1.10"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "minitest"
|
25
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module EasySearch
|
2
|
+
def self.included(base)
|
3
|
+
base.send :extend, ClassMethods
|
4
|
+
end
|
5
|
+
|
6
|
+
module ClassMethods
|
7
|
+
def acts_as_searchable(*args)
|
8
|
+
@search_options = args
|
9
|
+
self.send :extend, SearchClassMethods
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
module SearchClassMethods
|
14
|
+
def search(search)
|
15
|
+
if search
|
16
|
+
query = []
|
17
|
+
values = []
|
18
|
+
@search_options.each do |opt|
|
19
|
+
condition_type = nil
|
20
|
+
|
21
|
+
if opt.instance_of?(Hash)
|
22
|
+
debugger
|
23
|
+
case opt[opt.keys.first]
|
24
|
+
when :equals
|
25
|
+
condition_type = "="
|
26
|
+
else
|
27
|
+
condition_type = "LIKE"
|
28
|
+
end
|
29
|
+
|
30
|
+
query << "#{opt.keys.first} #{condition_type} ?"
|
31
|
+
else
|
32
|
+
query << "#{opt} LIKE ?"
|
33
|
+
end
|
34
|
+
|
35
|
+
if condition_type.nil? or condition_type == "LIKE"
|
36
|
+
values << "%#{search}%"
|
37
|
+
else
|
38
|
+
values << search
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
conditions = [query.join(" OR ")]
|
43
|
+
conditions += values
|
44
|
+
|
45
|
+
find(:all, :conditions => conditions)
|
46
|
+
else
|
47
|
+
all
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
ActiveRecord::Base.send :include, EasySearch
|
data/lib/easy_search.rb
ADDED
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: easy_search_form
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bruno Cordeiro
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-09-24 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.10'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.10'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
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
|
+
description: Make easy create simple search formss.
|
56
|
+
email:
|
57
|
+
- bfscordeiro@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- .travis.yml
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- bin/console
|
69
|
+
- bin/setup
|
70
|
+
- easy_search.gemspec
|
71
|
+
- lib/easy_search.rb
|
72
|
+
- lib/easy_search/acts_as_searchable.rb
|
73
|
+
- lib/easy_search/easysearch_helper.rb
|
74
|
+
- lib/easy_search/version.rb
|
75
|
+
- lib/easy_search/views/_search_form.html.erb
|
76
|
+
homepage: https://github.com/brunofrank/easy_search
|
77
|
+
licenses:
|
78
|
+
- MIT
|
79
|
+
metadata: {}
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubyforge_project:
|
96
|
+
rubygems_version: 2.4.6
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: Make easy create simple search formss.
|
100
|
+
test_files: []
|