debian/0000755000000000000000000000000012176470557007204 5ustar debian/rules0000755000000000000000000000100612061300057010235 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 # # If you need to specify the .gemspec (eg there is more than one) #export DH_RUBY_GEMSPEC=gem.gemspec %: dh $@ --buildsystem=ruby --with ruby override_dh_installchangelogs: dh_installchangelogs CHANGELOG.rdoc debian/watch0000644000000000000000000000015112061266702010216 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/text-table .*/text-table-(.*).tar.gz debian/source/0000755000000000000000000000000012176470334010475 5ustar debian/source/format0000644000000000000000000000001412061266702011676 0ustar 3.0 (quilt) debian/ruby-text-table.docs0000644000000000000000000000001412061270317013062 0ustar README.rdoc debian/ruby-tests.rake0000644000000000000000000000022312061270377012155 0ustar require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = './spec/**/*_spec.rb' end task :default => :spec debian/copyright0000644000000000000000000000250012061267154011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: text-table Source: https://github.com/aptinio/text-table Files: * Copyright: 2009 Aaron Tini License: Expat Files: debian/* Copyright: 2012 Cédric Boutillier 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/control0000644000000000000000000000164612162775773010621 0ustar Source: ruby-text-table Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Cédric Boutillier Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), ruby-rspec, rake Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-text-table.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/ruby-text-table.git;a=summary Homepage: http://github.com/aptinio/text-table XS-Ruby-Versions: all Package: ruby-text-table Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Description: feature-rich, easy-to-use plain text table formatter in Ruby This Ruby library allows one to easily create and format plain text tables. . It offers support for table headers and footers, and various format and alignment options. debian/patches/0000755000000000000000000000000012162776343010630 5ustar debian/patches/series0000644000000000000000000000003312162776335012042 0ustar fix_specs_for_ruby18.patch debian/patches/fix_specs_for_ruby18.patch0000644000000000000000000000105612162775402015711 0ustar Description: Fix Hash syntax in specs for compatibility with Ruby 1.8 Author: Aaron Tinio Origin: https://github.com/aptinio/text-table/commit/e50d0feed8301f503eee872b345edb976c11110b.patch Reviewed-by: Cédric Boutillier Last-Update: 2013-06-27 --- a/spec/integration/performance_spec.rb +++ b/spec/integration/performance_spec.rb @@ -13,7 +13,7 @@ GC.start Benchmark.realtime do - Text::Table.new(rows: Array.new(num)).to_s + Text::Table.new(:rows => Array.new(num)).to_s end end end debian/compat0000644000000000000000000000000212061266702010366 0ustar 7 debian/changelog0000644000000000000000000000113612176470557011057 0ustar ruby-text-table (1.2.3-1) unstable; urgency=low * Imported Upstream version 1.2.3 * Use canonical URI in Vcs-* fields * debian/patches: + drop remove_requirement_on_spec.patch, not needed anymore + add upstream fix_specs_for_ruby18.patch -- Cédric Boutillier Thu, 01 Aug 2013 16:32:12 +0200 ruby-text-table (1.2.2-1) unstable; urgency=low * Initial release (Closes: #695561) * add debian/patches/remove_requirement_on_spec.patch, to adapt specs to a more recent version of RSpec. -- Cédric Boutillier Mon, 10 Dec 2012 05:52:48 +0100