format codes

This commit is contained in:
Ishotihadus
2019-11-21 22:20:36 +09:00
parent 5c32fc9b8c
commit 9d189b2550
12 changed files with 1648 additions and 1626 deletions
+18 -17
View File
@@ -1,31 +1,32 @@
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "mikunyan/version"
# 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.name = 'mikunyan'
spec.version = Mikunyan::VERSION
spec.authors = ["Ishotihadus"]
spec.email = ["hanachan.pao@gmail.com"]
spec.authors = ['Ishotihadus']
spec.email = ['hanachan.pao@gmail.com']
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.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.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"]
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']
spec.add_dependency 'extlz4', '~> 0'
spec.add_dependency 'extlzma', '~> 0'
spec.add_dependency 'bin_utils', '~> 0'
spec.add_dependency 'chunky_png', '~> 1'
spec.add_dependency 'extlz4', '~> 0'
spec.add_dependency 'extlzma', '~> 0'
spec.add_dependency 'json', '~> 2'
spec.add_development_dependency 'bundler', '~> 1'