Extends orm_adapter to support ActiveResource.
This enables you to use devise and other libraries based on orm_adapter with your ActiveResource models.
gem install orm_adapter_activeresource
or add this to your Gemfile:
gem 'orm_adapter_activeresource'
This will automatically load the orm_adapter methods into all ActiveResource models.
To run the integration tests (launches a full ActiveResource Rails-based server)
rake spec
Sample model for devise:
class User < ActiveResource::Base
self.site = # ...
# Devise compatibility
def self.before_validation(*args); end
def authenticatable_salt; end
devise :database_authenticatable, :recoverable
end