Hello community,

here is the log from the commit of package rubygem-rest-client for 
openSUSE:Factory checked in at 2012-12-05 14:07:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rest-client (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rest-client.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rest-client", Maintainer is "jsr...@suse.com"

Changes:
--------
New Changes file:

--- /dev/null   2012-11-30 12:21:47.308011256 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rest-client.new/rubygem-rest-client.changes 
    2012-12-05 14:07:44.000000000 +0100
@@ -0,0 +1,95 @@
+-------------------------------------------------------------------
+Fri Oct  7 13:29:54 UTC 2011 - fcaste...@suse.com
+
+- Udate to 1.6.7
+
+-------------------------------------------------------------------
+Wed Aug 24 20:53:51 UTC 2011 - fcaste...@novell.com
+
+- add provides rubygem-rest-client-1_6
+
+-------------------------------------------------------------------
+Sun Nov 14 00:34:01 UTC 2010 - mrueck...@suse.de
+
+- update to version 1.6.1
+
+-------------------------------------------------------------------
+Tue Jun 22 18:05:39 UTC 2010 - mrueck...@suse.de
+
+- add 1.4.2
+
+-------------------------------------------------------------------
+Mon Jun 14 16:19:16 UTC 2010 - mrueck...@suse.de
+
+- update to version 1.5.1
+  - only converts headers keys which are Symbols
+  - use CGI for cookie parsing instead of custom code
+  - unescape user and password before using them (patch provided by
+    Lars Gierth)
+  - expand ~ in ~/.restclientrc (patch provided by Mike Fletcher)
+  - ssl verification raise an exception when the ca certificate is
+    incorrect (patch provided by Braintree)
+- additional changes from version 1.5.0
+  - the response is now a String with the Response module a.k.a.
+    the change in 1.4.0 was a mistake (Response.body is returning
+    self for compatability)
+  - added AbstractResponse.to_i to improve semantic
+  - multipart Payloads ignores the name attribute if it's not set
+    (patch provided by Tekin Suleyman)
+  - correctly takes into account user headers whose keys are
+    strings (path provided by Cyril Rohr)
+  - use binary mode for payload temp file
+  - concatenate cookies with ';'
+  - fixed deeper parameter handling
+  - do not quote the boundary in the Content-Type header (patch
+    provided by W. Andrew Loe III)
+- additional changes from version 1.4.2
+  - fixed RestClient.add_before_execution_proc (patch provided by
+    Nicholas Wieland)
+  - fixed error when an exception is raised without a response
+    (patch provided by Caleb Land)
+- additional changes from version 1.4.1
+  - fixed parameters managment when using hash
+- additional changes from version 1.4.0
+  - Response is no more a String, and the mixin is replaced by an
+    abstract_response, existing calls are redirected to response
+    body with a warning.
+  - enable repeated parameters  RestClient.post
+    'http://example.com/resource', :param1 => ['one', 'two',
+    'three'], => :param2 => 'foo' (patch provided by Rodrigo
+    Panachi)
+  - fixed the redirect code concerning relative path and query
+    string combination (patch provided by Kevin Read)
+  - redirection code moved to Response so redirection can be
+    customized using the block syntax
+  - only get and head redirections are now followed by default, as
+    stated in the specification
+  - added RestClient.add_before_execution_proc to hack the http
+    request, like for oauth
+  The response change may be breaking in rare cases.
+
+-------------------------------------------------------------------
+Fri Jun 11 10:00:01 UTC 2010 - mrueck...@suse.de
+
+- use rubygems_requires macro
+
+-------------------------------------------------------------------
+Thu Feb 18 22:48:44 UTC 2010 - prus...@suse.cz
+
+- updated to 1.3.1
+
+-------------------------------------------------------------------
+Wed Jan  6 19:47:12 CET 2010 - prus...@suse.cz
+
+- updated to 1.2.0
+
+-------------------------------------------------------------------
+Fri Dec 25 02:38:16 UTC 2009 - prus...@suse.cz
+
+- update to 1.0.4
+
+-------------------------------------------------------------------
+Sat Aug 29 08:58:55 UTC 2009 - dmacvi...@novell.com
+
+- initial package for 1.0.3
+

New:
----
  rest-client-1.6.7.gem
  rubygem-rest-client.changes
  rubygem-rest-client.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-rest-client.spec ++++++
#
# spec file for package rubygem-rest-client
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

# norootforbuild
Name:           rubygem-rest-client
Version:        1.6.7
Release:        0
%define mod_name rest-client
%define mod_full_name %{mod_name}-%{version}
#
Group:          Development/Languages/Ruby
License:        MIT
#
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  rubygems_with_buildroot_patch
%rubygems_requires
# mime-types >= 1.16
BuildRequires:  rubygem-mime-types >= 1.16
Requires:       rubygem-mime-types >= 1.16
#
Provides:       %{name}-1_6 = %{version}-%{release}
#
Url:            http://github.com/archiloque/rest-client
Source:         %{mod_full_name}.gem
#
Summary:        Simple HTTP and REST client for Ruby, inspired by 
microframework syntax for specifying actions
%description
A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework 
style of specifying actions: get, put, post, delete.

%package doc
Summary:        RDoc documentation for %{mod_name}
Group:          Development/Languages/Ruby
Requires:       %{name} = %{version}
%description doc
Documentation generated at gem installation time.
Usually in RDoc and RI formats.

%package testsuite
Summary:        Test suite for %{mod_name}
Group:          Development/Languages/Ruby
Requires:       %{name} = %{version}
%description testsuite
Test::Unit or RSpec files, useful for developers.

%prep
%build
%install
%gem_install %{S:0}

%clean
%{__rm} -rf %{buildroot}

%files
%defattr(-,root,root,-)
%{_bindir}/restclient
%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec

%files doc
%defattr(-,root,root,-)
%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/

%files testsuite
%defattr(-,root,root,-)
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec

%changelog
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to