rs_autocomplete_rails 0.5.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a7ced81437e581c5d8ebb9f0739c31a47d92693
4
- data.tar.gz: ea78519f404d15a80ce0c1bf0c42b969de0c4790
3
+ metadata.gz: 11b2be74ab3880fe0d54050c8105426a61468a9f
4
+ data.tar.gz: 3d8d44f9cc39b56e63a3eeaa70941d7fbd8f949a
5
5
  SHA512:
6
- metadata.gz: 5d793edfe78629c5d7ddec6c179e17e60e8f23cf4131e3c42558a5bd687e72b8f99fcaab937d8a60ce836aeef68c295c2e84800379d80089b5e743ff6194ddcc
7
- data.tar.gz: 80574970f375bb54c081dbb4065b767c40f8ff521be77bbc58f88a817f487f521f918ceb41f50da96a084fd1eed7bcd7eea591b666903458c349d210617a1fa6
6
+ metadata.gz: 05c4e35e6f7ed67f08c1b785caf1ed0f29f4de39a4512b997e97c4d527bb804fbe7d2a44d1966b6b29ef3f935c5f7bd0e3647848a9b0595bdd2691c0bdaa77a8
7
+ data.tar.gz: cbe03d9febcab304bc62a05f7bc01e4a803516422859357615f0a0ea9c30a1c10df177546159d3dbe0af9ef2d0b7cb174fcaa93bf8fbfa342e695cc28af5c29b
@@ -0,0 +1,8 @@
1
+ require 'rs_autocomplete_rails/engine'
2
+ require 'rs_autocomplete_rails/controller'
3
+
4
+ # Top level module of autocomplete_rails,
5
+ module RsAutocompleteRails
6
+ end
7
+
8
+ ActionController::Base.send(:include, RsAutocompleteRails::Controller)
@@ -1,7 +1,7 @@
1
- module AutocompleteRails
1
+ module RsAutocompleteRails
2
2
  module Controller
3
3
  def self.included(target)
4
- target.extend AutocompleteRails::Controller::ClassMethods
4
+ target.extend RsAutocompleteRails::Controller::ClassMethods
5
5
  end
6
6
 
7
7
  module ClassMethods
@@ -1,6 +1,6 @@
1
- require 'autocomplete_rails/controller'
1
+ require 'rs_autocomplete_rails/controller'
2
2
 
3
- module AutocompleteRails
3
+ module RsAutocompleteRails
4
4
  class Engine < ::Rails::Engine
5
5
  config.generators do |g|
6
6
  g.test_framework :rspec
@@ -8,4 +8,3 @@ module AutocompleteRails
8
8
  end
9
9
  end
10
10
  end
11
-
@@ -0,0 +1,3 @@
1
+ module RsAutocompleteRails
2
+ VERSION = "0.5.1"
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rs_autocomplete_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Tomich
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-03-15 00:00:00.000000000 Z
12
+ date: 2021-03-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -154,10 +154,10 @@ files:
154
154
  - MIT-LICENSE
155
155
  - Rakefile
156
156
  - config/routes.rb
157
- - lib/autocomplete_rails.rb
158
- - lib/autocomplete_rails/controller.rb
159
- - lib/autocomplete_rails/engine.rb
160
- - lib/autocomplete_rails/version.rb
157
+ - lib/rs_autocomplete_rails.rb
158
+ - lib/rs_autocomplete_rails/controller.rb
159
+ - lib/rs_autocomplete_rails/engine.rb
160
+ - lib/rs_autocomplete_rails/version.rb
161
161
  - lib/tasks/autocomplete_rails_tasks.rake
162
162
  homepage: https://github.com/Rascality/autocomplete_rails
163
163
  licenses:
@@ -1,8 +0,0 @@
1
- require 'autocomplete_rails/engine'
2
- require 'autocomplete_rails/controller'
3
-
4
- # Top level module of autocomplete_rails,
5
- module AutocompleteRails
6
- end
7
-
8
- ActionController::Base.send(:include, AutocompleteRails::Controller)
@@ -1,3 +0,0 @@
1
- module AutocompleteRails
2
- VERSION = "0.5.0"
3
- end