tobias-script_finder 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,12 @@
1
+ == 0.0.3 2009-03-11
2
+
3
+ * fixed issue with exception when command not found
4
+
5
+ == 0.0.2 2009-03-11
6
+
7
+ * added readme
8
+ * updated gemspec with contents from readme
9
+
1
10
  == 0.0.1 2009-03-10
2
11
 
3
12
  * 1 major enhancement:
@@ -32,7 +32,7 @@ module ScriptFinder
32
32
  if dir
33
33
  cmd = find_command_in_dir(dir)
34
34
  if cmd.nil?
35
- cmd_not_found(command)
35
+ cmd_not_found
36
36
  elsif cmd.is_a?(Array)
37
37
  too_many_cmds_found(cmd)
38
38
  else
data/lib/script_finder.rb CHANGED
@@ -3,5 +3,5 @@ $:.unshift(File.dirname(__FILE__)) unless
3
3
 
4
4
  require File.join(File.dirname(__FILE__), 'script_finder', 'script_finder')
5
5
  module ScriptFinder
6
- VERSION = '0.0.2'
6
+ VERSION = '0.0.3'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tobias-script_finder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Crawley