easy_search_form 0.2.0 → 0.3.0
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 +4 -4
- data/{easy_search.gemspec → easy_search_form.gemspec} +2 -2
- data/lib/{easy_search → easy_search_form}/easysearch_helper.rb +0 -0
- data/lib/easy_search_form/version.rb +3 -0
- data/lib/{easy_search → easy_search_form}/views/_search_form.html.erb +0 -0
- data/lib/{easy_search.rb → easy_search_form.rb} +4 -4
- metadata +6 -6
- data/lib/easy_search/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 379f53407b4c1f01a02dd8e8851e67b7f051d010
|
4
|
+
data.tar.gz: a373cc04571579a52786f5d248173ed1a60ebbf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd82b909f155707bcbdd8a49fae96d549cdd06bdfb31e5dd09ee188d5c0673a04be7a280c218a0fd941aee32377585365e3a4cadc8d934ad84164e08dbd41c3b
|
7
|
+
data.tar.gz: 983edabb501b515333001c9b369430f63cd3ce8cfa1245736d5a8a26eaaf00187847c59d8eee7114dfaf7c8f23cfc0e6bb43a5c2115852b6fcde6a71d7b8165f
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require '
|
4
|
+
require 'easy_search_form/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "easy_search_form"
|
8
|
-
spec.version =
|
8
|
+
spec.version = EasySearchForm::VERSION
|
9
9
|
spec.authors = ["Bruno Cordeiro"]
|
10
10
|
spec.email = ["bfscordeiro@gmail.com"]
|
11
11
|
|
File without changes
|
File without changes
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require "
|
2
|
-
require '
|
1
|
+
require "easy_search_form/version"
|
2
|
+
require 'easy_search_form/easysearch_helper'
|
3
3
|
|
4
|
-
module
|
4
|
+
module EasySearchForm
|
5
5
|
def self.included(base)
|
6
6
|
base.send :extend, ClassMethods
|
7
7
|
end
|
@@ -54,4 +54,4 @@ module EasySearch
|
|
54
54
|
end
|
55
55
|
|
56
56
|
ActionView::Base.send :include, EasySearchHelper
|
57
|
-
ActiveRecord::Base.send :include,
|
57
|
+
ActiveRecord::Base.send :include, EasySearchForm
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_search_form
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bruno Cordeiro
|
@@ -67,11 +67,11 @@ files:
|
|
67
67
|
- Rakefile
|
68
68
|
- bin/console
|
69
69
|
- bin/setup
|
70
|
-
-
|
71
|
-
- lib/
|
72
|
-
- lib/
|
73
|
-
- lib/
|
74
|
-
- lib/
|
70
|
+
- easy_search_form.gemspec
|
71
|
+
- lib/easy_search_form.rb
|
72
|
+
- lib/easy_search_form/easysearch_helper.rb
|
73
|
+
- lib/easy_search_form/version.rb
|
74
|
+
- lib/easy_search_form/views/_search_form.html.erb
|
75
75
|
homepage: https://github.com/brunofrank/easy_search
|
76
76
|
licenses:
|
77
77
|
- MIT
|
data/lib/easy_search/version.rb
DELETED