debian/0000755000000000000000000000000012257726075007203 5ustar debian/source/0000755000000000000000000000000012257726041010474 5ustar debian/source/format0000644000000000000000000000001412257726041011702 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000047112257726075011057 0ustar ruby-specinfra (0.1.1-1) unstable; urgency=low * New upstream release. -- KURASHIKI Satoru Sun, 29 Dec 2013 13:50:29 +0900 ruby-specinfra (0.0.16-1) unstable; urgency=medium * Initial release (Closes: #732350) -- KURASHIKI Satoru Tue, 17 Dec 2013 12:49:51 +0900 debian/copyright0000644000000000000000000000265512257726041011137 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: specinfra Source: http://github.com/serverspec/specinfra Files: * Copyright: 2013 Gosuke Miyashita License: MIT Files: debian/* Copyright: 2013 KURASHIKI Satoru License: MIT Comment: the Debian packaging is licensed under the same terms as the original package. License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/rules0000755000000000000000000000070112257726041010252 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 # # Uncomment to ignore all test failures (but the tests will run anyway) #export DH_RUBY_IGNORE_TESTS=all # # Uncomment to ignore some test failures (but the tests will run anyway). # Valid values: #export DH_RUBY_IGNORE_TESTS=ruby1.9.1 ruby2.0 require-rubygems # # If you need to specify the .gemspec (eg there is more than one) #export DH_RUBY_GEMSPEC=gem.gemspec %: dh $@ --buildsystem=ruby --with ruby debian/ruby-specinfra.docs0000644000000000000000000000001212257726041012770 0ustar README.md debian/watch0000644000000000000000000000014712257726041010227 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/specinfra .*/specinfra-(.*).tar.gz debian/control0000644000000000000000000000166012257726041010602 0ustar Source: ruby-specinfra Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: KURASHIKI Satoru Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.6.1~), rake, ruby-rspec, lsb-release Standards-Version: 3.9.5 Vcs-Git: https://github.com/lurdan/serverspec.git Vcs-Browser: https://github.com/lurdan/specinfra/tree/dpkg Homepage: http://github.com/serverspec/specinfra/ XS-Ruby-Versions: all Package: ruby-specinfra Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, rake, ruby-rspec, lsb-release # bundler (~> 1.3, development) Description: Common layer for serverspec and configspec This package is backend library for ruby-serverspec, which was extracted from serverspec for further abstracction, intended to be used by another configuration management tools. debian/compat0000644000000000000000000000000212257726041010372 0ustar 7 debian/ruby-tests.rake0000644000000000000000000000065312257726041012165 0ustar require 'rspec/core/rake_task' task :default => 'spec:all' namespace :spec do task :all => [ :helper, :backend, :configuration ] RSpec::Core::RakeTask.new(:helper) do |t| t.pattern = "spec/helper/*_spec.rb" end RSpec::Core::RakeTask.new(:backend) do |t| t.pattern = "spec/backend/*/*_spec.rb" end RSpec::Core::RakeTask.new(:configuration) do |t| t.pattern = "spec/configuration_spec.rb" end end