mcblocky 0.1.0.pre.alpha.pre.6 → 0.1.0.pre.alpha.pre.7
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 +8 -8
- data/LICENSE.txt +21 -0
- data/README.md +1 -0
- data/lib/mcblocky/cli.rb +6 -0
- data/mcblocky.gemspec +3 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
OWE1ZWFiMzY3MDg5Yzk4YWE2YTRjYTgwYjViYWE4MTAwM2Y5YjUzNQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZjVjMWY0MjIzNDNiMTMxMTM4ZTk1NzA4YWJkNmNmN2Q4MDI3YTc1OQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OTljNzRmNjY3NzUzOGI5NWY0ZjM0ZmFhNDNhYzVlNjJmYTc3NWMzZTc4ODkx
|
|
10
|
+
MjA5NjUwYzIyMWEzMmQ1NjA5MzA2MmZhMDQ2OTY5YWE5ODE5YTU0YWJmNzYy
|
|
11
|
+
YTZiNTg4YzMyY2E4Y2UxMTU2ZWI2ZWRiNzFkYTAyOWI1ZDEyOTY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjNkMTM0MmI3ZGUzOTViYzg1YWY4ZDhlNTY5ODlhZjVhZDE2MDM2MDIyOWVh
|
|
14
|
+
ZTY3MmVlYmNkZGZkNzRmMjlhNDliMDVjNDdkNThkNWQ3NjMxYzEwNjcyZDA2
|
|
15
|
+
ZmQ2Y2JiZTZkZjIxYjE4MWM4YWJiM2IwNDIxZjllN2RkZTQ5YTE=
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Michael Limiero
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
McBlocky is a Ruby DSL for creating Minecraft command block contraptions and
|
|
4
4
|
maps.
|
|
5
5
|
|
|
6
|
+
[](https://travis-ci.org/DeltaWhy/mcblocky)
|
|
6
7
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
7
8
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
8
9
|
|
data/lib/mcblocky/cli.rb
CHANGED
|
@@ -5,6 +5,7 @@ module McBlocky
|
|
|
5
5
|
class Cli < Thor
|
|
6
6
|
include Logging
|
|
7
7
|
|
|
8
|
+
map "--version" => :version
|
|
8
9
|
class_option :config,
|
|
9
10
|
desc: 'Path to config file',
|
|
10
11
|
default: 'config.yml',
|
|
@@ -104,5 +105,10 @@ module McBlocky
|
|
|
104
105
|
log_error "Error trace:"
|
|
105
106
|
raise
|
|
106
107
|
end
|
|
108
|
+
|
|
109
|
+
desc "version", "show the current version number"
|
|
110
|
+
def version
|
|
111
|
+
puts "mcblocky #{McBlocky::VERSION}"
|
|
112
|
+
end
|
|
107
113
|
end
|
|
108
114
|
end
|
data/mcblocky.gemspec
CHANGED
|
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.summary = %q{Minecraft command blocks as Ruby code}
|
|
14
14
|
spec.description = %q{McBlocky is a Ruby DSL for creating Minecraft command block contraptions and maps.}
|
|
15
15
|
spec.homepage = "https://github.com/DeltaWhy/mcblocky"
|
|
16
|
+
spec.license = "MIT"
|
|
16
17
|
|
|
17
18
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
19
|
spec.bindir = "exe"
|
|
@@ -25,4 +26,6 @@ Gem::Specification.new do |spec|
|
|
|
25
26
|
|
|
26
27
|
spec.add_runtime_dependency "thor", "~> 0.19"
|
|
27
28
|
spec.add_runtime_dependency "listen", "~> 3.0"
|
|
29
|
+
|
|
30
|
+
spec.required_ruby_version = ">= 2.0.0"
|
|
28
31
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mcblocky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.pre.alpha.pre.
|
|
4
|
+
version: 0.1.0.pre.alpha.pre.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Limiero
|
|
@@ -92,6 +92,7 @@ files:
|
|
|
92
92
|
- .gitignore
|
|
93
93
|
- .travis.yml
|
|
94
94
|
- Gemfile
|
|
95
|
+
- LICENSE.txt
|
|
95
96
|
- README.md
|
|
96
97
|
- Rakefile
|
|
97
98
|
- bin/console
|
|
@@ -126,7 +127,8 @@ files:
|
|
|
126
127
|
- lib/mcblocky/version.rb
|
|
127
128
|
- mcblocky.gemspec
|
|
128
129
|
homepage: https://github.com/DeltaWhy/mcblocky
|
|
129
|
-
licenses:
|
|
130
|
+
licenses:
|
|
131
|
+
- MIT
|
|
130
132
|
metadata: {}
|
|
131
133
|
post_install_message:
|
|
132
134
|
rdoc_options: []
|
|
@@ -136,7 +138,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
136
138
|
requirements:
|
|
137
139
|
- - ! '>='
|
|
138
140
|
- !ruby/object:Gem::Version
|
|
139
|
-
version:
|
|
141
|
+
version: 2.0.0
|
|
140
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
141
143
|
requirements:
|
|
142
144
|
- - ! '>'
|