summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/arel/files/arel-9.0.0-fix_BigDecimal.patch')
-rw-r--r--dev-ruby/arel/files/arel-9.0.0-fix_BigDecimal.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-ruby/arel/files/arel-9.0.0-fix_BigDecimal.patch b/dev-ruby/arel/files/arel-9.0.0-fix_BigDecimal.patch
deleted file mode 100644
index fb4e4af77d10..000000000000
--- a/dev-ruby/arel/files/arel-9.0.0-fix_BigDecimal.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From cbbe9ed392bfe146fc0871653aad9b619cef8509 Mon Sep 17 00:00:00 2001
-From: Yasuo Honda <yasuo.honda@gmail.com>
-Date: Sun, 7 Jan 2018 23:43:51 +0000
-Subject: [PATCH] BigDecimal.new is deprecated in Ruby 2.5
-
-Refer https://github.com/ruby/bigdecimal/pull/86
----
- test/visitors/test_to_sql.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test/visitors/test_to_sql.rb b/test/visitors/test_to_sql.rb
-index 77756b9e..4416a11b 100644
---- a/test/visitors/test_to_sql.rb
-+++ b/test/visitors/test_to_sql.rb
-@@ -233,7 +233,7 @@ def dispatch
- end
-
- it "should visit_BigDecimal" do
-- compile Nodes.build_quoted(BigDecimal.new('2.14'))
-+ compile Nodes.build_quoted(BigDecimal('2.14'))
- end
-
- it "should visit_Date" do