Sha256: 2abffdd0f759f5ebb603f1c3f94cfbcd4cd7ec3b1e4be541a2162703e34e2987

Contents?: true

Size: 878 Bytes

Versions: 2

Compression:

Stored size: 878 Bytes

Contents

ENV["VERSION"] or abort "VERSION= must be specified"

Gem::Specification.new do |s|
  s.name = %q{mahoro}
  s.version = ENV["VERSION"].dup
  s.homepage = "http://mahoro.rubyforge.org/"
  s.authors = [ "Shu-yu Guo", "Eric Wong" ]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = %{
An interface to libmagic to determine file types using "magic" numbers.
This can be used in place of calling the file(1) command in Ruby scripts.
Shu-yu Guo is the original author but all maintenance is handled by
Eric Wong nowadays.

source: http://bogomips.org/mahoro.git/
  }.strip
  s.email = %q{normalperson@yhbt.net}
  s.files = `git ls-files`.split(/\n/)
  s.rubyforge_project = %q{mahoro}
  s.summary = 'An interface to libmagic'
  s.test_files = %w(test.rb)
  s.extensions = %w(extconf.rb)

  s.license = "Public Domain" # disabled for compatibility with older RubyGems
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mahoro-0.3 mahoro.gemspec
mahoro-0.2 mahoro.gemspec