From 59fe98eafe0f99e806dfb7c089b8e86877fdfb46 Mon Sep 17 00:00:00 2001 From: James Healy Date: Sun, 26 Sep 2010 13:55:25 +1000 Subject: [PATCH] update gem dependency to rails 3 final --- strip_control_chars.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strip_control_chars.gemspec b/strip_control_chars.gemspec index 01dc35d..09ce69c 100644 --- a/strip_control_chars.gemspec +++ b/strip_control_chars.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "strip_control_chars" - s.version = "2.0" + s.version = "2.1" s.summary = "a small ActiveRecord plugin that removes ASCII control chars from attributes" s.description = "a small ActiveRecord plugin that removes ASCII control chars from attributes" s.author = "James Healy" @@ -11,5 +11,5 @@ Gem::Specification.new do |s| s.rubyforge_project = "yob-projects" s.test_files = [ "test/strip_control_chars_test.rb", "test/test_helper.rb" ] s.files = [ "lib/strip_control_chars.rb", "lib/strip_control_chars/ar_extend.rb","lib/strip_control_chars/railtie.rb","Rakefile", "MIT-LICENSE", "README.rdoc" ] - s.add_dependency("activerecord", ">= 3.0.0.rc") + s.add_dependency("activerecord", ">= 3.0.0") end