debian/0000755000000000000000000000000012161045044007163 5ustar debian/compat0000644000000000000000000000000212155432740010367 0ustar 7 debian/watch0000644000000000000000000000014112155432740010216 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/facets .*/facets-(.*).tar.gz debian/source/0000755000000000000000000000000012155432740010471 5ustar debian/source/format0000644000000000000000000000001412155432740011677 0ustar 3.0 (quilt) debian/ruby-facets-doc.docs0000644000000000000000000000006312160730544013030 0ustar README.rdoc HISTORY.rdoc NOTICE.rdoc build-doc/api debian/changelog0000644000000000000000000000524312161045007011040 0ustar ruby-facets (2.9.3-1) unstable; urgency=low * New upstream release: - rakefile is gone, switched back to setuprb method - recreated documention build rules and adapted to new paths * Updated copyright file. * Increased Standards-Version to 3.9.4 (no changes). * Removed transitional libfacets-* package and obsolete relations. * Use system JQuery library instead of embedded one for documentation. -- Marc Dequènes (Duck) Fri, 21 Jun 2013 14:41:38 +0200 ruby-facets (2.9.2-1) unstable; urgency=low * New upstream release. * Switched to gem2deb packaging style. * Switched to the new git repository. * Removed all patches, they are obsolete. * Updated copyright file. -- Marc Dequènes (Duck) Tue, 03 Jan 2012 03:35:44 +0100 libfacets-ruby (2.7.0-3) unstable; urgency=high * Several fixes to get general loading working (Closes: 595317): + Added patch to fix broken require in module/attr_toggler + Added patch to correct missing alias in module/attr * Increased Standards-Version to 3.9.1 (no changes). -- Marc Dequènes (Duck) Fri, 03 Sep 2010 10:43:19 +0200 libfacets-ruby (2.7.0-2) unstable; urgency=high * Added patch to fix a broken method aliasing for String (Closes: 593077). * Fixed merge of components (core, lore) installation, causing problem for 'lib/core/facets/module'. -- Marc Dequènes (Duck) Fri, 20 Aug 2010 11:05:38 +0200 libfacets-ruby (2.7.0-1) unstable; urgency=low [ Paul van Tilburg ] * Added debian/watch. [ Marc Dequènes (Duck) ] * New upstream release: + removed the 'lore' layout part and doc-base. + updated copyright file * Adapted rdoc generation to fit well with recent ruby-pkg-tools. * Added support for Ruby 1.9.1. * Improved 'debian/copyright' to be more consistant with DEP-5 draft. * Switched to compat level 7. * Switched to dpkg-source 3.0 (quilt) format. * Increased Standards-Version to 3.8.4 (no changes). -- Marc Dequènes (Duck) Sat, 20 Mar 2010 15:44:26 +0100 libfacets-ruby (2.5.2+git20090627-ef2fec+dfsg1-1) unstable; urgency=low * Initial release. * Removed the 'htmlfilter' module which license is incompatible, to respect DFSG (see copyright file). * Also removed left over '.config' directory from source (breaking build). * Deactivated graph generation du to bug in rdoc (see #462463) using a Build-Conflicts-Indep on graphviz and calling rdoc manually (as dh_rdoc fails). * Fixed broken installation path due to source layout incompatible with setup.rb. -- Marc Dequènes (Duck) Sat, 27 Jun 2009 19:00:28 +0200 debian/README.source0000644000000000000000000000101212155432740011342 0ustar For general purpose Team Packaging guidelines, see: http://wiki.debian.org/Teams/Ruby/Packaging The following is the maintainer's local policy. Patches to the upstream code are managed in debian/patches/. It is easier to manage everything in git and use a single debian patch file, but it does not allow easy retrieval of a proper rebased patch and the patch's history cannot be sorted out quickly. Methods like gbp-pq are interesting but also have drawbacks, so it's how it gonna be handled in the package for now. debian/ruby-tests.rb0000644000000000000000000000073512155432740011644 0ustar # FIXME # there's a spec/ or a test/ directory in the upstream source, but # no test suite was defined in the Gem specification. It would be # a good idea to define it here so the package gets tested at build time. # Examples: # $: << 'lib' << '.' # Dir['{spec,test}/**/*.rb'].each { |f| require f } # # require 'test/ts_foo.rb' # # require 'rbconfig' # ruby = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name']) # exec("#{ruby} -I. test/runtests.rb") debian/rules0000755000000000000000000000351212161043445010247 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 DOC_DIR = build-doc/api %: dh $@ --buildsystem=rubysetuprb --with ruby override_dh_auto_configure: ln -s /usr/lib/ruby/vendor_ruby/setup.rb . dh_auto_configure override_dh_auto_build: dh_auto_build mkdir -p $(DOC_DIR) ln -s ./core/facets lib/facets # workaround rdoc -a -t 'Facets Core API' -f darkfish -m README.rdoc -o '$(DOC_DIR)/core' README.rdoc lib/facets rm lib/facets ln -s ./standard/facets lib/facets # workaround rdoc -a -t 'Facets Standard API' -f darkfish -m README.rdoc -o '$(DOC_DIR)/standard' README.rdoc lib/facets rm lib/facets LIB_INSTALL_PATH=debian/ruby-facets/usr/lib/ruby/vendor_ruby override_dh_auto_install: dh_auto_install # workaround mv ${LIB_INSTALL_PATH}/core/facets.rb ${LIB_INSTALL_PATH}/ mkdir ${LIB_INSTALL_PATH}/facets for p in core standard; do \ cp -r ${LIB_INSTALL_PATH}/$${p}/facets/* ${LIB_INSTALL_PATH}/facets/;\ rm -rf ${LIB_INSTALL_PATH}/$${p};\ done override_dh_installdocs: dh_installdocs # use the system library rm debian/ruby-facets-doc/usr/share/doc/ruby-facets-doc/api/core/js/jquery.js dh_link -p ruby-facets-doc usr/share/javascript/jquery/jquery.js usr/share/doc/ruby-facets-doc/api/core/js/jquery.js rm debian/ruby-facets-doc/usr/share/doc/ruby-facets-doc/api/standard/js/jquery.js dh_link -p ruby-facets-doc usr/share/javascript/jquery/jquery.js usr/share/doc/ruby-facets-doc/api/standard/js/jquery.js override_dh_auto_clean: dh_auto_clean rm -rf setup.rb build-doc debian/copyright0000644000000000000000000005174612160724667011151 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Ruby Facets Upstream-Contact: Thomas Sawyer Source: http://rubygems.org/gems/facets Comment: Please keep this level of details in the entries below, listing individual files instead of wildcards, to be able to track files better. . Files in qed/ are generated documentation from lib/ files and their corresponding licence is not repeated. Files: * Copyright: © 2004-2013 Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Comment: main copyright holder Files: debian/* Copyright: © 2009-2010 Marc Dequènes (Duck) License: GPL-3+ Comment: Debian packaging License: Ruby Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see COPYING.txt file), or the conditions below: . 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. . 2. You may modify your copy of the software in any way, provided that you do at least ONE of the following: . a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or by allowing the author to include your modifications in the software. . b) use the modified software only within your corporation or organization. . c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided. . d) make other distribution arrangements with the author. . 3. You may distribute the software in object code or executable form, provided that you do at least ONE of the following: . a) distribute the executables and library files of the software, together with instructions (in the manual page or equivalent) on where to get the original distribution. . b) accompany the distribution with the machine-readable source of the software. . c) give non-standard executables non-standard names, with instructions on where to get the original software distribution. . d) make other distribution arrangements with the author. . 4. You may modify and include the part of the software into any other software (possibly commercial). But some files in the distribution are not written by the author, so that they are not under this terms. . They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some files under the ./missing directory. See each file for the copying condition. . 5. The scripts and library files supplied as input to or produced as output from the software do not automatically fall under the copyright of the software, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this software. . 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 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. License: GPL-2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: GPL-3+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. License: Rails 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. Files: lib/core/facets/proc/compose.rb Copyright: Dave License: Ruby or GPL-2 Files: lib/core/facets/proc/update.rb Copyright: Tim Pease License: Ruby or GPL-2 Files: lib/core/facets/class/to_proc.rb lib/core/facets/array/delete_unless.rb lib/core/facets/integer/odd.rb lib/core/facets/hash/delete_unless.rb lib/core/facets/hash/delete_values.rb Copyright: Daniel Schierbeck License: Ruby or GPL-2 Files: lib/core/facets/array/nonuniq.rb Copyright: Martin DeMello Thibaut Barrère License: Ruby or GPL-2 Files: lib/core/facets/array/before.rb lib/core/facets/dir/each_child.rb lib/core/facets/regexp/op_add.rb lib/core/facets/kernel/trap_chain.rb lib/standard/facets/find.rb Copyright: Tyler Rick License: Ruby or GPL-2 Files: lib/core/facets/array/combination.rb lib/core/facets/array/commonality.rb lib/core/facets/regexp/to_re.rb lib/core/facets/comparable/cap.rb lib/core/facets/comparable/clip.rb Copyright: Florian Gross License: Ruby or GPL-2 Files: lib/core/facets/array/rotate.rb Copyright: Florian Gross Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/array/probability.rb lib/core/facets/enumerable/frequency.rb Copyright: Brian Schröder License: Ruby or GPL-2 Files: lib/core/facets/array/entropy.rb Copyright: Derek License: Ruby or GPL-2 Files: lib/core/facets/hash/url_params.rb Copyright: Matt Kirk License: Ruby or GPL-2 Files: lib/core/facets/integer/factorial.rb Copyright: Malte Milatz License: Ruby or GPL-2 Files: lib/core/facets/array/select.rb lib/core/facets/string/tabto.rb lib/core/facets/string/tab.rb lib/core/facets/kernel/not_nil.rb lib/core/facets/enumerable/one.rb lib/core/facets/enumerable/none.rb lib/core/facets/enumerable/map_with_index.rb lib/core/facets/hash/swap.rb lib/core/facets/hash/alias.rb lib/core/facets/file/write.rb Copyright: Gavin Sinclair License: Ruby or GPL-2 Files: lib/core/facets/array/pad.rb Copyright: Richard Laugesen License: Ruby or GPL-2 Files: lib/core/facets/array/only.rb lib/core/facets/hash/select.rb lib/core/facets/module/instance_method_defined.rb lib/core/facets/file/writelines.rb Copyright: Gavin Sinclair Noah Gibbs License: Ruby or GPL-2 Files: lib/core/facets/array/permutation.rb Copyright: Shin-ichiro Hara License: Ruby or GPL-2 Files: lib/core/facets/array/product.rb Copyright: Thomas Hafner License: Ruby or GPL-2 Files: lib/core/facets/array/mode.rb Copyright: Robert Klemme License: Ruby or GPL-2 Files: lib/standard/facets/math/percentile.rb Copyright: Ben Koski License: Ruby or GPL-2 Files: lib/standard/facets/multipliers.rb Copyright: Rich Kilmer Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/standard/facets/multiton.rb Copyright: Christoph Rippel Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/module/method_clash.rb lib/core/facets/module/op.rb Copyright: Robert Dober Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/boolean.rb lib/core/facets/hash/zip.rb Copyright: Ara T. Howard Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/dir/recurse.rb lib/core/facets/integer/bitmask.rb lib/core/facets/string/rewrite.rb lib/core/facets/exception/detail.rb lib/core/facets/file/rewrite.rb lib/core/facets/file/sanitize.rb lib/core/facets/file/read_binary.rb lib/core/facets/file/append.rb lib/core/facets/file/create.rb Copyright: George Moschovitis License: Ruby or GPL-2 Files: lib/core/facets/dir/ascend.rb Copyright: Daniel Berger Jeffrey Schwab License: Ruby or GPL-2 Files: lib/core/facets/method/composition.rb Copyright: Mike Burns License: Ruby or GPL-2 Files: lib/core/facets/module/class_extend.rb Copyright: Daniel Schierbeck Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/symbol/to_proc.rb Copyright: Florian Gross Nobuhiro Imai License: Ruby or GPL-2 Files: lib/core/facets/string/similarity.rb Copyright: Derek Lewis License: Ruby or GPL-2 Files: lib/core/facets/string/expand_tab.rb Copyright: Gavin Sinclair Noah Gibbs GGaramuno License: Ruby or GPL-2 Files: lib/core/facets/string/edit_distance.rb Copyright: Paul Battley License: Ruby or GPL-2 Files: lib/core/facets/string/titlecase.rb Copyright: Eliazar Parra License: This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Files: lib/core/facets/string/start_with.rb Copyright: Juris Galang License: Ruby or GPL-2 Files: lib/core/facets/string/natcmp.rb Copyright: (C) 2003 by Alan Davies Martin Pool License: This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. . 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. . 3. This notice may not be removed or altered from any source distribution. Files: lib/core/facets/string/capitalized.rb Copyright: Phil Tomson License: Ruby or GPL-2 Files: lib/core/facets/string/indent.rb Copyright: Noah Gibbs mynyml License: Ruby or GPL-2 Files: lib/core/facets/string/op_sub.rb Copyright: Benjamin David Oakes License: Ruby or GPL-2 Files: lib/core/facets/string/random_binary.rb lib/standard/facets/digest/salted_digest.rb Copyright: Guido De Rosa License: Ruby or GPL-2 Files: lib/core/facets/string/word_wrap.rb Copyright: Gavin Kistner (Phrogz) Dayne Broderson License: Ruby or GPL-2 Files: lib/core/facets/nilclass/to_f.rb Copyright: Matz License: Ruby or GPL-2 Files: lib/core/facets/lazy.rb Copyright: (c) 2005 MenTaLguY License: Ruby or GPL-2 Files: lib/core/facets/kernel/meta_eval.rb lib/core/facets/kernel/meta_def.rb lib/core/facets/module/module_def.rb lib/core/facets/kernel/eigenclass.rb Copyright: WhyTheLuckyStiff License: Ruby or GPL-2 Files: lib/core/facets/kernel/returning.rb Copyright: Mikael Brockman License: Ruby or GPL-2 Files: lib/core/facets/kernel/require_relative.rb Copyright: Paul Brannan Pragmatic Programmers License: Ruby or GPL-2 Files: lib/core/facets/kernel/ergo.rb Copyright: Daniel DeLorme License: Ruby or GPL-2 Files: lib/core/facets/kernel/silence.rb lib/core/facets/process/daemon.rb lib/core/facets/file/atomic_write.rb lib/core/facets/module/mattr.rb Copyright: David Heinemeier Hansson License: MIT Files: lib/core/facets/exception/suppress.rb Copyright: David Heinemeier Hansson Thomas Sawyer (aka Trans) License: MIT Files: lib/core/facets/range/overlap.rb Copyright: Daniel Schierbeck Brandon Keepers License: Ruby or GPL-2 Files: lib/core/facets/numeric/spacing.rb Copyright: Victor H. Goff III License: Ruby or GPL-2 Files: lib/core/facets/matchdata/match.rb Copyright: Martin DeMello License: Ruby or GPL-2 Files: lib/core/facets/object/dup.rb Copyright: Dan Kubb License: Ruby or GPL-2 Files: lib/core/facets/enumerable/map_send.rb Copyright: Sean O'Halpin License: Ruby or GPL-2 Files: lib/core/facets/enumerable/cluster_by.rb lib/core/facets/enumerable/group_by.rb Copyright: Erik Veenstra License: Ruby or GPL-2 Files: lib/core/facets/enumerable/accumulate.rb Copyright: George Moshchovitis Daniel Emirikol License: Ruby or GPL-2 Files: lib/core/facets/enumerable/filter.rb Copyright: David Black Louis J Scoras License: Ruby or GPL-2 Files: lib/core/facets/exception/error_print.rb Copyright: Evgeniy Dolzhenko License: Ruby or GPL-2 Files: lib/core/facets/time/elapse.rb Copyright: Hal Fulton License: Ruby or GPL-2 Files: lib/core/facets/comparable/cmp.rb Copyright: Peter Vanbroekhoven License: Ruby or GPL-2 Files: lib/core/facets/hash/to_struct.rb Copyright: Daniel Berger License: Ruby or GPL-2 Files: lib/core/facets/hash/subset.rb Copyright: Alexey Petrushin License: Ruby or GPL-2 Files: lib/core/facets/hash/join.rb lib/core/facets/kernel/instance_exec.rb Copyright: Mauricio Fernandez License: Ruby or GPL-2 Files: lib/core/facets/hash/new_with.rb Copyright: Pit Capitan License: Ruby or GPL-2 Files: lib/core/facets/hash/to_mod.rb Copyright: Jay Fields License: Ruby or GPL-2 Files: lib/core/facets/hash/inverse.rb Copyright: Tilo Sloboda License: Ruby or GPL-2 Files: lib/core/facets/hash/collate.rb Copyright: Tilo Sloboda Gavin Kistner (Phrogz) License: Ruby or GPL-2 Files: lib/core/facets/to_hash.rb Copyright: Florian Gross Sandor Szücs License: Ruby or GPL-2 Files: lib/core/facets/module/set.rb Copyright: Blake Mizerany (Sinatra) License: Ruby or GPL-2 Files: lib/core/facets/module/alias_method_chain.rb Copyright: Bitsweat Rails Team License: Ruby or GPL-2 Files: lib/core/facets/enumerable/hashify.rb Copyright: Ronen Barzel License: Ruby or GPL-2 Files: lib/core/facets/filetest/root.rb Copyright: Jeffrey Schwab License: Ruby or GPL-2 Files: lib/core/facets/file/null.rb Copyright: Daniel Burger License: Ruby or GPL-2 Files: lib/core/facets/file/ext.rb lib/core/facets/enumerable/incase.rb Copyright: Lavir the Whiolet License: Ruby or GPL-2 Files: lib/core/facets/string/acronym.rb Copyright: Robert Fey License: Ruby or GPL-2 Files: lib/core/facets/kernel/y.rb Copyright: Michael Fellinger License: Ruby or GPL-2 Files: lib/core/facets/module/let.rb Copyright: Howard Yeh License: Ruby or GPL-2 Files: lib/core/facets/module/method_space.rb Copyright: Pit Captain License: Ruby or GPL-2 Files: lib/standard/facets/platform.rb Copyright: (c) 2007 Eric Hodel License: Ruby or GPL-2 Files: lib/standard/facets/pathname.rb Copyright: Jean-Denis Vauguet License: Ruby or GPL-2 Files: lib/standard/facets/fileutils/which.rb Copyright: Daniel J. Berger Michael Granger License: Ruby or GPL-2 Files: lib/standard/facets/fileutils/whereis.rb lib/standard/facets/fileutils/wc.rb Copyright: Daniel J. Berger License: Ruby or GPL-2 Files: lib/standard/facets/fileutils/safe_ln.rb Copyright: Jim Weirich License: Ruby or GPL-2 Files: lib/standard/facets/thread.rb Copyright: Sean O'Halpin Zucker License: Ruby or GPL-2 Files: lib/standard/facets/cloneable.rb Copyright: Ken Bloom License: Ruby or GPL-2 Files: lib/standard/facets/date.rb Copyright: Ken Kunz. Benjamin Oakes License: Ruby or GPL-2 Files: lib/standard/facets/ostruct.rb Copyright: Noah Gibbs Gavin Sinclair Alison Rowland Jamie Macey Mat Schaffer License: Ruby or GPL-2 Files: lib/standard/facets/shellwords.rb Copyright: Lavir the Whiolet Michel Martens License: MIT Files: lib/standard/facets/net/http.rb Copyright: Daniel Huckstep License: Ruby or GPL-2 Files: lib/standard/facets/basicobject.rb Copyright: 2004 by Jim Weirich (jim@weirichhouse.org). License: Ruby or GPL-2 Files: lib/core/facets/kernel/deep_clone.rb lib/core/facets/kernel/deep_copy.rb Copyright: Jan Molic License: Ruby or GPL-2 Files: lib/core/facets/hash/autonew.rb Copyright: Jan Molic Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/class/descendants.rb Copyright: Roger Pack License: Ruby or GPL-2 Files: lib/core/facets/denumerable.rb Copyright: Brian Candler Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/enumerable/graph.rb Copyright: Andrew Dudzik (adudzik) Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/enumerable/map_with.rb Copyright: Michael Kohl Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/enumerable/sum.rb Copyright: Dawid Marcin Grzesiak Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/hash/op_sub.rb Copyright: Xavier Shay Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/hash/rekey.rb Copyright: Gavin Kistner Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/hash/update_keys.rb Copyright: Evgeniy Dolzhenko Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/standard/facets/random.rb Copyright: Lavir the Whiolet Niel Spring George Moschovitis Ilmari Heikkinen Christian Neukirchen Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/kernel/respond.rb Copyright: Chris Wanstrath Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/core/facets/range/within.rb Copyright: Chris Kappler Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/standard/facets/fileutils/slice.rb Copyright: Shashank Date License: Ruby or GPL-2 Files: lib/core/facets/kernel/extend.rb Copyright: Marco Otte-Witte Thomas Sawyer (aka Trans) License: Ruby or GPL-2 Files: lib/standard/facets/math/linsolve.rb lib/standard/facets/math/sqsolve.rb Copyright: Josef Schugt License: Ruby or GPL-2 Files: lib/standard/facets/set.rb Copyright: Gavin Kistner (Phrogz) License: Ruby or GPL-2 debian/ruby-facets-doc.doc-base.facets-core0000644000000000000000000000044212155432740015751 0ustar Document: ruby-facets-core Title: Facets Core API Documentation Author: Thomas Sawyer (aka Trans) Abstract: Rdoc-generated API documentation. Section: Programming/Ruby Format: HTML Index: /usr/share/doc/ruby-facets-doc/api/core/index.html Files: /usr/share/doc/ruby-facets-doc/api/core/* debian/control0000644000000000000000000000311212161016720010562 0ustar Source: ruby-facets Section: ruby Priority: optional Maintainer: Marc Dequènes (Duck) Uploaders: Debian Ruby Extras Maintainers Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.7~), ruby-setup Build-Depends-Indep: graphviz Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-facets.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/ruby-facets.git;a=summary Homepage: http://rubyworks.github.com/facets XS-Ruby-Versions: all Package: ruby-facets Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Description: extensive additions and extensions library for Ruby Ruby Facets is the single largest collection of core extension methods and standard library additions available for the Ruby programming language. . The core library extend existing base classes with lot's of convenient methods and new base objects (Binding, Functor, Stackable, ...). . In addition to the core libraries, Facets provides dozens of additional classes, modules, mixins and light-weight frameworks. These solid libraries provide a general-purpose set of components commonly useful across a variety of applications (Dictionary, LinkedList, PQueue, Random, ...). Package: ruby-facets-doc Section: doc Architecture: all Depends: ${misc:Depends}, libjs-jquery Suggests: doc-base Description: extensive additions and extensions library for Ruby -- API documentation This is the Rdoc-generated documentation for Facets API. debian/ruby-facets-doc.doc-base.facets-standard0000644000000000000000000000046212155432740016623 0ustar Document: ruby-facets-standard Title: Facets Standard API Documentation Author: Thomas Sawyer (aka Trans) Abstract: Rdoc-generated API documentation. Section: Programming/Ruby Format: HTML Index: /usr/share/doc/ruby-facets-doc/api/standard/index.html Files: /usr/share/doc/ruby-facets-doc/api/standard/*