This repository was archived by the owner on May 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfmod.gemspec
More file actions
44 lines (35 loc) · 2.35 KB
/
fmod.gemspec
File metadata and controls
44 lines (35 loc) · 2.35 KB
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
40
41
42
43
44
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fmod/version'
Gem::Specification.new do |spec|
spec.name = 'fmod'
spec.version = FMOD::VERSION
spec.authors = ['Eric "ForeverZer0" Freed']
spec.email = ['efreed09@gmail.com']
spec.summary = %q{Ruby wrapper around the high performance, cross-platform FMOD low-level sound library. You get all the benefits of the FMOD library, but in the object-oriented Ruby way!}
spec.description = %q{A full-featured and complete Ruby wrapper of the ultra-powerful FMOD Low-Level API for accomplishing all of your audio needs. Uses the built-in Fiddle library (Ruby 2.0+) to eliminate unnecessary external gem dependencies, all that is needed is the FMOD platform-specific libraries. FMOD supports a host of audio formats including .aiff, .asf, .asx, .dls, .flac, .fsb, .it, .m3u, .mid, .midi, .mod, .mp2, .mp3, .ogg .pls, .s3m , vag, .wav, .wax, .wma, .xm, and .xma.}
spec.homepage = 'https://github.com/ForeverZer0/fmod'
spec.license = 'MIT'
spec.has_rdoc = 'yard'
spec.post_install_message = 'Dependent libraries can be acquired by visiting the project on GitHub or directly from https://www.fmod.com/download.'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/ForeverZer0/fmod/issues',
'changelog_uri' => 'https://github.com/ForeverZer0/fmod/blob/master/CHANGELOG.md',
'documentation_uri' => "https://www.rubydoc.info/gems/fmod/#{FMOD::VERSION}",
'homepage_uri' => 'https://github.com/ForeverZer0/fmod',
'mailing_list_uri' => 'https://github.com/ForeverZer0/fmod',
'source_code_uri' => 'https://github.com/ForeverZer0/fmod',
'wiki_uri' => 'https://github.com/ForeverZer0/fmod/wiki'
}
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|extras|ext)/}) }
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.requirements << 'FMOD Low-Level API library'
spec.required_ruby_version = '>= 2.0.0'
spec.add_development_dependency 'bundler', '~> 1.16'
spec.add_development_dependency 'rake', '>= 0.0'
spec.add_development_dependency 'yard', '~> 0.9'
end