-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmikunyan.gemspec
More file actions
37 lines (31 loc) · 1.34 KB
/
mikunyan.gemspec
File metadata and controls
37 lines (31 loc) · 1.34 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$:.unshift(lib) unless $:.include?(lib)
require 'mikunyan/version'
Gem::Specification.new do |spec|
spec.name = 'mikunyan'
spec.version = Mikunyan::VERSION
spec.authors = ['Ishotihadus']
spec.summary = 'Unity asset deserializer for Ruby'
spec.description = 'Library to deserialize Unity assetbundles and assets.'
spec.homepage = 'https://github.com/Ishotihadus/mikunyan'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6.0'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f)}
spec.require_paths = ['lib']
spec.extensions = ['ext/decoders/native/extconf.rb', 'ext/decoders/crunch/extconf.rb']
spec.add_dependency 'bin_utils', '~> 0'
spec.add_dependency 'chunky_png', '~> 1'
spec.add_dependency 'extlz4', '~> 0'
spec.add_dependency 'extlzma2', '~> 2'
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'oily_png', '~> 1'
spec.add_development_dependency 'pry', '~> 0'
spec.add_development_dependency 'rake-compiler', '~> 1'
spec.add_development_dependency 'usamin', '~> 7'
end