Closed wingrunr21 closed 9 years ago
Pull request welcome
This should be fixed in fc46e3cc7a385ee361013217eff3d587924829da, could you re-test?
There was a discussion about it on debian ruby list http://debian.2.n7.nabble.com/activeresource-package-td3376255.html
Sam Ruby commented,
"Over time, it the Rails team made changes that made it less useful (particularly at the time that they switched from XML to JSON), and bugs aren't quickly addressed; that combined with the extraction leaves me with the impression that this isn't widely used.
I used to describe its usage in previous editions of my book[2], but I dropped it when Rails 4 came out."
Thanks for the fix.
This is fixed, but you should bump a minor version so you don't have to install from git.
Pull request welcome
Pushed 1.1.2.1
Hi,
57 introduced dependencies into the gemspec that are not needed.
activeresource
is not a core rails dependency anymore (since v4) and requiring it forces a large dep (since it pulls inrails-observers
as well) to be included in the bundle even if it isn't being used. I don't believe this gem requires any dependencies other thanrailties
.That PR also mistakenly blamed the rails dependency in this gemspec for failing to boot. The more likely cause was in
config/application.rb
, rails/all was being required instead of the core parts of rails that were needed.To test this:
cc/ @brockers