summaryrefslogtreecommitdiffstats
path: root/activesupport-add-bigdecimal-dependency.patch
blob: b3d24db05e28e4a4e1e261d8983d0b07dd9c0ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/specifications/activesupport-3.0.13.gemspec.orig b/specifications/activesupport-3.0.13.gemspec
index 0277593..ef9b71d 100644
--- a/specifications/activesupport-3.0.13.gemspec.orig
+++ b/specifications/activesupport-3.0.13.gemspec
@@ -20,8 +20,11 @@ Gem::Specification.new do |s|
     s.specification_version = 3
 
     if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
+      s.add_runtime_dependency("bigdecimal", ">= 0")
     else
+      s.add_dependency("bigdecimal", ">= 0")
     end
   else
+    s.add_dependency("bigdecimal", ">= 0")
   end
 end