echinoidea 0.0.3 → 0.0.4
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.
- data/README.md +3 -1
- data/bin/echinoidea +2 -2
- data/echinoidea.gemspec +1 -1
- data/lib/echinoidea/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -15,9 +15,11 @@ Create `echinoidea.yml` in root directory of your unity project.
|
|
|
15
15
|
```
|
|
16
16
|
scenes:
|
|
17
17
|
- Assets/Scenes/Foo.unity
|
|
18
|
-
|
|
18
|
+
- Assets/Scenes/Bar.unity
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
Learn more about configuration? see here: https://github.com/yokoe/echinoidea/wiki/Configuration
|
|
22
|
+
|
|
21
23
|
Then run `echinoidea`.
|
|
22
24
|
|
|
23
25
|
```
|
data/bin/echinoidea
CHANGED
|
@@ -19,11 +19,11 @@ current_dir = Dir::pwd
|
|
|
19
19
|
|
|
20
20
|
if !Echinoidea::project_root_directory?(current_dir)
|
|
21
21
|
STDERR.puts "#{Dir::pwd} is not root directory of a unity project."
|
|
22
|
-
exit
|
|
22
|
+
exit false
|
|
23
23
|
end
|
|
24
24
|
if !Echinoidea::config_exists?(current_dir)
|
|
25
25
|
STDERR.puts "No echinoidea.yml exists in #{Dir::pwd}"
|
|
26
|
-
exit
|
|
26
|
+
exit false
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
if !Echinoidea::editor_directory_exists?(current_dir)
|
data/echinoidea.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.version = Echinoidea::VERSION
|
|
9
9
|
gem.authors = ["Sota Yokoe"]
|
|
10
10
|
gem.email = ["gem@kreuz45.com"]
|
|
11
|
-
gem.description = "
|
|
11
|
+
gem.description = "echinoidea is a command line unity project build helper."
|
|
12
12
|
gem.summary = "A command line unity project build helper"
|
|
13
13
|
gem.homepage = "https://github.com/yokoe/echinoidea"
|
|
14
14
|
|
data/lib/echinoidea/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: echinoidea
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,9 +9,9 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-10-
|
|
12
|
+
date: 2012-10-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description:
|
|
14
|
+
description: echinoidea is a command line unity project build helper.
|
|
15
15
|
email:
|
|
16
16
|
- gem@kreuz45.com
|
|
17
17
|
executables:
|