[DRE-commits] [ruby-ridley] branch master updated (7dffa74 -> 356bc7a)

Lucas Kanashiro kanashiro.duarte at gmail.com
Fri Mar 4 19:00:37 UTC 2016


This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a change to branch master
in repository ruby-ridley.

      from  7dffa74   Run wrap-and-sort on packaging files
      adds  369a205   Imported Upstream version 4.4.3
       new  acbc992   Merge tag 'upstream/4.4.3'
       new  bda539e   Update d/changelog: new upstream version 4.4.3
       new  cd95d40   debian/patches: refresh and drop already applied patches
       new  7f6d691   debian/control: add dependency (build and runtime) on ruby-chef-config
       new  3edd012    debian/control: add dependency (build and runtime) on ruby-varia-model
       new  cc2f089   Create patch to make dependency on varia-model >= 0.4.0
       new  44a3824   debian/control: use secure uri in Vcs-Git field
       new  ece2ba4   Declare compliance with Debian policy 3.9.7
       new  7be45a4   Prepare version 4.4.3-1 to unstable
       new  356bc7a   Merge branch 'master' of git+ssh://git.debian.org/git/pkg-ruby-extras/ruby-ridley

The 10 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:
 .travis.yml                                        |   45 +-
 CHANGELOG.md                                       |   33 +
 Gemfile                                            |    2 +-
 README.md                                          |   10 +-
 debian/changelog                                   |   14 +
 debian/control                                     |    6 +
 ...specs-to-RSpec-3.0.4-syntax-with-Transpec.patch | 3595 --------------------
 .../0003-Disable-tests-that-require-network.patch  |   10 +-
 ...sts-depending-on-old-chef-zero-behaviours.patch |    8 +-
 .../0005-Update-varia-model-dependency.patch       |   26 +
 debian/patches/series                              |    6 +-
 lib/ridley.rb                                      |    5 +
 lib/ridley/chef/config.rb                          |  108 +-
 lib/ridley/chef/cookbook.rb                        |    2 +-
 lib/ridley/connection.rb                           |    3 +-
 lib/ridley/errors.rb                               |    1 +
 lib/ridley/httpclient_ext.rb                       |    3 +
 lib/ridley/httpclient_ext/cookie.rb                |   13 +
 lib/ridley/middleware/gzip.rb                      |   18 -
 lib/ridley/mixin/params_validate.rb                |    4 +
 lib/ridley/version.rb                              |    2 +-
 metadata.yml                                       |   55 +-
 ridley.gemspec                                     |    7 +-
 spec/acceptance/client_resource_spec.rb            |   24 +-
 spec/acceptance/cookbook_resource_spec.rb          |   30 +-
 spec/acceptance/data_bag_item_resource_spec.rb     |   28 +-
 spec/acceptance/data_bag_resource_spec.rb          |    8 +-
 spec/acceptance/environment_resource_spec.rb       |   28 +-
 spec/acceptance/node_resource_spec.rb              |   30 +-
 spec/acceptance/role_resource_spec.rb              |   28 +-
 spec/acceptance/sandbox_resource_spec.rb           |    6 +-
 spec/acceptance/search_resource_spec.rb            |   12 +-
 spec/acceptance/user_resource_spec.rb              |   42 +-
 spec/support/each_matcher.rb                       |    4 +-
 spec/support/filepath_matchers.rb                  |    4 +-
 spec/support/shared_examples/ridley_resource.rb    |   78 +-
 spec/unit/ridley/chef/cookbook/metadata_spec.rb    |   16 +-
 .../unit/ridley/chef/cookbook/syntax_check_spec.rb |   30 +-
 spec/unit/ridley/chef/cookbook_spec.rb             |  242 +-
 spec/unit/ridley/chef/digester_spec.rb             |    4 +-
 spec/unit/ridley/chef_object_spec.rb               |   70 +-
 .../unit/ridley/chef_objects/client_object_spec.rb |    4 +-
 .../ridley/chef_objects/cookbook_object_spec.rb    |   24 +-
 .../chef_objects/data_bag_item_object_spec.rb      |   14 +-
 .../ridley/chef_objects/data_bag_object_spec.rb    |    5 +-
 .../ridley/chef_objects/environment_object_spec.rb |   20 +-
 spec/unit/ridley/chef_objects/node_object_spec.rb  |   56 +-
 spec/unit/ridley/chef_objects/role_object_spec.rb  |   20 +-
 .../ridley/chef_objects/sandbox_object_spec.rb     |   12 +-
 spec/unit/ridley/client_spec.rb                    |   80 +-
 spec/unit/ridley/connection_spec.rb                |   18 +-
 spec/unit/ridley/errors_spec.rb                    |    6 +-
 spec/unit/ridley/middleware/chef_auth_spec.rb      |    4 +-
 spec/unit/ridley/middleware/chef_response_spec.rb  |   58 +-
 spec/unit/ridley/middleware/gzip_spec.rb           |   59 -
 spec/unit/ridley/middleware/parse_json_spec.rb     |   28 +-
 spec/unit/ridley/mixins/from_file_spec.rb          |    6 +-
 spec/unit/ridley/resource_spec.rb                  |   10 +-
 .../ridley/resources/cookbook_resource_spec.rb     |   20 +-
 .../resources/data_bag_item_resource_spec.rb       |    2 +-
 .../ridley/resources/data_bag_resource_spec.rb     |    9 +-
 .../ridley/resources/environment_resource_spec.rb  |    8 +-
 spec/unit/ridley/resources/role_resource_spec.rb   |    2 +-
 .../unit/ridley/resources/sandbox_resource_spec.rb |   14 +-
 spec/unit/ridley/resources/search_resource_spec.rb |   44 +-
 spec/unit/ridley/sandbox_uploader_spec.rb          |    6 +-
 spec/unit/ridley_spec.rb                           |   42 +-
 67 files changed, 848 insertions(+), 4383 deletions(-)
 delete mode 100644 debian/patches/0002-Convert-specs-to-RSpec-3.0.4-syntax-with-Transpec.patch
 create mode 100644 debian/patches/0005-Update-varia-model-dependency.patch
 create mode 100644 lib/ridley/httpclient_ext.rb
 create mode 100644 lib/ridley/httpclient_ext/cookie.rb
 delete mode 100644 lib/ridley/middleware/gzip.rb
 delete mode 100644 spec/unit/ridley/middleware/gzip_spec.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-ridley.git



More information about the Pkg-ruby-extras-commits mailing list