Pistos / ruby-which

Like the UNIX "which" tool, but for Ruby libraries.

This URL has Read+Write access

ruby-which / ruby-which.gemspec
100755 24 lines (21 sloc) 0.778 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
    s.name = 'ruby-which'
    s.version = '0.5.3'
    s.summary = 'Like the UNIX "which" tool for Ruby libraries.'
    s.description = %{Use ruby-which for those times when you don't know which version of a library you're require-ing, or from what path on your system it's coming from.}
    s.homepage = 'http://github.com/Pistos/ruby-which'
    #s.rubyforge_project = 'ruby-which'
 
    s.authors = [ 'Pistos' ]
    s.email = 'pistos at purepistos dot net'
 
    s.files = [
        #'CHANGELOG',
        'README',
        'LICENCE',
        'bin/rwhich',
        'lib/ruby-which.rb',
    ]
    s.executables = [ 'rwhich' ]
    s.extra_rdoc_files = [ 'README', 'LICENCE', ]
    #s.test_files = Dir.glob( 'test/*-test.rb' )
    s.has_rdoc = true
end