Sha256: 4f840eaa8cf516c5045954c3a4a00e75e2eea1216cd9746ceeed3c480dcb6dcc

Contents?: true

Size: 837 Bytes

Versions: 7

Compression:

Stored size: 837 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'
  readme      'README.rdoc'

  dependency  'tins',  '>=0.3.3'
  dependency  'dslkit', '~>0.2'
  dependency  'sdoc',   '~>0.2.20'
  dependency  'rake',   '~>0.9.2'

  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

7 entries across 7 versions & 1 rubygems

Version Path
gem_hadar-0.1.8 Rakefile
gem_hadar-0.1.7 Rakefile
gem_hadar-0.1.6 Rakefile
gem_hadar-0.1.5 Rakefile
gem_hadar-0.1.4 Rakefile
gem_hadar-0.1.3 Rakefile
gem_hadar-0.1.2 Rakefile