aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource
Commit message (Expand)AuthorAgeFilesLines
...
* Handle string and symbol param keys when splitting params into prefix params ...Rick Olson2007-05-093-2/+11
* Make respond_to? work as expectedTobias Lütke2007-05-042-0/+28
* 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-014-44/+95
* change #custom_headers to just #headers [Rick]Rick Olson2007-04-294-19/+19
* Add support for setting custom headers per ActiveResource model [Rick]Rick Olson2007-04-296-24/+70
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ...David Heinemeier Hansson2007-04-281-1/+0
* Added find-by-path options to ActiveResource::Base.find [DHH]David Heinemeier Hansson2007-04-274-8/+36
* Added support for using classes from within a single nested module [DHH]David Heinemeier Hansson2007-04-263-5/+47
* Added load_attributes_from_response as a way of loading attributes from other...David Heinemeier Hansson2007-04-262-4/+18
* The find should instantiate real objects, not return hashesDavid Heinemeier Hansson2007-04-262-3/+6
* Added support for calling custom methods #6979 [rwdaigle]David Heinemeier Hansson2007-04-267-1/+212
* dont bother merging in prefix_optionsRick Olson2007-04-241-1/+1
* why oh why do i always forget to save the changelogRick Olson2007-04-241-1/+1
* Remove explicit prefix_options parameter for ActiveResource::Base#initialize....Rick Olson2007-04-243-24/+98
* Dont insert search parameters into the objectDavid Heinemeier Hansson2007-04-231-1/+1
* Only include relevant filesDavid Heinemeier Hansson2007-04-231-4/+2
* Include Active Resource instead of Action Web Service [DHH]David Heinemeier Hansson2007-04-232-12/+8
* Disregard namespaces from the default element name, so Highrise::Person will ...David Heinemeier Hansson2007-04-196-19/+38
* Allow array and hash query parameters. Closes #7756.Jeremy Kemper2007-03-113-19/+8
* Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [...David Heinemeier Hansson2007-02-041-1/+1
* Squash test warnings.Jeremy Kemper2007-01-242-28/+32
* Loading a resource preserves its prefix_options. Closes #7353. Silence prefix...Jeremy Kemper2007-01-243-4/+17
* Carry over the convenience of #create from ActiveRecord. Closes #7340. [Rya...Rick Olson2007-01-244-1/+36
* Increase ActiveResource::Base test coverage. Closes #7173, #7174 [Rich Collins]Rick Olson2007-01-233-0/+56
* Interpret 422 Unprocessable Entity as ResourceInvalid. Closes #7097.Jeremy Kemper2007-01-175-12/+14
* Mega documentation patches. #7025, #7069 [rwdaigle]Rick Olson2007-01-167-25/+336
* Base.exists?(id, options) and Base#exists? check whether the resource is foun...Jeremy Kemper2007-01-123-0/+38
* 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-292-21/+20
* 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-293-6/+64
* Base#==, eql?, and hash methods. == returns true if its argument is identical...Jeremy Kemper2006-12-223-0/+61
* test that element name includes module nestingJeremy Kemper2006-12-211-0/+8
* 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-214-18/+45
* move http_mock to lib so others can use it in their Ares testsJeremy Kemper2006-12-212-5/+4
* fix Rakefile so that the rdoc can be generatedRick Olson2006-12-191-1/+1
* Allow subclassed resources to share the site info [Rick]Rick Olson2006-12-134-1/+49
* Fix issues with ActiveResource collection handling. Closes #6291. [bmilekic]Rick Olson2006-12-126-26/+82
* *_path instance methods. Check for missing/invalid site uri. http_mock respon...Jeremy Kemper2006-12-055-33/+54
* Use attr_accessor_with_default to dry up attribute initialization. References...Marcel Molina2006-11-162-25/+6
* 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-233-2/+17
* Add Base.delete for deleting resources without having to instantiate them firstJamis Buck2006-10-063-0/+10
* Make #save behavior mimic AR::Base#save (true on success, false on failure)Jamis Buck2006-10-025-12/+13
* assume the passed headers to the ActiveResource HttpMock Request/Response are...Rick Olson2006-10-021-2/+2
* Add Basic HTTP Authentication to ActiveResource (closes #6305). [jonathan]Rick Olson2006-09-297-39/+190
* workaround collections loaded as :people => { :person => [{..attrs..}, {..att...Jeremy Kemper2006-09-222-28/+44