annacruz / ofx

A simple OFX (Open Financial Exchange) parser built on top of Nokogiri. Currently supports OFX 1.0.2.
http://github.com/annacruz/ofx
131 stars 82 forks source link

0.3.5 is broken on rubygems #99

Closed JoeDupuis closed 2 years ago

JoeDupuis commented 2 years ago

I am hitting this issue too : https://github.com/annacruz/ofx/issues/96 It looks like the 0.3.5 hosted on rubygems differs from the repo. I diffed the gem against this repo and ignoring the difference caused by rubocop/standard, this line is causing the issue The content attr_reader is missing a t.

attr_reader :headers, :body, :conten, :parser

should be

attr_reader :headers, :body, :content, :parser

I think we need to create a new re-lease to fix.

cesarjr commented 2 years ago

Hi Joe!

Have you tried the solution described at #96? Did it work for you? If yes, please, close this issue and continue the conversation there.

It helps to keep the repository organized.

Thank you.

JoeDupuis commented 2 years ago

@cesarjr it does, but it's only a workaround, not a fix. It works because it downloads the gem from the repo instead of rubygems. The rubygems version still has the bug. We should fix it as this is what newcomers will likely try first.

We can continue on the other issue, but I can't reopen the other issue. Having the issue closed make it hard to see what is still an active issue.