aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib
Commit message (Expand)AuthorAgeFilesLines
* Recognize and raise an exception on 405 Method Not Allowed responses. Closes ...Jeremy Kemper2007-05-261-0/+9
* Handle string and symbol param keys when splitting params into prefix params ...Rick Olson2007-05-091-2/+3
* Make respond_to? work as expectedTobias Lütke2007-05-041-0/+20
* Try the class itself if the ancestor doesnt have anythingDavid Heinemeier Hansson2007-05-021-2/+6
* BACKWARDS INCOMPATIBLE: Changed the finder API to be more extensible with :pa...David Heinemeier Hansson2007-05-011-29/+49
* change #custom_headers to just #headers [Rick]Rick Olson2007-04-292-16/+16
* Add support for setting custom headers per ActiveResource model [Rick]Rick Olson2007-04-293-24/+28
* Added find-by-path options to ActiveResource::Base.find [DHH]David Heinemeier Hansson2007-04-271-7/+14
* Added support for using classes from within a single nested module [DHH]David Heinemeier Hansson2007-04-261-4/+15
* Added load_attributes_from_response as a way of loading attributes from other...David Heinemeier Hansson2007-04-261-4/+7
* The find should instantiate real objects, not return hashesDavid Heinemeier Hansson2007-04-261-2/+5
* Added support for calling custom methods #6979 [rwdaigle]David Heinemeier Hansson2007-04-264-0/+115
* dont bother merging in prefix_optionsRick Olson2007-04-241-1/+1
* Remove explicit prefix_options parameter for ActiveResource::Base#initialize....Rick Olson2007-04-241-20/+67
* Dont insert search parameters into the objectDavid Heinemeier Hansson2007-04-231-1/+1
* Include Active Resource instead of Action Web Service [DHH]David Heinemeier Hansson2007-04-231-1/+1
* Disregard namespaces from the default element name, so Highrise::Person will ...David Heinemeier Hansson2007-04-193-8/+26
* Allow array and hash query parameters. Closes #7756.Jeremy Kemper2007-03-111-17/+1
* Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [...David Heinemeier Hansson2007-02-041-1/+1
* Loading a resource preserves its prefix_options. Closes #7353. Silence prefix...Jeremy Kemper2007-01-241-4/+8
* Carry over the convenience of #create from ActiveRecord. Closes #7340. [Rya...Rick Olson2007-01-241-0/+15
* Interpret 422 Unprocessable Entity as ResourceInvalid. Closes #7097.Jeremy Kemper2007-01-171-2/+2
* Mega documentation patches. #7025, #7069 [rwdaigle]Rick Olson2007-01-165-24/+104
* Base.exists?(id, options) and Base#exists? check whether the resource is foun...Jeremy Kemper2007-01-121-0/+12
* Validating save returns boolean; update and create return responses.Jeremy Kemper2006-12-292-6/+6
* prefix_parameters pulls /:path/:params from the URI prefixJeremy Kemper2006-12-291-13/+12
* doh typo in commit from the hipJeremy Kemper2006-12-291-1/+1
* generate prefix parameters if undefinedJeremy Kemper2006-12-291-0/+1
* Query string support. Closes #6855.Jeremy Kemper2006-12-291-6/+38
* Base#==, eql?, and hash methods. == returns true if its argument is identical...Jeremy Kemper2006-12-221-0/+16
* HttpMock InvalidRequestError inspects the mismatched requestJeremy Kemper2006-12-211-2/+2
* Subclasses share superclass site until explicitly set. This way you can set S...Jeremy Kemper2006-12-211-12/+9
* move http_mock to lib so others can use it in their Ares testsJeremy Kemper2006-12-211-0/+123
* Allow subclassed resources to share the site info [Rick]Rick Olson2006-12-131-1/+14
* Fix issues with ActiveResource collection handling. Closes #6291. [bmilekic]Rick Olson2006-12-122-17/+28
* *_path instance methods. Check for missing/invalid site uri. http_mock respon...Jeremy Kemper2006-12-052-6/+15
* Use attr_accessor_with_default to dry up attribute initialization. References...Marcel Molina2006-11-161-25/+4
* to_xml needs to accept an options hash to conform with the expectations of Ha...Jamis Buck2006-10-241-2/+2
* Add basic logging support for logging outgoing requests.Jamis Buck2006-10-232-2/+15
* Add Base.delete for deleting resources without having to instantiate them firstJamis Buck2006-10-061-0/+4
* Make #save behavior mimic AR::Base#save (true on success, false on failure)Jamis Buck2006-10-022-5/+7
* Add Basic HTTP Authentication to ActiveResource (closes #6305). [jonathan]Rick Olson2006-09-291-6/+18
* workaround collections loaded as :people => { :person => [{..attrs..}, {..att...Jeremy Kemper2006-09-221-16/+25
* fixed failing tests now that non-GET requests are sent with .xml file ext. E...Rick Olson2006-09-201-1/+6
* Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist unti...David Heinemeier Hansson2006-09-202-2/+2
* All verbs should use formatted urls [DHH]David Heinemeier Hansson2006-09-131-3/+3
* Optimistic locking: raise ActiveResource::ResourceConflict on 409 Conflict re...Jeremy Kemper2006-09-091-6/+6
* Basic validation support [Rick Olson]Rick Olson2006-09-083-2/+136
* load expects a HashJeremy Kemper2006-09-051-1/+1
* load nil is noop. use new? instead of new_resource?Jeremy Kemper2006-09-041-2/+3