rogerdpack-whichr 0.0.6 → 0.1.0

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.
Files changed (2) hide show
  1. data/README +16 -13
  2. metadata +1 -1
data/README CHANGED
@@ -1,20 +1,23 @@
1
- which_ruby: the linux "which" command re-written in ruby [and windows-friendly+aware [recognizes .bat files, etc.]]
1
+ ruby which: the linux "which" command re-written in ruby [and windows-friendly].
2
2
 
3
- A which command for windows that actually works!
3
+ An executable locator (which command) for windows that actually works!
4
4
 
5
- Itch it scratches: there seems to be a lack of a "which" command for windows that actually works--they all skip batch files or report file output without extensions, so even if you run "which xxx" you never know what you're really running when you type xxx in the command line--is it xxx.exe [the thing reported from 'which'] or xxx.bat somewhere previous to this in the path? This executable makes this crystal clear and is a must have for every windows developer.
5
+ Itch it scratches: there seems to be a lack of a "which" command for windows that actually work--they sometimes skip batch files entirely [batch file? what's that?] or don't list extensions, leaving you in doubt. Despite running "which yyy" you never know what you're really running when you next run yyy in the command line--is it yyy.exe or some other yyy.bat that wasn't reported by "which"?
6
+
7
+ Try it--you might really like it.
6
8
 
7
9
  To install:
8
- C:> gem install rogerdpack-whichr
9
-
10
- C:> whichr executable_name_here [extension could be included, but is optional]
11
10
 
12
- example:
13
- C:\>whichr ruby
14
- higher in the list will be executed first
15
- C:/Ruby/bin/ruby.exe
16
- c:/cygwin/bin/ruby.exe
11
+ C:\>gem install rogerdpack-whichr
12
+
13
+ C:\>whichr executable_name_here [extension can be included, but is optional]
14
+
15
+ usage:
17
16
 
18
- Based originally on some code stolen from ruby gnuplot, extracted.
17
+ C:\>whichr ruby
18
+ higher in the list will be executed first
19
+ ./ruby.bat
20
+ C:/Ruby/bin/ruby.exe
21
+ c:/cygwin/bin/ruby.exe
19
22
 
20
- Feedback welcome rogerdpack on github
23
+ Feedback welcome rogerdpack on github/gmail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rogerdpack-whichr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Pack