chione 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env rspec -cfd -b
2
+
3
+ require_relative 'spec_helper'
4
+
5
+ require 'chione'
6
+
7
+ describe Chione do
8
+ end
9
+
10
+ # vim: set nosta noet ts=4 sw=4:
11
+
@@ -0,0 +1,34 @@
1
+ # -*- ruby -*-
2
+ #encoding: utf-8
3
+
4
+ require 'pathname'
5
+ require 'simplecov' if ENV['COVERAGE']
6
+ require 'rspec'
7
+ require 'loggability/spechelpers'
8
+
9
+ require 'chione'
10
+
11
+
12
+ module Chione::TestHelpers
13
+ end
14
+
15
+
16
+
17
+ RSpec.configure do |config|
18
+ # include Chione::TestHelpers
19
+
20
+ SPEC_DIR = Pathname( __FILE__ ).dirname
21
+ SPEC_DATA_DIR = SPEC_DIR + 'data'
22
+
23
+ config.run_all_when_everything_filtered = true
24
+ config.filter_run :focus
25
+ config.order = 'random'
26
+ config.mock_with( :rspec ) do |mock|
27
+ mock.syntax = :expect
28
+ end
29
+
30
+ config.include( Loggability::SpecHelpers )
31
+ config.include( Chione::TestHelpers )
32
+ end
33
+
34
+
metadata ADDED
@@ -0,0 +1,250 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chione
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Michael Granger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQwwCgYDVQQDDANnZWQx
14
+ GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
15
+ HhcNMTUwNDAxMjEyNDEzWhcNMTYwMzMxMjEyNDEzWjA+MQwwCgYDVQQDDANnZWQx
16
+ GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
17
+ ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDb92mkyYwuGBg1oRxt2tkH
18
+ +Uo3LAsaL/APBfSLzy8o3+B3AUHKCjMUaVeBoZdWtMHB75X3VQlvXfZMyBxj59Vo
19
+ cDthr3zdao4HnyrzAIQf7BO5Y8KBwVD+yyXCD/N65TTwqsQnO3ie7U5/9ut1rnNr
20
+ OkOzAscMwkfQxBkXDzjvAWa6UF4c5c9kR/T79iA21kDx9+bUMentU59aCJtUcbxa
21
+ 7kcKJhPEYsk4OdxR9q2dphNMFDQsIdRO8rywX5FRHvcb+qnXC17RvxLHtOjysPtp
22
+ EWsYoZMxyCDJpUqbwoeiM+tAHoz2ABMv3Ahie3Qeb6+MZNAtMmaWfBx3dg2u+/WN
23
+ AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSZ0hCV
24
+ qoHr122fGKelqffzEQBhszAcBgNVHREEFTATgRFnZWRARmFlcmllTVVELm9yZzAc
25
+ BgNVHRIEFTATgRFnZWRARmFlcmllTVVELm9yZzANBgkqhkiG9w0BAQUFAAOCAQEA
26
+ lUKo3NXePpuvN3QGsOLJ6QhNd4+Q9Rz75GipuMrCl296V8QFkd2gg9EG44Pqtk+9
27
+ Zac8TkKc9bCSR0snakp+cCPplVvZF0/gMzkSTUJkDBHlNV16z73CyWpbQQa+iLJ4
28
+ uisI6gF2ZXK919MYLn2bFJfb7OsCvVfyTPqq8afPY+rq9vlf9ZPwU49AlD8bPRic
29
+ 0LX0gO5ykvETIOv+WgGcqp96ceNi9XVuJMh20uWuw6pmv/Ub2RqAf82jQSbpz09G
30
+ G8LHR7EjtPPmqCCunfyecJ6MmCNaiJCBxq2NYzyNmluPyHT8+0fuB5kccUVZm6CD
31
+ xn3DzOkDE6NYbk8gC9rTsA==
32
+ -----END CERTIFICATE-----
33
+ date: 2015-07-14 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: loggability
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0.11'
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '0.11'
49
+ - !ruby/object:Gem::Dependency
50
+ name: configurability
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '2.2'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '2.2'
63
+ - !ruby/object:Gem::Dependency
64
+ name: uuid
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '2.3'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '2.3'
77
+ - !ruby/object:Gem::Dependency
78
+ name: hoe-mercurial
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '1.4'
84
+ type: :development
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '1.4'
91
+ - !ruby/object:Gem::Dependency
92
+ name: hoe-deveiate
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '0.7'
98
+ type: :development
99
+ prerelease: false
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '0.7'
105
+ - !ruby/object:Gem::Dependency
106
+ name: hoe-highline
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '0.2'
112
+ type: :development
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: '0.2'
119
+ - !ruby/object:Gem::Dependency
120
+ name: rdoc
121
+ requirement: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: '4.0'
126
+ type: :development
127
+ prerelease: false
128
+ version_requirements: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: '4.0'
133
+ - !ruby/object:Gem::Dependency
134
+ name: simplecov
135
+ requirement: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '0.7'
140
+ type: :development
141
+ prerelease: false
142
+ version_requirements: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: '0.7'
147
+ - !ruby/object:Gem::Dependency
148
+ name: rdoc-generator-fivefish
149
+ requirement: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: '0.1'
154
+ type: :development
155
+ prerelease: false
156
+ version_requirements: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - "~>"
159
+ - !ruby/object:Gem::Version
160
+ version: '0.1'
161
+ - !ruby/object:Gem::Dependency
162
+ name: hoe
163
+ requirement: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - "~>"
166
+ - !ruby/object:Gem::Version
167
+ version: '3.13'
168
+ type: :development
169
+ prerelease: false
170
+ version_requirements: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - "~>"
173
+ - !ruby/object:Gem::Version
174
+ version: '3.13'
175
+ description: |-
176
+ An Entity/Component System framework inspired by Artemis.
177
+
178
+ This library is still experimental. I am writing it by extracting out ideas from
179
+ a multi-user game I'm working on, and things may change radically if I find
180
+ that parts of it don't work or could be done a better way.
181
+
182
+ That said, let me know if you're using it for anything and I'll try to keep
183
+ you abreast of any changes I'm considering, and I'm happy to chat about ideas
184
+ for making it better via email or the project's Gitter channel:
185
+
186
+ {rdoc-image:https://badges.gitter.im/Join%20Chat.svg}[https://gitter.im/ged/chione]
187
+ email:
188
+ - ged@FaerieMUD.org
189
+ executables: []
190
+ extensions: []
191
+ extra_rdoc_files:
192
+ - History.rdoc
193
+ - Manifest.txt
194
+ - README.rdoc
195
+ files:
196
+ - ".gemtest"
197
+ - ".rdoc_options"
198
+ - ".simplecov"
199
+ - ChangeLog
200
+ - History.rdoc
201
+ - Manifest.txt
202
+ - README.rdoc
203
+ - Rakefile
204
+ - lib/chione.rb
205
+ - lib/chione/aspect.rb
206
+ - lib/chione/assemblage.rb
207
+ - lib/chione/behaviors.rb
208
+ - lib/chione/component.rb
209
+ - lib/chione/entity.rb
210
+ - lib/chione/manager.rb
211
+ - lib/chione/mixins.rb
212
+ - lib/chione/system.rb
213
+ - lib/chione/world.rb
214
+ - spec/chione/aspect_spec.rb
215
+ - spec/chione/assemblage_spec.rb
216
+ - spec/chione/component_spec.rb
217
+ - spec/chione/entity_spec.rb
218
+ - spec/chione/manager_spec.rb
219
+ - spec/chione/mixins_spec.rb
220
+ - spec/chione/system_spec.rb
221
+ - spec/chione/world_spec.rb
222
+ - spec/chione_spec.rb
223
+ - spec/spec_helper.rb
224
+ homepage: http://faelidth.org/chione
225
+ licenses:
226
+ - BSD
227
+ metadata: {}
228
+ post_install_message:
229
+ rdoc_options:
230
+ - "--main"
231
+ - README.rdoc
232
+ require_paths:
233
+ - lib
234
+ required_ruby_version: !ruby/object:Gem::Requirement
235
+ requirements:
236
+ - - ">="
237
+ - !ruby/object:Gem::Version
238
+ version: 2.2.1
239
+ required_rubygems_version: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ requirements: []
245
+ rubyforge_project:
246
+ rubygems_version: 2.4.7
247
+ signing_key:
248
+ specification_version: 4
249
+ summary: An Entity/Component System framework inspired by Artemis
250
+ test_files: []
metadata.gz.sig ADDED
Binary file