Sha256: a2e74fcbb541c7b4f11deba2f09c937d81043292c4b34a028b52ea18f468f232

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

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

require 'gem_hadar'

GemHadar do
  name        'term-ansicolor'
  path_name   'term/ansicolor'
  path_module 'Term::ANSIColor'
  author      'Florian Frank'
  email       'flori@ping.de'
  homepage    "http://flori.github.com/#{name}"
  summary     'Ruby library that colors strings using ANSI escape sequences'
  description 'This library uses ANSI escape sequences to control the attributes of terminal output'
  licenses    << 'GPL-2'
  test_dir    'tests'
  ignore      '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage', 'tags', '.bundle'
  readme      'README.rdoc'
  executables.merge Dir['bin/*'].map { |x| File.basename(x) }

  dependency             'tins', '~>1.0'
  development_dependency 'simplecov'
  development_dependency 'minitest_tu_shim'

  required_ruby_version '>= 2.0'

  install_library do
    destdir = "#{ENV['DESTDIR']}"
    libdir = CONFIG["sitelibdir"]
    cd 'lib' do
      for file in Dir['**/*.rb']
        dest = destdir + File.join(libdir, File.dirname(file))
        mkdir_p dest
        install file, dest
      end
    end
  end
end

Version data entries

8 entries across 7 versions & 3 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/term-ansicolor-1.4.0/Rakefile
tdiary-5.0.5 vendor/bundle/gems/term-ansicolor-1.4.0/Rakefile
tdiary-5.0.4 vendor/bundle/gems/term-ansicolor-1.4.0/Rakefile
term-ansicolor-1.4.1 Rakefile
ivanvc-logstash-input-s3-3.1.1.4 vendor/local/gems/term-ansicolor-1.4.0/Rakefile
ivanvc-logstash-input-s3-3.1.1.3 vendor/local/gems/term-ansicolor-1.4.0/Rakefile
ivanvc-logstash-input-s3-3.1.1.2 vendor/local/gems/term-ansicolor-1.4.0/Rakefile
term-ansicolor-1.4.0 Rakefile