auto_html 1.3.1 → 1.3.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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 1.3.2, released 2010-08-27
2
+ * pre-rails 3 initialization fix
3
+
1
4
  ## 1.3.1, released 2010-08-22
2
5
  * Rails 3 initialization fix
3
6
  * fixes to conform Rails 3.0.0.rc, sanitization by default in text_helpers (auto_link, simple_format)
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 3
4
- :patch: 1
4
+ :patch: 2
data/auto_html.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{auto_html}
8
- s.version = "1.3.1"
8
+ s.version = "1.3.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dejan Simic"]
12
- s.date = %q{2010-08-22}
12
+ s.date = %q{2010-08-27}
13
13
  s.description = %q{Automatically transforms urls (via domain) and includes the destination resource (Vimeo, YouTube movie, image, ...) in your document}
14
14
  s.email = %q{desimic@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -40,6 +40,7 @@ Gem::Specification.new do |s|
40
40
  "lib/auto_html/filters/vimeo.rb",
41
41
  "lib/auto_html/filters/youtube.rb",
42
42
  "lib/auto_html/filters/youtube_js_api.rb",
43
+ "rails/init.rb",
43
44
  "test/fixture_setup.rb",
44
45
  "test/fixtures/database.yml",
45
46
  "test/fixtures/schema.rb",
data/rails/init.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'auto_html'
2
+
3
+ ActiveRecord::Base.send :include, AutoHtmlFor
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auto_html
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 1
10
- version: 1.3.1
9
+ - 2
10
+ version: 1.3.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dejan Simic
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-08-22 00:00:00 +02:00
18
+ date: 2010-08-27 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -52,6 +52,7 @@ files:
52
52
  - lib/auto_html/filters/vimeo.rb
53
53
  - lib/auto_html/filters/youtube.rb
54
54
  - lib/auto_html/filters/youtube_js_api.rb
55
+ - rails/init.rb
55
56
  - test/fixture_setup.rb
56
57
  - test/fixtures/database.yml
57
58
  - test/fixtures/schema.rb