debian/0000755000000000000000000000000012224034321007157 5ustar debian/source/0000755000000000000000000000000012224034321010457 5ustar debian/source/format0000644000000000000000000000001412224034321011665 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000013712224034321010211 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/aruba .*/aruba-(.*).tar.gz debian/ruby-aruba.docs0000644000000000000000000000001212224034321012073 0ustar README.md debian/patches/0000755000000000000000000000000012224034321010606 5ustar debian/patches/series0000644000000000000000000000012512224034321012021 0ustar remove_require_rubygems specify_spec_helper.rb path-manipulation-for-templates.patch debian/patches/path-manipulation-for-templates.patch0000644000000000000000000000106212224034321020040 0ustar Description: update path for templates directory templates are installed in /usr/share/ruby-aruba. reporting.rb needs to use this path. Author: Praveen Arimbrathodiyil Last-Update: 2013-05-10 Forwarded: no --- a/lib/aruba/reporting.rb +++ b/lib/aruba/reporting.rb @@ -1,5 +1,5 @@ if(ENV['ARUBA_REPORT_DIR']) - ENV['ARUBA_REPORT_TEMPLATES'] ||= File.dirname(__FILE__) + '/../../templates' + ENV['ARUBA_REPORT_TEMPLATES'] ||= File.dirname(__FILE__) + '/../../../../share/ruby-aruba/templates' require 'fileutils' require 'erb' debian/patches/remove_require_rubygems0000644000000000000000000000052212224034321015476 0ustar Description: remove "require 'rubygems" Author: Hideki Yamane --- Origin: vendor Forwarded: not-needed Last-Update: 2013-01-03 --- ruby-aruba-0.5.1.orig/Rakefile +++ ruby-aruba-0.5.1/Rakefile @@ -1,5 +1,4 @@ # encoding: utf-8 -require 'rubygems' require 'bundler' Bundler.setup Bundler::GemHelper.install_tasks debian/patches/specify_spec_helper.rb0000644000000000000000000000054212224034321015147 0ustar Description: just specify spec_helper.rb in parent directory Author: Hideki Yamane --- Origin: vendor Forwarded: no Last-Update: 2013-01-03 --- ruby-aruba-0.5.1.orig/spec/aruba/api_spec.rb +++ ruby-aruba-0.5.1/spec/aruba/api_spec.rb @@ -1,4 +1,4 @@ -require 'spec_helper' +require './spec/spec_helper' describe Aruba::Api do debian/copyright0000644000000000000000000000644712224034321011125 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: aruba Source: https://github.com/cucumber/aruba Files: * Copyright: 2010-2012 Aslak Hellesøy David Chelimsky Mike Sassak License: Expat Files: templates/images/* Copyright: Mark James License: CC-BY I also love to hear of my work being used, feel encouraged to send an email with a link or screenshot of the icons in their new home to mjames at gmail dot com. This work is licensed under a Creative Commons Attribution 2.5 License. This means you may use it for any purpose, and make any changes you like. All I ask is that you include a link back to this page in your credits (although a giant link on every page of your website really isn't needed, contact me to discuss specifics). . The icons can also be used under Creative Commons Attribution 3.0 License (Hi Debian folks!) with the following requirements: . As an author, I would appreciate a reference to my authorship of the Silk icon set contents within a readme file or equivalent documentation for the software which includes the set or a subset of the icons contained within. Files: debian/* Copyright: 2012 Hideki Yamane 2013 Praveen Arimbrathodiyil License: GPL-2+ 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. 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, 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'. debian/compat0000644000000000000000000000000212224034321010355 0ustar 7 debian/ruby-aruba.links0000644000000000000000000000014012224034321012265 0ustar usr/share/javascript/jquery/jquery.min.js usr/share/ruby-aruba/templates/js/jquery-1.6.1.min.js debian/rules0000755000000000000000000000132712224034321010242 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_install: dh_install rm -f debian/ruby-aruba/usr/share/ruby-aruba/templates/images/LICENSE override_dh_installchangelogs: dh_installchangelogs History.md override_dh_fixperms: dh_fixperms chmod -x debian/ruby-aruba/usr/share/ruby-aruba/templates/images/*.png debian/debian0000777000000000000000000000000012224034321012275 2../featuresustar debian/ruby-tests.rake0000644000000000000000000000022312224034321012141 0ustar require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = './spec/**/*_spec.rb' end task :default => :spec debian/changelog0000644000000000000000000000054112224034321011031 0ustar ruby-aruba (0.5.3-1) unstable; urgency=low * New upstream release -- Hideki Yamane Sun, 06 Oct 2013 01:04:50 +0900 ruby-aruba (0.5.1-1) unstable; urgency=low * Initial release (Closes: #697253) [ Hideki Yamane ] * Initial packaging -- Praveen Arimbrathodiyil Sat, 15 Dec 2012 11:08:34 +0900 debian/ruby-aruba.install0000644000000000000000000000004112224034321012613 0ustar templates /usr/share/ruby-aruba/ debian/control0000644000000000000000000000235112224034321010563 0ustar Source: ruby-aruba Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Hideki Yamane , Praveen Arimbrathodiyil Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), ruby-bcat (>= 0.6.1), ruby-rdiscount (>= 1.6.8), rake (>= 0.9.2), ruby-rspec (>= 2.7.0), ruby-childprocess, libjs-jquery Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-aruba.git Vcs-Browser: http://anonscm.debian.org/?p=pkg-ruby-extras/ruby-aruba.git;a=summary Homepage: http://github.com/cucumber/aruba XS-Ruby-Versions: all Package: ruby-aruba Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, cucumber (>= 1.1.1), ruby-rspec-expectations (>= 2.7.0), ruby-childprocess (>= 0.3.6), ruby-childprocess (<< 0.4), libjs-jquery Description: Cucumber extension for CLI applications Aruba is Cucumber extension for Command line applications written in any programming language. Features at a glance: . * Test any command line application * Manipulate the file system * Create great HTML documentation based on your own Cucumber scenarios