debian/0000755000000000000000000000000011772312346007174 5ustar debian/rules0000755000000000000000000000070111677350676010266 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/watch0000644000000000000000000000015711677350676010244 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/introspection .*/introspection-(.*).tar.gz debian/source/0000755000000000000000000000000011700371374010471 5ustar debian/source/format0000644000000000000000000000001411677350676011716 0ustar 3.0 (quilt) debian/ruby-test-files.yaml0000644000000000000000000000022111677350676013125 0ustar --- - test/class_snapshot_test.rb - test/instance_snapshot_test.rb - test/module_snapshot_test.rb - test/snapshot_test.rb - test/test_helper.rb debian/copyright0000644000000000000000000000250711700371374011130 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: introspection Source: https://github.com/floehopper/introspection 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/control0000644000000000000000000000213511772312345010577 0ustar Source: ruby-introspection 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, ruby-metaclass (>= 0.0.1~), ruby-instantiator (>= 0.0.3~) Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-introspection.git Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-introspection.git;a=summary Homepage: https://github.com/floehopper/introspection XS-Ruby-Versions: all Package: ruby-introspection Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-metaclass (>= 0.0.1~), ruby-instantiator (>= 0.0.3~) Description: Ruby library for the inspection of method definitions on objects This library allows a dynamic inspection of the hierarchy of method definitions on a Ruby object. It can be used in particular to detect undesirable changes to classes made by other libraries. debian/patches/0000755000000000000000000000000011700371374010620 5ustar debian/patches/series0000644000000000000000000000011011700371374012025 0ustar 0100_remove_rubygems_bundler_stuff.patch 0200_fix_path_in_require.patch debian/patches/0100_remove_rubygems_bundler_stuff.patch0000644000000000000000000000126111700371374020435 0ustar Description: remove requirements on rubygems and bundler Author: Cédric Boutillier Forwarded: No Index: ruby-introspection/test/test_helper.rb =================================================================== --- ruby-introspection.orig/test/test_helper.rb 2011-12-30 16:05:06.000000000 +0100 +++ ruby-introspection/test/test_helper.rb 2011-12-30 16:05:06.000000000 +0100 @@ -1,6 +1,3 @@ -require "rubygems" -require "bundler/setup" - require "introspection" require "test/unit" @@ -27,4 +24,4 @@ include Introspection::TestHelper include Introspection::LocalAssertions include Introspection::Assertions -end \ No newline at end of file +end debian/patches/0200_fix_path_in_require.patch0000644000000000000000000000446311700371374016335 0ustar Description: Fix relative path for test_helper in require statements As test/ is not in $LOAD_PATH, use "test/test_helper" in require statements instead of just "test_helper". Author: Cédric Boutillier Forwarded: no Index: ruby-introspection/test/instance_snapshot_test.rb =================================================================== --- ruby-introspection.orig/test/instance_snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 +++ ruby-introspection/test/instance_snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 @@ -1,4 +1,4 @@ -require "test_helper" +require "test/test_helper" class InstanceSnapshotTest < Test::Unit::TestCase @@ -119,4 +119,4 @@ end end -end \ No newline at end of file +end Index: ruby-introspection/test/class_snapshot_test.rb =================================================================== --- ruby-introspection.orig/test/class_snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 +++ ruby-introspection/test/class_snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 @@ -1,4 +1,4 @@ -require "test_helper" +require "test/test_helper" class ClassSnapshotTest < Test::Unit::TestCase @@ -84,4 +84,4 @@ end end -end \ No newline at end of file +end Index: ruby-introspection/test/module_snapshot_test.rb =================================================================== --- ruby-introspection.orig/test/module_snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 +++ ruby-introspection/test/module_snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 @@ -1,4 +1,4 @@ -require "test_helper" +require "test/test_helper" class ModuleSnapshotTest < Test::Unit::TestCase @@ -37,4 +37,4 @@ assert_method_exists(mod, superdupermod, :foo, visibility) end end -end \ No newline at end of file +end Index: ruby-introspection/test/snapshot_test.rb =================================================================== --- ruby-introspection.orig/test/snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 +++ ruby-introspection/test/snapshot_test.rb 2011-12-30 16:14:51.000000000 +0100 @@ -1,4 +1,4 @@ -require "test_helper" +require "test/test_helper" require "blankslate" class SnapshotTest < Test::Unit::TestCase @@ -52,4 +52,4 @@ assert_nothing_raised { Snapshot.new(BlankSlate.new) } end -end \ No newline at end of file +end debian/compat0000644000000000000000000000000211677350676010406 0ustar 7 debian/changelog0000644000000000000000000000114511772312346011047 0ustar ruby-introspection (0.0.2-2) unstable; urgency=low * Bump build dependency on gem2deb to >= 0.3.0~ -- Cédric Boutillier Tue, 26 Jun 2012 12:54:30 +0200 ruby-introspection (0.0.2-1) unstable; urgency=low * Initial release (Closes: #654247) * debian/patches/0100_remove_rubygems_bundler_stuff.patch: remove requirements on rubygems and bundler Ruby libraries * debian/patches/0200_fix_path_in_require.patch: fix relative path of test_helper.rb in require statements of tests -- Cédric Boutillier Fri, 30 Dec 2011 16:14:56 +0100 debian/ruby-introspection.docs0000644000000000000000000000001211700371374013713 0ustar README.md