mcblocky 0.1.0.pre.alpha.pre.6

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.
metadata ADDED
@@ -0,0 +1,151 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mcblocky
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.pre.alpha.pre.6
5
+ platform: ruby
6
+ authors:
7
+ - Michael Limiero
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: thor
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '0.19'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '0.19'
69
+ - !ruby/object:Gem::Dependency
70
+ name: listen
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ description: McBlocky is a Ruby DSL for creating Minecraft command block contraptions
84
+ and maps.
85
+ email:
86
+ - mike5713@gmail.com
87
+ executables:
88
+ - mcblocky
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - .gitignore
93
+ - .travis.yml
94
+ - Gemfile
95
+ - README.md
96
+ - Rakefile
97
+ - bin/console
98
+ - bin/setup
99
+ - bin/workon.cmd
100
+ - doc/Introduction.md
101
+ - examples/ctf/arena.rb
102
+ - examples/ctf/config.example.yml
103
+ - examples/ctf/ctf.rb
104
+ - examples/ctf/lobby.rb
105
+ - examples/hello/config.example.yml
106
+ - examples/hello/hello.rb
107
+ - examples/hello/helpers/bar.rb
108
+ - examples/hello/helpers/foo.rb
109
+ - exe/mcblocky
110
+ - lib/mcblocky.rb
111
+ - lib/mcblocky/cli.rb
112
+ - lib/mcblocky/config.rb
113
+ - lib/mcblocky/context.rb
114
+ - lib/mcblocky/dsl.rb
115
+ - lib/mcblocky/dsl/block.rb
116
+ - lib/mcblocky/dsl/command_block.rb
117
+ - lib/mcblocky/dsl/commands.rb
118
+ - lib/mcblocky/dsl/container.rb
119
+ - lib/mcblocky/dsl/repeat_chain.rb
120
+ - lib/mcblocky/dsl/selector.rb
121
+ - lib/mcblocky/executor.rb
122
+ - lib/mcblocky/listener.rb
123
+ - lib/mcblocky/location.rb
124
+ - lib/mcblocky/logging.rb
125
+ - lib/mcblocky/server.rb
126
+ - lib/mcblocky/version.rb
127
+ - mcblocky.gemspec
128
+ homepage: https://github.com/DeltaWhy/mcblocky
129
+ licenses: []
130
+ metadata: {}
131
+ post_install_message:
132
+ rdoc_options: []
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ! '>='
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ! '>'
143
+ - !ruby/object:Gem::Version
144
+ version: 1.3.1
145
+ requirements: []
146
+ rubyforge_project:
147
+ rubygems_version: 2.4.5
148
+ signing_key:
149
+ specification_version: 4
150
+ summary: Minecraft command blocks as Ruby code
151
+ test_files: []