1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "install_as_gem"
s.version = '0.0.1'
s.platform = Gem::Platform::RUBY
s.authors = ["Antonio Terceiro"]
s.email = ["terceiro@debian.org"]
s.homepage = ""
s.summary = %q{Simple gem to test the gem2deb gem installer}
s.description = %q{Simple gem to test the gem2deb gem installer}
s.files = Dir['**/*']
s.test_files = Dir['test/**/*'] + Dir['spec/**/*']
s.executables = Dir['bin/*'].map { |f| File.basename(f) }
s.extensions = 'ext/extconf.rb'
s.extra_rdoc_files = ['extra_rdoc.md']
end
|