-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathswf_ruby.gemspec
26 lines (21 loc) · 905 Bytes
/
swf_ruby.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'swf_ruby/version'
Gem::Specification.new do |s|
s.name = "swf_ruby"
s.version = SwfRuby::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["tmtysk"]
s.email = []
s.homepage = "http://github.com/tmtysk/swf_ruby"
s.summary = "Utilities to dump or manipulate Swf binary file."
s.description = "SwfRuby is utilities to dump or manipulate Swf binary file."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "swf_ruby"
s.add_dependency "bundler", ">= 1.0.0.rc.5"
s.add_dependency "rmagick", ">= 2.13.0"
s.bindir = 'bin'
s.executables = ['swf_dump', 'swf_jpeg_replace', 'swf_lossless_replace', 'swf_as_var_replace', 'swf_sprite_replace']
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
end