Sha256: 9338412ed071143756b6674fa93f2a2405b8949bb651240345cf358fba431002

Contents?: true

Size: 892 Bytes

Versions: 9

Compression:

Stored size: 892 Bytes

Contents

# vim: set filetype=ruby et sw=2 ts=2:

require 'gem_hadar'

GemHadar do
  name        'tins'
  author      'Florian Frank'
  email       'flori@ping.de'
  homepage    "http://flori.github.com/#{name}"
  summary     'Useful stuff.'
  description 'All the stuff that isn\'t good/big enough for a real library.'
  test_dir    'tests'
  test_files.concat Dir["#{test_dir}/*_test.rb"]
  ignore      '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage', '.rbx',
              '.AppleDouble'


  readme      'README.rdoc'

  development_dependency 'test-unit', '~>2.5'
  development_dependency 'utils'

  install_library do
    libdir = CONFIG["sitelibdir"]
    cd 'lib' do
      for file in Dir['**/*.rb']
        dst = File.join(libdir, file)
        mkdir_p File.dirname(dst)
        install file, dst
      end
    end
    install 'bin/enum', File.join(CONFIG['bindir'], 'enum')
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
tins-0.7.2 Rakefile
tins-0.7.1 Rakefile
tins-0.7.0 Rakefile
tins-0.6.0 Rakefile
tins-0.5.6 Rakefile
tins-0.5.5 Rakefile
tins-0.5.4 Rakefile
tins-0.5.3 Rakefile
tins-0.5.2 Rakefile