acts_as_markup 0.1.0 → 0.1.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.
data/Rakefile CHANGED
@@ -20,6 +20,6 @@ PROJ.rdoc.include = %w(^lib/ LICENSE\.txt README\.rdoc)
20
20
  PROJ.rdoc.remote_dir = 'acts_as_markup'
21
21
  PROJ.test.files = FileList['test/**/*_test.rb']
22
22
 
23
- %W(activesupport activerecord rdiscount redcloth).each do |gem|
23
+ %W(activesupport activerecord rdiscount RedCloth).each do |gem|
24
24
  depend_on gem
25
25
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{acts_as_markup}
3
- s.version = "0.1.0"
3
+ s.version = "0.1.1"
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"]
@@ -26,17 +26,17 @@ Gem::Specification.new do |s|
26
26
  s.add_runtime_dependency(%q<activesupport>, [">= 2.1.0"])
27
27
  s.add_runtime_dependency(%q<activerecord>, [">= 2.1.0"])
28
28
  s.add_runtime_dependency(%q<rdiscount>, [">= 1.2.7"])
29
- s.add_runtime_dependency(%q<redcloth>, [">= 0"])
29
+ s.add_runtime_dependency(%q<RedCloth>, [">= 4.0.1"])
30
30
  else
31
31
  s.add_dependency(%q<activesupport>, [">= 2.1.0"])
32
32
  s.add_dependency(%q<activerecord>, [">= 2.1.0"])
33
33
  s.add_dependency(%q<rdiscount>, [">= 1.2.7"])
34
- s.add_dependency(%q<redcloth>, [">= 0"])
34
+ s.add_dependency(%q<RedCloth>, [">= 4.0.1"])
35
35
  end
36
36
  else
37
37
  s.add_dependency(%q<activesupport>, [">= 2.1.0"])
38
38
  s.add_dependency(%q<activerecord>, [">= 2.1.0"])
39
39
  s.add_dependency(%q<rdiscount>, [">= 1.2.7"])
40
- s.add_dependency(%q<redcloth>, [">= 0"])
40
+ s.add_dependency(%q<RedCloth>, [">= 4.0.1"])
41
41
  end
42
42
  end
@@ -2,7 +2,7 @@ require 'active_support'
2
2
 
3
3
  module ActsAsMarkup
4
4
  # :stopdoc:
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
7
7
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
8
8
  # :startdoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_markup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Landau
@@ -43,14 +43,14 @@ dependencies:
43
43
  version: 1.2.7
44
44
  version:
45
45
  - !ruby/object:Gem::Dependency
46
- name: redcloth
46
+ name: RedCloth
47
47
  type: :runtime
48
48
  version_requirement:
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: "0"
53
+ version: 4.0.1
54
54
  version:
55
55
  description: Represent ActiveRecord Markdown or Textile text columns as Markdown or Textile objects using various external libraries to convert to HTML.
56
56
  email: brian.landau@viget.com