unienv 0.0.1 → 0.0.2
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/README.md +26 -34
- data/lib/assets/unity_versions.yml +15 -0
- data/lib/unienv/version.rb +1 -1
- data/lib/unienv.rb +0 -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: 8716cd2cb5b448d73991a6e47ea5a90a2ca1552e
|
4
|
+
data.tar.gz: ff7601b27d3b176890f198986b01c46d629e18ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2e331f5503e016f33f72c81c8acc1e249aca579020683ee937d2a592494b24e111b6f6277012543e7cefb1ba8ece2d23ef781deb123c3440742540c81644a4b
|
7
|
+
data.tar.gz: ad0250095ed3ff380b7d4a14d5ec206a9407641de979c949f94876191ce3b25fc6a1fa4c1e5d29a417f56e106c171ef196fae3dccb1aa0c9907151aaa4ee73bf
|
data/README.md
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
# Ubb
|
2
2
|
|
3
|
-
Helper for Unity
|
4
|
-
|
5
|
-
[](http://badge.fury.io/rb/ubb)
|
3
|
+
Helper for selecting Unity version.
|
6
4
|
|
5
|
+
[](http://badge.fury.io/rb/unienv)
|
7
6
|
|
8
7
|
## Description
|
9
8
|
|
10
|
-
Unity Editor からビルドしたりパッケージを入出力する時に使うツールです。
|
11
9
|
|
12
10
|
|
13
11
|
## Installation
|
@@ -15,59 +13,53 @@ Unity Editor からビルドしたりパッケージを入出力する時に使
|
|
15
13
|
Install it yourself as:
|
16
14
|
|
17
15
|
```
|
18
|
-
$ gem install
|
16
|
+
$ gem install unienv
|
19
17
|
```
|
20
18
|
|
21
|
-
|
19
|
+
or
|
22
20
|
|
23
21
|
```
|
24
|
-
$
|
25
|
-
$ ubb import hoge.unitypackage
|
22
|
+
$ sudo gem install unienv
|
26
23
|
```
|
27
24
|
|
28
|
-
|
29
|
-
明示的に指定するには `--project PATH` オプションを使用してください。
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
### export
|
34
|
-
|
35
|
-
指定したフォルダ及びファイルを .unitypackage としてエクスポートします。
|
25
|
+
## Usage
|
36
26
|
|
37
27
|
```
|
38
|
-
|
28
|
+
$ unienv [command]
|
39
29
|
```
|
40
30
|
|
41
|
-
###
|
31
|
+
### commands
|
42
32
|
|
43
|
-
|
33
|
+
#### list
|
44
34
|
|
45
|
-
|
46
|
-
ubb import 'パッケージファイル名'
|
47
|
-
```
|
48
|
-
|
49
|
-
### build
|
35
|
+
Display list of installable Unity versions.
|
50
36
|
|
51
|
-
|
37
|
+
Add `--local` option, display list of installed version.
|
52
38
|
|
53
39
|
```
|
54
|
-
|
40
|
+
$ unienv list [master>]
|
41
|
+
5.2.0f3
|
42
|
+
5.1.3p3
|
43
|
+
5.1.3p2
|
44
|
+
5.1.3p1
|
45
|
+
5.1.2p3
|
46
|
+
5.1.2p2
|
47
|
+
5.1.2p1
|
55
48
|
```
|
56
49
|
|
57
|
-
|
58
|
-
* ビルドターゲットの指定。現在は `ios` のみ。
|
59
|
-
* config
|
60
|
-
* ビルドコンフィグの指定。
|
61
|
-
|
62
|
-
|
63
|
-
|
50
|
+
#### install
|
64
51
|
|
52
|
+
Install Unity Editor to local that specified version.
|
65
53
|
|
54
|
+
```
|
55
|
+
$ unienv install 5.2
|
56
|
+
$ unienv install 5.1.3p2
|
57
|
+
```
|
66
58
|
|
67
59
|
|
68
60
|
## Contributing
|
69
61
|
|
70
|
-
1. Fork it ( https://github.com/fum1h1ro/
|
62
|
+
1. Fork it ( https://github.com/fum1h1ro/unienv/fork )
|
71
63
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
72
64
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
73
65
|
4. Push to the branch (`git push origin my-new-feature`)
|
@@ -5,4 +5,19 @@ version:
|
|
5
5
|
5.1.3p3:
|
6
6
|
editor: http://beta.unity3d.com/download/f0a33a6ef422/MacEditorInstaller/Unity-5.1.3p3.pkg
|
7
7
|
standard_assets: http://beta.unity3d.com/download/f0a33a6ef422/MacStandardAssetsInstaller/StandardAssets-5.1.3p3.pkg
|
8
|
+
5.1.3p2:
|
9
|
+
editor: http://beta.unity3d.com/download/bebcb01d8ab6/MacEditorInstaller/Unity-5.1.3p2.pkg
|
10
|
+
standard_assets: http://beta.unity3d.com/download/bebcb01d8ab6/MacStandardAssetsInstaller/StandardAssets-5.1.3p2.pkg
|
11
|
+
5.1.3p1:
|
12
|
+
editor: http://beta.unity3d.com/download/8e79cb51fdc7/MacEditorInstaller/Unity-5.1.3p1.pkg
|
13
|
+
standard_assets: http://beta.unity3d.com/download/8e79cb51fdc7/MacStandardAssetsInstaller/StandardAssets-5.1.3p1.pkg
|
14
|
+
5.1.2p3:
|
15
|
+
editor: http://beta.unity3d.com/download/65486b59c7a9/MacEditorInstaller/Unity-5.1.2p3.pkg
|
16
|
+
standard_assets: http://beta.unity3d.com/download/65486b59c7a9/MacStandardAssetsInstaller/StandardAssets-5.1.2p3.pkg
|
17
|
+
5.1.2p2:
|
18
|
+
editor: http://beta.unity3d.com/download/207c2b8718a4/MacEditorInstaller/Unity-5.1.2p2.pkg
|
19
|
+
standard_assets: http://beta.unity3d.com/download/207c2b8718a4/MacStandardAssetsInstaller/StandardAssets-5.1.2p2.pkg
|
20
|
+
5.1.2p1:
|
21
|
+
editor: http://beta.unity3d.com/download/4b35e09f2de6/MacEditorInstaller/Unity-5.1.2p1.pkg
|
22
|
+
standard_assets: http://beta.unity3d.com/download/4b35e09f2de6/MacStandardAssetsInstaller/StandardAssets-5.1.2p1.pkg
|
8
23
|
|
data/lib/unienv/version.rb
CHANGED
data/lib/unienv.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unienv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fum1h1ro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|