NOTICE: This package has been removed from pkgsrc

./www/ruby-actionwebservice, Simple support for publishing web service APIs for Rails

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.2.5, Package name: ruby18-actionwebservice-1.2.5, Maintainer: minskim

Simple support for publishing Web Service APIs for Rails applications.
Supports SOAP and XML-RPC, as well as generating WSDL for SOAP
bindings.


Required to run:
[www/ruby-actionpack] [databases/ruby-activerecord] [lang/ruby18-base]

Master sites:

SHA1: 88e4bd8cc52e536672b135d5a91bc0d461e4caa1
RMD160: 2da3bf540c42aec5a1a723e59c98ac918c67030a
Filesize: 62.592 KB

Version history: (Expand)


CVS history: (Expand)


   2008-02-17 19:19:14 by Min Sik Kim | Files touched by this commit (4) | Package removed
Log message:
Remove ruby-actionwebservice, which was obsoleted by ruby-activeresource.
   2007-10-16 05:31:02 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update ruby-actionwebservice to 1.2.5.

Changes:
* Depend on Action Pack 1.13.5
* Depend on Active Record 1.15.5
   2007-03-17 12:17:58 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update ruby-actionwebservice to 1.2.3.

Changes:
* Depend on Action Pack 1.13.3
   2007-02-19 00:35:43 by Min Sik Kim | Files touched by this commit (3)
Log message:
Update ruby-actionwebservice to 1.2.2.

Changes:
* Depend on Action Pack 1.13.2.
   2007-01-28 06:42:51 by Min Sik Kim | Files touched by this commit (2)
Log message:
Update ruby-actionwebservice to 1.2.1, required by rails-1.2.1.

Changes since 1.1.6:
* Removed invocation of deprecated before_action and around_action filter
  methods. Corresponding before_invocation and after_invocation methods
  should be used instead.
* Provide access to the underlying SOAP driver.
* ActionWebService WSDL generation ignores HTTP_X_FORWARDED_HOST
* Tighten rescue clauses.
* Fixed XMLRPC multicall when one of the called methods returns a struct
  object.
* Fix invoke_layered since api_method didn't declare :expects.
   2006-10-10 01:27:59 by Min Sik Kim | Files touched by this commit (3)
Log message:
Update ruby-actionwebservice to 1.1.6.

Changes since 0.9.1:
* Do not convert driver options to strings (#4499)
* Make ActiveWebService::Struct type reloadable
* Fix scaffolding action when one of the members of a structural type has
  date or time type
* Remove extra index hash when generating scaffold html for parameters of
  structural type #4374 [joe@mjg2.com]
* Fix Scaffold Fails with Struct as a Parameter #4363 [joe@mjg2.com]
* Fix soap type registration of multidimensional arrays (#4232)
* Fix that marshaler couldn't handle ActiveRecord models defined in a
  different namespace (#2392).
* Fix that marshaler couldn't handle structs with members of ActiveRecord
  type (#1889).
* Fix that marshaler couldn't handle nil values for inner structs (#3576).
* Fix that changes to ActiveWebService::API::Base required restarting of
  the server (#2390).
* Fix scaffolding for signatures with :date, :time and :base64 types
  (#3321, #2769, #2078).
* Fix for incorrect casting of TrueClass/FalseClass instances (#2633,
  #3421).
* Fix for incompatibility problems with SOAP4R 1.5.5 (#2553) [Kent Sibilev]
* Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel
  Molina Jr.]
* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
* Fix that XML-RPC date/time values did not have well-defined behaviour
  (#2516, #2534). This fix has one caveat, in that we can't support
  pre-1970 dates from XML-RPC clients.
   2006-01-03 15:25:51 by Takahiro Kambe | Files touched by this commit (55) | Package updated
Log message:
Stop handling DIST_SUBDIR default for Ruby based packages.
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
   2005-11-03 06:41:39 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update www/ruby-actionwebservice package to 0.9.1.

*0.9.1* (October 19th, 2005)

* Upgraded to Action Pack 1.10.1 and Active Record 1.12.1

*0.9.0* (October 16th, 2005)

* Fix invalid XML request generation bug in test_invoke [Ken Barker]

* Add XML-RPC 'system.multicall' support #1941 [jbonnar]

* Fix duplicate XSD entries for custom types shared across delegated/layered \ 
services #1729 [Tyler Kovacs]

* Allow multiple invocations in the same test method #1720 [dkhawk]

* Added ActionWebService::API::Base.soap_client and \ 
ActionWebService::API::Base.xmlrpc_client helper methods to create the internal \ 
clients for an API, useful for testing from ./script/console

* ActionWebService now always returns UTF-8 responses.