forked from rubyamf/rocketamf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
RubySol.gemspec
24 lines (21 loc) · 904 Bytes
/
RubySol.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'ruby_sol'
s.version = '0.1'
s.platform = Gem::Platform::RUBY
s.authors = ['Mikhail Filimonov', 'Jacob Henry', 'Stephen Augenstein', "Joc O'Connor"]
s.email = ['[email protected]']
s.homepage = 'http://github.com/filimonov/ruby_sol'
s.summary = 'Based on RocketAMF reader/write of Flash Player\'s .sol files'
s.license = 'MIT'
s.description = <<EOF
RubySol allows to read/write files in sol format, used by Flash Player.
RubySol is based on RocketAMF code.
EOF
s.files = Dir[*['README.rdoc', 'ruby_sol.gemspec', 'Rakefile', 'lib/**/*.rb', 'spec/**/*.{rb,bin,opts}']]
s.test_files = Dir[*['spec/**/*_spec.rb']]
s.require_paths = ["lib"]
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc']
s.rdoc_options = ['--line-numbers', '--main', 'README.rdoc']
end