[DRE-commits] [ruby-rest-client] branch master updated (5981373 -> c2977f5)
Lucas Nussbaum
lucas at moszumanska.debian.org
Tue May 5 14:46:54 UTC 2015
This is an automated email from the git hooks/post-receive script.
lucas pushed a change to branch master
in repository ruby-rest-client.
from 5981373 Apply upstream patch for CVE-2015-1820 (Closes: #781238)
adds e7b23e0 Imported Upstream version 1.8.0
new 8ae8657 Merge tag 'upstream/1.8.0'
new 68d8154 Refresh packaging.
new 0e47bfc Remove patch 0001_fix-set-cookie-CVE-2015-1820.patch: merged upstream.
new 5140bd9 Prepare changelog.
new 16c6994 Install history.md as upstream changelog.
new c2977f5 Update changelog
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 7 +
.rspec | 1 +
.travis.yml | 14 +
AUTHORS | 81 ++
Gemfile | 11 +
LICENSE | 21 +
README.rdoc | 87 +-
Rakefile | 120 ++-
VERSION | 1 -
bin/restclient | 17 +-
debian/changelog | 10 +
debian/control | 12 +-
.../0001_fix-set-cookie-CVE-2015-1820.patch | 173 ----
debian/patches/series | 1 -
debian/ruby-tests.rake | 7 +
debian/ruby-tests.rb | 2 -
debian/rules | 5 +-
history.md | 64 +-
lib/restclient.rb | 21 +-
lib/restclient/abstract_response.rb | 59 +-
lib/restclient/exceptions.rb | 30 +-
lib/restclient/net_http_ext.rb | 55 --
lib/restclient/payload.rb | 39 +-
lib/restclient/platform.rb | 30 +
lib/restclient/raw_response.rb | 5 +-
lib/restclient/request.rb | 431 ++++++++--
lib/restclient/resource.rb | 7 +-
lib/restclient/response.rb | 7 +-
lib/restclient/version.rb | 7 +
lib/restclient/windows.rb | 8 +
lib/restclient/windows/root_certs.rb | 105 +++
metadata.yml | 322 +++++---
rest-client.gemspec | 30 +
rest-client.windows.gemspec | 19 +
spec/base.rb | 16 -
spec/integration/capath_digicert/244b5494.0 | 19 +
spec/integration/capath_digicert/81b9768f.0 | 19 +
spec/integration/capath_digicert/README | 8 +
spec/integration/capath_digicert/digicert.crt | 19 +
.../verisign.crt => capath_verisign/415660c1.0} | 0
.../verisign.crt => capath_verisign/7651b327.0} | 0
spec/integration/capath_verisign/README | 8 +
.../{certs => capath_verisign}/verisign.crt | 0
spec/integration/certs/digicert.crt | 19 +
spec/integration/certs/equifax.crt | 19 -
spec/{ => integration}/integration_spec.rb | 23 +-
spec/integration/request_spec.rb | 93 ++-
spec/master_shake.jpg | Bin 22545 -> 0 bytes
spec/raw_response_spec.rb | 17 -
spec/request_spec.rb | 529 ------------
spec/spec_helper.rb | 2 +
spec/{ => unit}/abstract_response_spec.rb | 33 +-
spec/{ => unit}/exceptions_spec.rb | 37 +-
spec/unit/master_shake.jpg | Bin 0 -> 76988 bytes
spec/{ => unit}/payload_spec.rb | 73 +-
spec/unit/raw_response_spec.rb | 18 +
spec/{ => unit}/request2_spec.rb | 20 +-
spec/unit/request_spec.rb | 917 +++++++++++++++++++++
spec/{ => unit}/resource_spec.rb | 58 +-
spec/{ => unit}/response_spec.rb | 120 +--
spec/{ => unit}/restclient_spec.rb | 10 +-
spec/unit/windows/root_certs_spec.rb | 22 +
62 files changed, 2583 insertions(+), 1325 deletions(-)
create mode 100644 .gitignore
create mode 100644 .rspec
create mode 100644 .travis.yml
create mode 100644 AUTHORS
create mode 100644 Gemfile
create mode 100644 LICENSE
delete mode 100644 VERSION
delete mode 100644 debian/patches/0001_fix-set-cookie-CVE-2015-1820.patch
delete mode 100644 debian/patches/series
create mode 100644 debian/ruby-tests.rake
delete mode 100644 debian/ruby-tests.rb
delete mode 100644 lib/restclient/net_http_ext.rb
create mode 100644 lib/restclient/platform.rb
create mode 100644 lib/restclient/version.rb
create mode 100644 lib/restclient/windows.rb
create mode 100644 lib/restclient/windows/root_certs.rb
create mode 100644 rest-client.gemspec
create mode 100644 rest-client.windows.gemspec
delete mode 100644 spec/base.rb
create mode 100644 spec/integration/capath_digicert/244b5494.0
create mode 100644 spec/integration/capath_digicert/81b9768f.0
create mode 100644 spec/integration/capath_digicert/README
create mode 100644 spec/integration/capath_digicert/digicert.crt
copy spec/integration/{certs/verisign.crt => capath_verisign/415660c1.0} (100%)
copy spec/integration/{certs/verisign.crt => capath_verisign/7651b327.0} (100%)
create mode 100644 spec/integration/capath_verisign/README
copy spec/integration/{certs => capath_verisign}/verisign.crt (100%)
create mode 100644 spec/integration/certs/digicert.crt
delete mode 100644 spec/integration/certs/equifax.crt
rename spec/{ => integration}/integration_spec.rb (68%)
delete mode 100644 spec/master_shake.jpg
delete mode 100644 spec/raw_response_spec.rb
delete mode 100644 spec/request_spec.rb
create mode 100644 spec/spec_helper.rb
rename spec/{ => unit}/abstract_response_spec.rb (71%)
rename spec/{ => unit}/exceptions_spec.rb (72%)
create mode 100644 spec/unit/master_shake.jpg
rename spec/{ => unit}/payload_spec.rb (83%)
create mode 100644 spec/unit/raw_response_spec.rb
rename spec/{ => unit}/request2_spec.rb (82%)
create mode 100644 spec/unit/request_spec.rb
rename spec/{ => unit}/resource_spec.rb (79%)
rename spec/{ => unit}/response_spec.rb (63%)
rename spec/{ => unit}/restclient_spec.rb (90%)
create mode 100644 spec/unit/windows/root_certs_spec.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-rest-client.git
More information about the Pkg-ruby-extras-commits
mailing list