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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29af1d7870bf16aeb753be33d4ffb1a55488a292
4
- data.tar.gz: 9dbf02675b8c1a16ae978080889dd23ef66b4cd8
3
+ metadata.gz: 379f53407b4c1f01a02dd8e8851e67b7f051d010
4
+ data.tar.gz: a373cc04571579a52786f5d248173ed1a60ebbf0
5
5
  SHA512:
6
- metadata.gz: 1cd571857217907433f33e304046fff19356746adc3a3ca0ac9a8b35b18faaa3f09711dee47e825dd2a91caa9846f700442c763232727df8681ae0de9b6ec3a3
7
- data.tar.gz: caa9c8d142fc13824629c9a1b1d25b01cd3c2086c06d74e6ccbb649d1a88eb4fe46db5fac273b4e2705afd593af09972564014b81cd3665cb2cf5ed182c6c36f
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 'easy_search/version'
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 = EasySearch::VERSION
8
+ spec.version = EasySearchForm::VERSION
9
9
  spec.authors = ["Bruno Cordeiro"]
10
10
  spec.email = ["bfscordeiro@gmail.com"]
11
11
 
@@ -0,0 +1,3 @@
1
+ module EasySearchForm
2
+ VERSION = "0.3.0"
3
+ end
@@ -1,7 +1,7 @@
1
- require "easy_search/version"
2
- require 'easy_search/easysearch_helper'
1
+ require "easy_search_form/version"
2
+ require 'easy_search_form/easysearch_helper'
3
3
 
4
- module EasySearch
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, EasySearch
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.2.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
- - easy_search.gemspec
71
- - lib/easy_search.rb
72
- - lib/easy_search/easysearch_helper.rb
73
- - lib/easy_search/version.rb
74
- - lib/easy_search/views/_search_form.html.erb
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
@@ -1,3 +0,0 @@
1
- module EasySearch
2
- VERSION = "0.2.0"
3
- end