From 980a6ec92b3c67893c923d5ba575bf95f46d6c90 Mon Sep 17 00:00:00 2001 From: Mohammed Morsi Date: Sat, 4 Sep 2010 23:58:22 -0400 Subject: [PATCH] removed path qualifier from 'requires' in executables --- Rakefile | 2 +- bin/rxsd_test | 2 +- bin/xsd_to_ruby | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 52cef79..b002d20 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ require 'rake/gempackagetask' GEM_NAME="rxsd" -PKG_VERSION='0.4' +PKG_VERSION='0.4.1' desc "Run all specs" Spec::Rake::SpecTask.new('spec') do |t| diff --git a/bin/rxsd_test b/bin/rxsd_test index 5c9e82d..248653e 100755 --- a/bin/rxsd_test +++ b/bin/rxsd_test @@ -6,7 +6,7 @@ # Copyright (C) 2010 Mohammed Morsi # See COPYING for the License of this software -require 'lib/rxsd' +require 'rxsd' if ARGV.size < 2 puts "missing required arguments" diff --git a/bin/xsd_to_ruby b/bin/xsd_to_ruby index 38075ca..b1a1132 100755 --- a/bin/xsd_to_ruby +++ b/bin/xsd_to_ruby @@ -7,7 +7,7 @@ # See COPYING for the License of this software require 'fileutils' -require 'lib/rxsd' +require 'rxsd' if ARGV.size < 2 puts "missing required arguments"