debian/0000755000000000000000000000000012247171465007177 5ustar debian/ruby-rack-test.docs0000644000000000000000000000001412133040067012703 0ustar README.rdoc debian/copyright0000644000000000000000000000254112152655566011140 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: rack-test Source: http://github.com/brynary/rack-test Files: * Copyright: 2008-2009 Bryan Helmkamp License: Expat Files: debian/* Copyright: 2011 Youhei SASAKI License: Expat License: Expat 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/rules0000755000000000000000000000076412133040067010251 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.8 ruby1.9.1 require-rubygems #export DH_RUBY_IGNORE_TESTS=require-rubygems # # If you need to specify the .gemspec (eg there is more than one) export DH_RUBY_GEMSPEC=rack-test.gemspec %: dh $@ --buildsystem=ruby --with ruby debian/source/0000755000000000000000000000000012133040067010462 5ustar debian/source/format0000644000000000000000000000001412133040067011670 0ustar 3.0 (quilt) debian/control0000644000000000000000000000211112247171436010573 0ustar Source: ruby-rack-test Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Youhei SASAKI Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), rake, ruby-rack (>= 1.0) | ruby-rack1.4, ruby-sinatra, ruby-rspec, ruby-rack-protection Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-rack-test.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/ruby-rack-test.git;a=summary Homepage: http://github.com/brynary/rack-test XS-Ruby-Versions: all Package: ruby-rack-test Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-rack (>= 1.0) | ruby-rack1.4 Description: Simple testing API built on Rack Rack::Test is a small, simple testing API for Rack apps. It can be used on its own or as a reusable starting point for Web frameworks and testing libraries to build on. Most of its initial functionality is an extraction of Merb 1.0's request helpers feature. debian/watch0000644000000000000000000000014712133040067010215 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/rack-test .*/rack-test-(.*).tar.gz debian/ruby-tests.rake0000644000000000000000000000025212133040067012146 0ustar require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.skip_bundler = true t.pattern = "./**/*_spec.rb" end task :default => :spec debian/changelog0000644000000000000000000000257612247171465011063 0ustar ruby-rack-test (0.6.2-2) unstable; urgency=low Team upload. [ Cédric Boutillier ] * debian/control: remove obsolete DM-Upload-Allowed flag * use canonical URI in Vcs-* fields * debian/copyright: use DEP5 copyright-format/1.0 official URL for Format field [ Christian Hofstaedtler ] * Add alternative dependency on ruby-rack1.4 * Update Standards-Version to 3.9.5 (no changes) -- Christian Hofstaedtler Mon, 02 Dec 2013 20:48:06 +0100 ruby-rack-test (0.6.2-1) unstable; urgency=low * Imported Upstream version 0.6.2 -- Youhei SASAKI Thu, 29 Nov 2012 01:13:43 +0900 ruby-rack-test (0.6.1-3) unstable; urgency=low * Fix FTBFS: Add ruby-rack-protection into Build-Depends Thanks to Lucas Nussbaum (Closes: #680810) * Bump Standard Version: 3.9.3 -- Youhei SASAKI Mon, 09 Jul 2012 22:05:13 +0900 ruby-rack-test (0.6.1-2) unstable; urgency=low * Bump build dependency on gem2deb to >= 0.3.0~ -- Antonio Terceiro Mon, 25 Jun 2012 14:34:23 -0300 ruby-rack-test (0.6.1-1) unstable; urgency=low * Team upload. * New upstream release. -- Lucas Nussbaum Wed, 21 Dec 2011 10:59:43 +0100 ruby-rack-test (0.6.0-1) unstable; urgency=low * Initial release (Closes: #635388) -- Youhei SASAKI Tue, 26 Jul 2011 01:51:10 +0900 debian/compat0000644000000000000000000000000212133040067010360 0ustar 7 debian/patches/0000755000000000000000000000000012133040067010611 5ustar debian/patches/series0000644000000000000000000000004712133040067012027 0ustar 0001-Remove-Bundler-Dependencies.patch debian/patches/0001-Remove-Bundler-Dependencies.patch0000644000000000000000000000117112133040067017422 0ustar From: Debian Ruby Extras Maintainers Date: Mon, 9 Jul 2012 22:10:53 +0900 Subject: Remove Bundler Dependencies Signed-off-by: Youhei SASAKI --- spec/spec_helper.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 7461461..744eaf5 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,8 +1,7 @@ require "rubygems" -require "bundler/setup" - require "rack" require "rspec" +require "sinatra" Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}