Skip to content

Commit 2c278f4

Browse files
committed
Bump bundled bigdecimal to 3.2.1
1 parent 57d10c6 commit 2c278f4

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The following bundled gems are updated.
134134
* net-smtp 0.5.1
135135
* rbs 3.9.4
136136
* base64 0.3.0
137-
* bigdecimal 3.2.0
137+
* bigdecimal 3.2.1
138138
* drb 2.2.3
139139
* syslog 0.3.0
140140
* csv 3.3.4

gems/bundled_gems

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ racc 1.8.1 https://github.com/ruby/racc
2525
mutex_m 0.3.0 https://github.com/ruby/mutex_m
2626
getoptlong 0.2.1 https://github.com/ruby/getoptlong
2727
base64 0.3.0 https://github.com/ruby/base64
28-
bigdecimal 3.2.0 https://github.com/ruby/bigdecimal
28+
bigdecimal 3.2.1 https://github.com/ruby/bigdecimal
2929
observer 0.1.2 https://github.com/ruby/observer
3030
abbrev 0.1.2 https://github.com/ruby/abbrev
3131
resolv-replace 0.1.1 https://github.com/ruby/resolv-replace

spec/ruby/library/bigdecimal/limit_spec.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
(BigDecimal('0.888') + BigDecimal('0')).should == BigDecimal('0.9')
2424
(BigDecimal('0.888') - BigDecimal('0')).should == BigDecimal('0.9')
2525
(BigDecimal('0.888') * BigDecimal('3')).should == BigDecimal('3')
26-
27-
skip "TODO: BigDecimal 3.2.0" if BigDecimal::VERSION == '3.2.0'
2826
(BigDecimal('0.888') / BigDecimal('3')).should == BigDecimal('0.3')
2927
end
3028

@@ -48,8 +46,6 @@
4846
it "picks the global precision when limit 0 specified" do
4947
BigDecimalSpecs.with_limit(3) do
5048
BigDecimal('0.8888').add(BigDecimal('0'), 0).should == BigDecimal('0.889')
51-
52-
skip "TODO: BigDecimal 3.2.0" if BigDecimal::VERSION == '3.2.0'
5349
BigDecimal('0.8888').sub(BigDecimal('0'), 0).should == BigDecimal('0.889')
5450
BigDecimal('0.888').mult(BigDecimal('3'), 0).should == BigDecimal('2.66')
5551
BigDecimal('0.8888').div(BigDecimal('3'), 0).should == BigDecimal('0.296')

spec/ruby/library/bigdecimal/shared/quo.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
describe "with Object" do
3333
it "tries to coerce the other operand to self" do
34-
skip "TODO: BigDecimal 3.2.0" if BigDecimal::VERSION == '3.2.0'
34+
skip if @method == :div
3535
object = mock("Object")
3636
object.should_receive(:coerce).with(@one).and_return([@one, @two])
3737
@one.send(@method, object, *@object).should == BigDecimal("0.5")

0 commit comments

Comments
 (0)