- Removed unneeded BuildRoot tag. - Tests no longer fail with newer versions of Mocha, remove workaround.f38
parent
7e51ad431b
commit
fc56e2eeca
@ -1,16 +1,19 @@
|
|||||||
diff --git a/specifications/activesupport-3.0.15.gemspec.orig b/specifications/activesupport-3.0.15.gemspec
|
--- a/specifications/activesupport-3.2.6.gemspec.orig 2012-07-18 14:52:50.000000000 +0200
|
||||||
index 0277593..ef9b71d 100644
|
+++ b/specifications/activesupport-3.2.6.gemspec 2012-07-18 14:56:49.367668024 +0200
|
||||||
--- a/specifications/activesupport-3.0.15.gemspec.orig
|
@@ -20,13 +20,16 @@
|
||||||
+++ b/specifications/activesupport-3.0.15.gemspec
|
|
||||||
@@ -20,8 +20,11 @@ Gem::Specification.new do |s|
|
|
||||||
s.specification_version = 3
|
s.specification_version = 3
|
||||||
|
|
||||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||||
+ s.add_runtime_dependency("bigdecimal", ">= 0")
|
+ s.add_runtime_dependency(%q<bigdecimal>, [">= 0"])
|
||||||
|
s.add_runtime_dependency(%q<i18n>, ["~> 0.6"])
|
||||||
|
s.add_runtime_dependency(%q<multi_json>, ["~> 1.0"])
|
||||||
else
|
else
|
||||||
+ s.add_dependency("bigdecimal", ">= 0")
|
+ s.add_dependency(%q<bigdecimal>, [">= 0"])
|
||||||
|
s.add_dependency(%q<i18n>, ["~> 0.6"])
|
||||||
|
s.add_dependency(%q<multi_json>, ["~> 1.0"])
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
+ s.add_dependency("bigdecimal", ">= 0")
|
+ s.add_dependency(%q<bigdecimal>, [">= 0"])
|
||||||
end
|
s.add_dependency(%q<i18n>, ["~> 0.6"])
|
||||||
|
s.add_dependency(%q<multi_json>, ["~> 1.0"])
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in new issue