acts_as_markdown 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,10 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{acts_as_markdown}
3
- s.version = "0.1.1"
3
+ s.version = "0.1.2"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Brian Landau"]
7
- s.date = %q{2008-08-05}
7
+ s.date = %q{2008-08-06}
8
8
  s.description = %q{Represent ActiveRecord markdown text columns as Markdown objects using various external libraries to convert to HTML.}
9
9
  s.email = %q{brian.landau@viget.com}
10
10
  s.extra_rdoc_files = ["LICENSE.txt", "README.rdoc"]
@@ -34,7 +34,7 @@ module ActiveRecord # :nodoc:
34
34
  return @#{col.to_s}
35
35
  end
36
36
  end
37
- @#{col.to_s} = #{klass}.new(self['#{col.to_s}'])
37
+ @#{col.to_s} = #{klass}.new(self['#{col.to_s}'].to_s)
38
38
  end
39
39
  EOV
40
40
  end
@@ -2,7 +2,7 @@ require 'active_support'
2
2
 
3
3
  module ActsAsMarkdown
4
4
  # :stopdoc:
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
7
7
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
8
8
  # :startdoc:
@@ -34,7 +34,7 @@ namespace :git do
34
34
 
35
35
  end # namespace :git
36
36
 
37
- task 'gem:release' => 'git:create_tag'
37
+ # task 'gem:release' => 'git:create_tag'
38
38
 
39
39
  end # if HAVE_GIT
40
40
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Landau
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-05 00:00:00 -04:00
12
+ date: 2008-08-06 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency