-
Notifications
You must be signed in to change notification settings - Fork 16
/
oily_png.gemspec
39 lines (29 loc) · 1.23 KB
/
oily_png.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- 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 = ['[email protected]']
s.homepage = 'https://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.7')
s.add_development_dependency('rake')
s.add_development_dependency('rake-compiler')
s.add_development_dependency('rspec', '~> 3')
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