Sha256: b232f141ad9ced785643ff57d1e5847f9abf0eb7f805a7e7cd8700bf52dfe5de
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
require 'rubygems' require 'rbconfig' Gem::Specification.new do |spec| spec.name = 'archive-tar-external' spec.version = '1.3.1' spec.summary = 'A simple way to create tar archives using external calls' spec.license = 'Artistic 2.0' spec.author = 'Daniel Berger' spec.email = 'djberg96@gmail.com' spec.homepage = 'http://www.rubyforge.org/shards' spec.test_file = 'test/test_archive_tar_external.rb' spec.files = Dir['**/*'].reject{ |f| f.include?('git') } spec.rubyforge_project = 'shards' spec.extra_rdoc_files = [ 'README', 'CHANGES', 'MANIFEST', 'doc/tar_external.txt' ] spec.description = <<-EOF The archive-tar-external is a simple wrapper interface for creating tar files using your system's tar command. You can also easily compress your tar files with your system's compression programs such as zip, gzip, or bzip2. EOF spec.add_development_dependency('test-unit') spec.add_development_dependency('ptools') if File::ALT_SEPARATOR if RUBY_VERSION.to_f < 1.9 && RUBY_PLATFORM !~ /java/i spec.add_dependency('win32-open3') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
archive-tar-external-1.3.1 | archive-tar-external.gemspec |