uas2git 0.9.9 → 0.9.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/uas2git/migrator.rb +1 -1
- data/lib/uas2git/version.rb +2 -2
- data/uas2git.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d82ac2c9be77f157b32319899b5eb719ae8776c5
|
4
|
+
data.tar.gz: 1b1543704763786aba03ff97832f08ab04f989f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5aa346382650b2811904e2a7da64840a88e3629f7b0f4373ffcc77769a51a52ef5a7409b986404d3dd29d835cd39a202ec22a497d76a903b19c327aea211c0a4
|
7
|
+
data.tar.gz: fee6c35918a28e4fb3292f8b7b9f06c337e6d923337868f8d198c45062ffde524fa12efed0ce07200b1e2d0fc24f092729a9f2972e11e138baea1ee63a59fb21
|
data/lib/uas2git/migrator.rb
CHANGED
@@ -81,7 +81,7 @@ module Uas2Git
|
|
81
81
|
end
|
82
82
|
else
|
83
83
|
v.contents.each do |c|
|
84
|
-
oid = LOReader.new(v.class.connection.raw_connection).open(c.stream) { |lo| Rugged::Blob.
|
84
|
+
oid = LOReader.new(v.class.connection.raw_connection).open(c.stream) { |lo| Rugged::Blob.from_io(@repo, lo) }
|
85
85
|
|
86
86
|
@index << { path: @paths[v.asset.serial], oid: oid, mode: 0100644 } if c.tag == 'asset'
|
87
87
|
@index << { path: @paths[v.asset.serial] + '.meta', oid: oid, mode: 0100644 } if c.tag == 'asset.meta'
|
data/lib/uas2git/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = '0.9.9'
|
1
|
+
module Uas2Git
|
2
|
+
VERSION = '0.9.9.1'
|
3
3
|
end
|
data/uas2git.gemspec
CHANGED
@@ -5,7 +5,7 @@ require 'uas2git/version'
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'uas2git'
|
8
|
-
spec.version =
|
8
|
+
spec.version = Uas2Git::VERSION
|
9
9
|
spec.authors = ['Toru Nayuki']
|
10
10
|
spec.email = ['tnayuki@icloud.com']
|
11
11
|
spec.summary = 'A tool for migrating Unity Asset Server projects to git'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uas2git
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.9
|
4
|
+
version: 0.9.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toru Nayuki
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|