Sha256: 0e228121e579d71e764daf5bc933ecae621d239c2902e472a437876f36e9649a
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'oily_png/version' Gem::Specification.new do |s| s.name = 'oily_png' s.rubyforge_project = s.name # Do not change the version and date fields by hand. This will be done # automatically by the gem release script. s.version = OilyPNG::VERSION s.summary = "Native mixin to speed up ChunkyPNG" s.description = <<-EOT This Ruby C extenstion defines a module that can be included into ChunkyPNG to improve its speed. EOT s.license = 'MIT' s.authors = ['Willem van Bergen'] s.email = ['willem@railsdoctors.com'] s.homepage = 'http://wiki.github.com/wvanbergen/oily_png' s.extensions = ["ext/oily_png/extconf.rb"] s.require_paths = ["lib", "ext"] s.add_runtime_dependency('chunky_png', '~> 1.3.0') s.add_development_dependency('rake') s.add_development_dependency('rake-compiler') s.add_development_dependency('rspec', '~> 2') s.rdoc_options << '--title' << s.name << '--main' << 'README.rdoc' << '--line-numbers' << '--inline-source' s.extra_rdoc_files = ['README.rdoc'] s.files = `git ls-files`.split($/) s.test_files = s.files.grep(%r{^(test|spec|features)/}) end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
bench9000-0.1 | vendor/oily_png/oily_png.gemspec |
oily_png-1.1.1 | oily_png.gemspec |