mreinsch-auto_complete_jquery 0.2.1 → 0.2.2

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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "auto_complete_jquery"
3
- s.version = "0.2.1"
3
+ s.version = "0.2.2"
4
4
  s.date = "2009-06-10"
5
5
  s.summary = "auto-complete method for Rails controllers using Dylan Verheul's jQuery autocomplete plugin"
6
6
  s.email = "michael@mobalean.com"
@@ -8,11 +8,12 @@ Gem::Specification.new do |s|
8
8
  s.description = "This plugin provides a auto-complete method for your controllers to be used with Dylan Verheul's jquery autocomplete plugin."
9
9
  s.has_rdoc = true
10
10
  s.authors = ["Chris Bailey", "Michael Reinsch"]
11
- s.files = ["CHANGELOG",
12
- "README.rdoc",
13
- "Rakefile",
14
- "auto_complete_jquery.gemspec",
15
- "init.rb",
11
+ s.files = ["CHANGELOG",
12
+ "README.rdoc",
13
+ "Rakefile",
14
+ "auto_complete_jquery.gemspec",
15
+ "init.rb",
16
+ "rails/init.rb",
16
17
  "lib/auto_complete_jquery.rb"]
17
18
  s.rdoc_options = ["--main", "README.rdoc"]
18
19
  s.extra_rdoc_files = ["CHANGELOG", "README.rdoc"]
data/init.rb CHANGED
@@ -1 +1 @@
1
- ActionController::Base.send :include, AutoCompleteJquery
1
+ require File.dirname(__FILE__) + "/rails/init"
data/rails/init.rb ADDED
@@ -0,0 +1,3 @@
1
+ require "auto_complete_jquery"
2
+
3
+ ActionController::Base.send :include, AutoCompleteJquery
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mreinsch-auto_complete_jquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Bailey
@@ -29,6 +29,7 @@ files:
29
29
  - Rakefile
30
30
  - auto_complete_jquery.gemspec
31
31
  - init.rb
32
+ - rails/init.rb
32
33
  - lib/auto_complete_jquery.rb
33
34
  has_rdoc: true
34
35
  homepage: http://github.com/mreinsch/auto_complete_jquery