Sha256: c83481b74bee4bcd51ee7280055869cc946fda170a9f584796dfcbbbe53df36f
Contents?: true
Size: 1.03 KB
Versions: 7
Compression:
Stored size: 1.03 KB
Contents
# vim: set filetype=ruby et sw=2 ts=2: require 'gem_hadar' GemHadar do name 'utils' author 'Florian Frank' email 'flori@ping.de' homepage "http://github.com/flori/#{name}" summary 'Some useful command line utilities' description 'This ruby gem provides some useful command line utilities' bindir 'bin' executables Dir['bin/*'].map(&File.method(:basename)) test_dir 'tests' ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', '.AppleDouble' readme 'README.rdoc' dependency 'tins', '~>0.3' dependency 'term-ansicolor', '~>1.0' dependency 'dslkit', '~>0.2' dependency 'pry-editline' install_library do libdir = CONFIG["sitelibdir"] cd 'lib' do for file in Dir['**/*.rb'] dest = File.join(libdir, File.dirname(file)) mkdir_p dest install(file, dest) end end bindir = CONFIG["bindir"] cd 'bin' do for file in executables install(file, bindir, :mode => 0755) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
utils-0.0.39 | Rakefile |
utils-0.0.38 | Rakefile |
utils-0.0.37 | Rakefile |
utils-0.0.36 | Rakefile |
utils-0.0.35 | Rakefile |
utils-0.0.34 | Rakefile |
utils-0.0.33 | Rakefile |