Sha256: a682c2ff6b72769c02246b69579579c3573dce7e0fb31aaa0dcae6fb2b98ace9
Contents?: true
Size: 851 Bytes
Versions: 3
Compression:
Stored size: 851 Bytes
Contents
# vim: set filetype=ruby et sw=2 ts=2: require 'gem_hadar' GemHadar do name 'gem_hadar' module_type :class author 'Florian Frank' email 'flori@ping.de' homepage "http://github.com/flori/#{name}" summary 'Library for the development of Ruby Gems' description 'This library contains some useful functionality to support the development of Ruby Gems' ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.AppleDouble', '.bundle' readme 'README.md' dependency 'tins', '~>1.0' dependency 'sdoc', '~>0.3' dependency 'rake', '~>10.0' development_dependency 'utils' install_library do libdir = CONFIG["sitelibdir"] install("lib/#{name}.rb", libdir, :mode => 0644) mkdir_p subdir = File.join(libdir, name) for f in Dir["lib/#{name}/*.rb"] install(f, subdir) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gem_hadar-1.1.2 | Rakefile |
gem_hadar-1.1.1 | Rakefile |
gem_hadar-1.1.0 | Rakefile |