debian/0000755000000000000000000000000011772274047007201 5ustar debian/rules0000755000000000000000000000070111677355113010255 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 debian/watch0000644000000000000000000000023211707641005010215 0ustar version=3 opts="dversionmangle=s/\+git[0-9a-f]*//" \ http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/instantiator .*/instantiator-(.*).tar.gz debian/source/0000755000000000000000000000000011700117702010462 5ustar debian/source/format0000644000000000000000000000001411677355113011705 0ustar 3.0 (quilt) debian/ruby-test-files.yaml0000644000000000000000000000013511677355113013120 0ustar --- - test/instantiator_test.rb - test/method_invocation_sink_test.rb - test/test_helper.rb debian/copyright0000644000000000000000000000250511707641005011124 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: instantiator Source: https://github.com/floehopper/instantiator Files: * Copyright: 2011 James Mead License: Expat Files: debian/* Copyright: 2011 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/control0000644000000000000000000000162011772274047010603 0ustar Source: ruby-instantiator Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Cédric Boutillier DM-Upload-Allowed: yes Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), ruby-blankslate Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-instantiator.git Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-instantiator.git;a=summary Homepage: https://github.com/floehopper/instantiator XS-Ruby-Versions: all Package: ruby-instantiator Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-blankslate Description: Ruby library to instantiate an arbitrary class This Ruby library permits the instantiation of an arbitrary class without knowing anything about the constructor. debian/patches/0000755000000000000000000000000011700117702010611 5ustar debian/patches/series0000644000000000000000000000011011700117702012016 0ustar 0100_remove_rubygems_bundler_stuff.patch 0200_fix_path_in_require.patch debian/patches/0100_remove_rubygems_bundler_stuff.patch0000644000000000000000000000050011700117702020421 0ustar Description: Remove requirements on bundler and rubygems Author: Cédric Boutillier Forwarded: no Last-Update: 2011-12-31 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,5 +1 @@ -require "rubygems" -require "bundler" -Bundler.setup(:default, :development) - require "test/unit" debian/patches/0200_fix_path_in_require.patch0000644000000000000000000000161311700117702016320 0ustar Description: Fix path in the require statement of the tests. The test/ directory is not in $LOAD_PATH. Author: Cédric Boutillier Last-Update: 2012-01-01 --- a/test/instantiator_test.rb +++ b/test/instantiator_test.rb @@ -1,4 +1,4 @@ -require "test_helper" +require "test/test_helper" require "instantiator" class InstantiatorTest < Test::Unit::TestCase @@ -202,4 +202,4 @@ assert_equal "Proc.instantiate is not yet supported", e.message end -end \ No newline at end of file +end --- a/test/method_invocation_sink_test.rb +++ b/test/method_invocation_sink_test.rb @@ -1,4 +1,4 @@ -require "test_helper" +require "test/test_helper" require "instantiator" class MethodInvocationSinkTest < Test::Unit::TestCase @@ -24,4 +24,4 @@ def test_should_return_instance_of_hash assert_instance_of Hash, @sink.to_hash end -end \ No newline at end of file +end debian/compat0000644000000000000000000000000211677355113010375 0ustar 7 debian/ruby-instantiator.docs0000644000000000000000000000001211707641005013530 0ustar README.md debian/changelog0000644000000000000000000000121511772274047011052 0ustar ruby-instantiator (0.0.6+git9cbbe70-2) unstable; urgency=low * Bump build dependency on gem2deb to >= 0.3.0~ -- Cédric Boutillier Tue, 26 Jun 2012 10:51:51 +0200 ruby-instantiator (0.0.6+git9cbbe70-1) unstable; urgency=low * Initial release (Closes: #653927) * 0100_remove_rubygems_bundler_stuff.patch: remove require statements on rubygems and bundler from tests. * 0200_fix_path_in_require.patch: fix path of test_helper in require statement of tests. * Package git snapshot to get upstream COPYING.txt file. -- Cédric Boutillier Wed, 25 Jan 2012 00:28:19 +0100