2

I'm moving our primary datastore away from ActiveRecord, and instead the data will be accessible through a REST api as JSON. Should I use ActiveResource or HTTParty to access the data? It's primarily going to be read-only for view rendering.

MrEvil
  • 7,785
  • 7
  • 36
  • 36

1 Answers1

4

I think that HTTParty has a better API, is better maintained and more flexible than ActiveResource. I would use HTTParty.

Ryan Bigg
  • 106,965
  • 23
  • 235
  • 261