discogs icon indicating copy to clipboard operation
discogs copied to clipboard

A Ruby wrapper of the Discogs.com API

Results 8 discogs issues
Sort by recently updated
recently updated
newest added

Hey, the methods that return hashies kind of dont always work... i tried to get some information from them using the [] method but it sometimes outputs an error "undefined...

Hi, first of all, thanks for the great work you all, I really love this wrapper, using it for all my applications, makes it way easier for me. I'm just...

wrapper.list_orders return 0 items but the authenticated user has some orders and it is accessible using get_order(order_id)

In my client code I need to obtain the barcode of a release. I currently do (as of Discogs::Wrapper,v2) barcode = release.identifiers && release.identifiers.find{|i|i.type=='Barcode'} self.ean = barcode && barcode.value.strip Back...

release = discogs.get_release(...) sometimes includes release.identifiers but sometimes does not. (aka release.identifiers == nil) I'd like to suggest to add some postprocessing to the Discogs::Wrapper aka: release.identifiers=nil should automagically be...

Hey, first of all, thank for your gem! I'm a beginner but I encountered an issue while trying it so this might help someone with the same issue. I had...

Currently if you get a 429 (or any other we theoretically catch), we won't catch it because we're doing string comparisons on integers, and thus we jsut get a JSON::ParserError....

This actually drops TWO warnings: - The warning we were printing - The warning from Mashie generated because we were propogating the bad keynames This will address #53 Signed-off-by: Phil...