chione 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.md +21 -0
- data/Manifest.txt +2 -2
- data/{README.rdoc → README.md} +22 -18
- data/Rakefile +15 -8
- data/lib/chione.rb +1 -1
- data/lib/chione/assemblage.rb +1 -1
- data/lib/chione/component.rb +27 -1
- data/lib/chione/mixins.rb +7 -7
- data/lib/chione/world.rb +12 -30
- metadata +51 -49
- metadata.gz.sig +0 -0
- data/.gemtest +0 -0
- data/History.rdoc +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3f59bc83b67172347b8bdfba8dde65806c4d166
|
4
|
+
data.tar.gz: 1e55f3d92ded7e6250ab83207d548a5a7c4da4a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e214f19a70f22f2556649740985d211918697acea54942fd76820f500e50f42100b9eed42ce31fbed112be5b82f54282c5a674487262cd0a8df40bacef61266
|
7
|
+
data.tar.gz: 75323d5fd8dd00fa7f78b22d5150e26e2112fb16c3a0b049ecce5753687bcc76cd3980f340515955607e49bad3c71420cefe31752243185007b85b9175e48ebb
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
## v0.0.3 [2017-01-04] Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
Enhancements:
|
4
|
+
|
5
|
+
- Add a proper #inspect to Component
|
6
|
+
|
7
|
+
Bugfixes:
|
8
|
+
|
9
|
+
- Fix misnamed attr in World, update to latest Configurability syntax
|
10
|
+
- Fix some documentation typos.
|
11
|
+
|
12
|
+
|
13
|
+
## v0.0.2 [2015-07-13] Michael Granger <ged@FaerieMUD.org>
|
14
|
+
|
15
|
+
Fix a couple of build problems.
|
16
|
+
|
17
|
+
|
18
|
+
## v0.0.1 (unreleased) [2015-07-13] Michael Granger <ged@FaerieMUD.org>
|
19
|
+
|
20
|
+
Initial release.
|
21
|
+
|
data/Manifest.txt
CHANGED
data/{README.rdoc → README.md}
RENAMED
@@ -1,12 +1,19 @@
|
|
1
|
-
|
1
|
+
# Chione
|
2
2
|
|
3
|
-
home
|
4
|
-
|
5
|
-
github :: http://github.com/ged/chione
|
6
|
-
docs :: http://faelidth.org/chione/docs
|
3
|
+
home
|
4
|
+
: http://faelidth.org/chione
|
7
5
|
|
6
|
+
code
|
7
|
+
: http://bitbucket.org/ged/chione
|
8
8
|
|
9
|
-
|
9
|
+
github
|
10
|
+
: http://github.com/ged/chione
|
11
|
+
|
12
|
+
docs
|
13
|
+
: http://faelidth.org/chione/docs
|
14
|
+
|
15
|
+
|
16
|
+
## Description
|
10
17
|
|
11
18
|
An Entity/Component System framework inspired by Artemis.
|
12
19
|
|
@@ -16,23 +23,20 @@ that parts of it don't work or could be done a better way.
|
|
16
23
|
|
17
24
|
That said, let me know if you're using it for anything and I'll try to keep
|
18
25
|
you abreast of any changes I'm considering, and I'm happy to chat about ideas
|
19
|
-
for making it better via email or
|
20
|
-
|
21
|
-
{rdoc-image:https://badges.gitter.im/Join%20Chat.svg}[https://gitter.im/ged/chione]
|
22
|
-
|
26
|
+
for making it better via email or whatever.
|
23
27
|
|
24
28
|
|
25
|
-
|
29
|
+
## Prerequisites
|
26
30
|
|
27
|
-
* Ruby 2.
|
31
|
+
* Ruby 2.3
|
28
32
|
|
29
33
|
|
30
|
-
|
34
|
+
## Installation
|
31
35
|
|
32
36
|
$ gem install chione
|
33
37
|
|
34
38
|
|
35
|
-
|
39
|
+
## Resources
|
36
40
|
|
37
41
|
Articles/posts on ECS:
|
38
42
|
|
@@ -49,10 +53,10 @@ Other ECS Frameworks:
|
|
49
53
|
* http://www.ashframework.org/ (ActionScript)
|
50
54
|
|
51
55
|
|
52
|
-
|
56
|
+
## Contributing
|
53
57
|
|
54
58
|
You can check out the current development source with Mercurial via its
|
55
|
-
{project page}[http://bitbucket.org/ged/chione]. Or if you prefer Git, via
|
59
|
+
{project page}[http://bitbucket.org/ged/chione]. Or if you prefer Git, via
|
56
60
|
{its Github mirror}[https://github.com/ged/chione].
|
57
61
|
|
58
62
|
After checking out the source, run:
|
@@ -63,9 +67,9 @@ This task will install any missing dependencies, run the tests/specs,
|
|
63
67
|
and generate the API documentation.
|
64
68
|
|
65
69
|
|
66
|
-
|
70
|
+
## License
|
67
71
|
|
68
|
-
Copyright (c) 2015, Michael Granger
|
72
|
+
Copyright (c) 2015-2017, Michael Granger
|
69
73
|
All rights reserved.
|
70
74
|
|
71
75
|
Redistribution and use in source and binary forms, with or without
|
data/Rakefile
CHANGED
@@ -18,21 +18,28 @@ Hoe.plugin :deveiate
|
|
18
18
|
Hoe.plugins.delete :rubyforge
|
19
19
|
|
20
20
|
hoespec = Hoe.spec 'chione' do |spec|
|
21
|
-
spec.readme_file = 'README.
|
22
|
-
spec.history_file = 'History.
|
23
|
-
spec.
|
21
|
+
spec.readme_file = 'README.md'
|
22
|
+
spec.history_file = 'History.md'
|
23
|
+
spec.extra_rdoc_files = FileList[ '*.rdoc', '*.md' ]
|
24
|
+
spec.license 'BSD-3-Clause'
|
25
|
+
spec.urls = {
|
26
|
+
home: 'http://deveiate.org/projects/LinguaThauma',
|
27
|
+
code: 'http://repo.deveiate.org/LinguaThauma',
|
28
|
+
docs: 'http://deveiate.org/code/LinguaThauma',
|
29
|
+
github: 'http://github.com/ged/LinguaThauma',
|
30
|
+
}
|
24
31
|
|
25
32
|
spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
26
33
|
|
27
|
-
spec.dependency 'loggability', '~> 0.
|
28
|
-
spec.dependency 'configurability', '~>
|
34
|
+
spec.dependency 'loggability', '~> 0.12'
|
35
|
+
spec.dependency 'configurability', '~> 3.0'
|
29
36
|
spec.dependency 'uuid', '~> 2.3'
|
30
37
|
|
31
|
-
spec.dependency 'hoe-deveiate', '~> 0.
|
32
|
-
spec.dependency 'simplecov', '~> 0.
|
38
|
+
spec.dependency 'hoe-deveiate', '~> 0.8', :developer
|
39
|
+
spec.dependency 'simplecov', '~> 0.12', :developer
|
33
40
|
spec.dependency 'rdoc-generator-fivefish', '~> 0.1', :developer
|
34
41
|
|
35
|
-
spec.require_ruby_version( '>=2.
|
42
|
+
spec.require_ruby_version( '>=2.3.3' )
|
36
43
|
spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
|
37
44
|
spec.check_history_on_release = true if spec.respond_to?( :check_history_on_release= )
|
38
45
|
|
data/lib/chione.rb
CHANGED
data/lib/chione/assemblage.rb
CHANGED
@@ -6,7 +6,7 @@ require 'loggability'
|
|
6
6
|
require 'chione' unless defined?( Chione )
|
7
7
|
|
8
8
|
|
9
|
-
# An Assemblage mixin for defining factories for
|
9
|
+
# An Assemblage mixin for defining factories for common entity configurations.
|
10
10
|
module Chione::Assemblage
|
11
11
|
extend Loggability
|
12
12
|
|
data/lib/chione/component.rb
CHANGED
@@ -1,10 +1,17 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
#encoding: utf-8
|
3
3
|
|
4
|
+
require 'loggability'
|
5
|
+
|
4
6
|
require 'chione' unless defined?( Chione )
|
5
7
|
|
6
8
|
# The Component (data) class
|
7
9
|
class Chione::Component
|
10
|
+
extend Loggability
|
11
|
+
|
12
|
+
# Loggability API -- log to the 'chione' logger
|
13
|
+
log_to :chione
|
14
|
+
|
8
15
|
|
9
16
|
# The Hash of fields implemented by the component
|
10
17
|
class << self
|
@@ -31,13 +38,32 @@ class Chione::Component
|
|
31
38
|
end
|
32
39
|
|
33
40
|
|
41
|
+
### Return a human-readable representation of the object suitable for debugging.
|
42
|
+
def inspect
|
43
|
+
fields_desc = self.fields_description
|
44
|
+
return "#<%p:%#x %s>" % [ self.class, self.object_id * 2, fields_desc ]
|
45
|
+
end
|
46
|
+
|
47
|
+
|
48
|
+
### Return a description of the fields this component has.
|
49
|
+
def fields_description
|
50
|
+
return self.class.fields.keys.collect do |name|
|
51
|
+
val = self.instance_variable_get( "@#{name}" )
|
52
|
+
"%s: %s" % [
|
53
|
+
name,
|
54
|
+
truncate_string( val.inspect, 20 )
|
55
|
+
]
|
56
|
+
end.join( ' ' )
|
57
|
+
end
|
58
|
+
|
59
|
+
|
34
60
|
#######
|
35
61
|
private
|
36
62
|
#######
|
37
63
|
|
38
64
|
### Make a deep copy of the specified +value+.
|
39
65
|
def deep_copy( value )
|
40
|
-
Marshal.load( Marshal.dump(value) )
|
66
|
+
return Marshal.load( Marshal.dump(value) )
|
41
67
|
end
|
42
68
|
|
43
69
|
end # class Chione::Component
|
data/lib/chione/mixins.rb
CHANGED
@@ -8,15 +8,15 @@ module Chione
|
|
8
8
|
|
9
9
|
# A collection of methods for declaring other methods.
|
10
10
|
#
|
11
|
-
#
|
12
|
-
#
|
11
|
+
# class MyClass
|
12
|
+
# extend Chione::MethodUtilities
|
13
13
|
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
14
|
+
# singleton_attr_accessor :types
|
15
|
+
# singleton_method_alias :kinds, :types
|
16
|
+
# end
|
17
17
|
#
|
18
|
-
#
|
19
|
-
#
|
18
|
+
# MyClass.types = [ :pheno, :proto, :stereo ]
|
19
|
+
# MyClass.kinds # => [:pheno, :proto, :stereo]
|
20
20
|
#
|
21
21
|
module MethodUtilities
|
22
22
|
|
data/lib/chione/world.rb
CHANGED
@@ -19,41 +19,23 @@ class Chione::World
|
|
19
19
|
log_to :chione
|
20
20
|
|
21
21
|
# Configurability API -- use the 'gameworld' section of the config
|
22
|
-
|
22
|
+
configurability :gameworld do
|
23
23
|
|
24
|
+
##
|
25
|
+
# :singleton-method:
|
26
|
+
# Configurable: The maximum number of seconds to wait for any one System
|
27
|
+
# or Manager thread to exit before killing it when shutting down.
|
28
|
+
setting :max_stop_wait, default: 5
|
24
29
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
timing_event_interval: 1
|
29
|
-
}
|
30
|
+
##
|
31
|
+
# :singleton-method:
|
32
|
+
# Configurable: The number of seconds between timing events.
|
33
|
+
setting :timing_event_interval, default: 1
|
30
34
|
|
31
|
-
|
32
|
-
##
|
33
|
-
# :singleton-method:
|
34
|
-
# Configurable: The maximum number of seconds to wait for any one System
|
35
|
-
# or Manager thread to exit before killing it when shutting down.
|
36
|
-
singleton_attr_accessor :max_stop_wait
|
37
|
-
@max_stop_wait = CONFIG_DEFAULTS[:max_stop_wait]
|
38
|
-
|
39
|
-
##
|
40
|
-
# :singleton-method:
|
41
|
-
# Configurable: The number of seconds between timing events.
|
42
|
-
singleton_attr_accessor :timing_event_interval
|
43
|
-
@timing_event_interval = CONFIG_DEFAULTS[ :timing_event_interval ]
|
44
|
-
|
45
|
-
|
46
|
-
### Configurability API -- configure the GameWorld.
|
47
|
-
def self::configure( config=nil )
|
48
|
-
config = self.defaults.merge( config || {} )
|
49
|
-
|
50
|
-
self.max_stop_wait = config[:max_stop_wait]
|
51
|
-
self.timing_event_interval = config[:timing_event_interval]
|
52
35
|
end
|
53
36
|
|
54
37
|
|
55
38
|
|
56
|
-
|
57
39
|
### Create a new Chione::World
|
58
40
|
def initialize
|
59
41
|
@entities = {}
|
@@ -93,7 +75,7 @@ class Chione::World
|
|
93
75
|
attr_reader :world_threads
|
94
76
|
|
95
77
|
# The Thread object running the World's IO reactor loop
|
96
|
-
attr_reader :
|
78
|
+
attr_reader :main_thread
|
97
79
|
|
98
80
|
# The Hash of event subscription callbacks registered with the world, keyed by
|
99
81
|
# event pattern.
|
@@ -325,7 +307,7 @@ class Chione::World
|
|
325
307
|
#########
|
326
308
|
|
327
309
|
### The loop the main thread executes after the world is started. The default
|
328
|
-
### implementation just broadcasts the +timing+ event, so will likely want to
|
310
|
+
### implementation just broadcasts the +timing+ event, so you will likely want to
|
329
311
|
### override this if the main thread should do something else.
|
330
312
|
def timing_loop
|
331
313
|
self.log.info "Starting timing loop."
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chione
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -10,27 +10,32 @@ bindir: bin
|
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
13
|
+
MIIEbDCCAtSgAwIBAgIBATANBgkqhkiG9w0BAQsFADA+MQwwCgYDVQQDDANnZWQx
|
14
14
|
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
15
|
-
|
15
|
+
HhcNMTYwODIwMTgxNzQyWhcNMTcwODIwMTgxNzQyWjA+MQwwCgYDVQQDDANnZWQx
|
16
16
|
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
17
|
+
ggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC/JWGRHO+USzR97vXjkFgt
|
18
|
+
83qeNf2KHkcvrRTSnR64i6um/ziin0I0oX23H7VYrDJC9A/uoUa5nGRJS5Zw/+wW
|
19
|
+
ENcvWVZS4iUzi4dsYJGY6yEOsXh2CcF46+QevV8iE+UmbkU75V7Dy1JCaUOyizEt
|
20
|
+
TH5UHsOtUU7k9TYARt/TgYZKuaoAMZZd5qyVqhF1vV+7/Qzmp89NGflXf2xYP26a
|
21
|
+
4MAX2qqKX/FKXqmFO+AGsbwYTEds1mksBF3fGsFgsQWxftG8GfZQ9+Cyu2+l1eOw
|
22
|
+
cZ+lPcg834G9DrqW2zhqUoLr1MTly4pqxYGb7XoDhoR7dd1kFE2a067+DzWC/ADt
|
23
|
+
+QkcqWUm5oh1fN0eqr7NsZlVJDulFgdiiYPQiIN7UNsii4Wc9aZqBoGcYfBeQNPZ
|
24
|
+
soo/6za/bWajOKUmDhpqvaiRv9EDpVLzuj53uDoukMMwxCMfgb04+ckQ0t2G7wqc
|
25
|
+
/D+K9JW9DDs3Yjgv9k4h7YMhW5gftosd+NkNC/+Y2CkCAwEAAaN1MHMwCQYDVR0T
|
26
|
+
BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFHKN/nkRusdqCJEuq3lgB3fJvyTg
|
27
|
+
MBwGA1UdEQQVMBOBEWdlZEBGYWVyaWVNVUQub3JnMBwGA1UdEgQVMBOBEWdlZEBG
|
28
|
+
YWVyaWVNVUQub3JnMA0GCSqGSIb3DQEBCwUAA4IBgQAPJzKiT0zBU7kpqe0aS2qb
|
29
|
+
FI0PJ4y5I8buU4IZGUD5NEt/N7pZNfOyBxkrZkXhS44Fp+xwBH5ebLbq/WY78Bqd
|
30
|
+
db0z6ZgW4LMYMpWFfbXsRbd9TU2f52L8oMAhxOvF7Of5qJMVWuFQ8FPagk2iHrdH
|
31
|
+
inYLQagqAF6goWTXgAJCdPd6SNeeSNqA6vlY7CV1Jh5kfNJJ6xu/CVij1GzCLu/5
|
32
|
+
DMOr26DBv+qLJRRC/2h34uX71q5QgeOyxvMg+7V3u/Q06DXyQ2VgeeqiwDFFpEH0
|
33
|
+
PFkdPO6ZqbTRcLfNH7mFgCBJjsfSjJrn0sPBlYyOXgCoByfZnZyrIMH/UY+lgQqS
|
34
|
+
6Von1VDsfQm0eJh5zYZD64ZF86phSR7mUX3mXItwH04HrZwkWpvgd871DZVR3i1n
|
35
|
+
w8aNA5re5+Rt/Vvjxj5AcEnZnZiz5x959NaddQocX32Z1unHw44pzRNUur1GInfW
|
36
|
+
p4vpx2kUSFSAGjtCbDGTNV2AH8w9OU4xEmNz8c5lyoA=
|
32
37
|
-----END CERTIFICATE-----
|
33
|
-
date:
|
38
|
+
date: 2017-01-04 00:00:00.000000000 Z
|
34
39
|
dependencies:
|
35
40
|
- !ruby/object:Gem::Dependency
|
36
41
|
name: loggability
|
@@ -38,28 +43,28 @@ dependencies:
|
|
38
43
|
requirements:
|
39
44
|
- - "~>"
|
40
45
|
- !ruby/object:Gem::Version
|
41
|
-
version: '0.
|
46
|
+
version: '0.12'
|
42
47
|
type: :runtime
|
43
48
|
prerelease: false
|
44
49
|
version_requirements: !ruby/object:Gem::Requirement
|
45
50
|
requirements:
|
46
51
|
- - "~>"
|
47
52
|
- !ruby/object:Gem::Version
|
48
|
-
version: '0.
|
53
|
+
version: '0.12'
|
49
54
|
- !ruby/object:Gem::Dependency
|
50
55
|
name: configurability
|
51
56
|
requirement: !ruby/object:Gem::Requirement
|
52
57
|
requirements:
|
53
58
|
- - "~>"
|
54
59
|
- !ruby/object:Gem::Version
|
55
|
-
version: '
|
60
|
+
version: '3.0'
|
56
61
|
type: :runtime
|
57
62
|
prerelease: false
|
58
63
|
version_requirements: !ruby/object:Gem::Requirement
|
59
64
|
requirements:
|
60
65
|
- - "~>"
|
61
66
|
- !ruby/object:Gem::Version
|
62
|
-
version: '
|
67
|
+
version: '3.0'
|
63
68
|
- !ruby/object:Gem::Dependency
|
64
69
|
name: uuid
|
65
70
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,14 +99,14 @@ dependencies:
|
|
94
99
|
requirements:
|
95
100
|
- - "~>"
|
96
101
|
- !ruby/object:Gem::Version
|
97
|
-
version: '0.
|
102
|
+
version: '0.8'
|
98
103
|
type: :development
|
99
104
|
prerelease: false
|
100
105
|
version_requirements: !ruby/object:Gem::Requirement
|
101
106
|
requirements:
|
102
107
|
- - "~>"
|
103
108
|
- !ruby/object:Gem::Version
|
104
|
-
version: '0.
|
109
|
+
version: '0.8'
|
105
110
|
- !ruby/object:Gem::Dependency
|
106
111
|
name: hoe-highline
|
107
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,61 +122,61 @@ dependencies:
|
|
117
122
|
- !ruby/object:Gem::Version
|
118
123
|
version: '0.2'
|
119
124
|
- !ruby/object:Gem::Dependency
|
120
|
-
name:
|
125
|
+
name: simplecov
|
121
126
|
requirement: !ruby/object:Gem::Requirement
|
122
127
|
requirements:
|
123
128
|
- - "~>"
|
124
129
|
- !ruby/object:Gem::Version
|
125
|
-
version: '
|
130
|
+
version: '0.12'
|
126
131
|
type: :development
|
127
132
|
prerelease: false
|
128
133
|
version_requirements: !ruby/object:Gem::Requirement
|
129
134
|
requirements:
|
130
135
|
- - "~>"
|
131
136
|
- !ruby/object:Gem::Version
|
132
|
-
version: '
|
137
|
+
version: '0.12'
|
133
138
|
- !ruby/object:Gem::Dependency
|
134
|
-
name:
|
139
|
+
name: rdoc-generator-fivefish
|
135
140
|
requirement: !ruby/object:Gem::Requirement
|
136
141
|
requirements:
|
137
142
|
- - "~>"
|
138
143
|
- !ruby/object:Gem::Version
|
139
|
-
version: '0.
|
144
|
+
version: '0.1'
|
140
145
|
type: :development
|
141
146
|
prerelease: false
|
142
147
|
version_requirements: !ruby/object:Gem::Requirement
|
143
148
|
requirements:
|
144
149
|
- - "~>"
|
145
150
|
- !ruby/object:Gem::Version
|
146
|
-
version: '0.
|
151
|
+
version: '0.1'
|
147
152
|
- !ruby/object:Gem::Dependency
|
148
|
-
name: rdoc
|
153
|
+
name: rdoc
|
149
154
|
requirement: !ruby/object:Gem::Requirement
|
150
155
|
requirements:
|
151
156
|
- - "~>"
|
152
157
|
- !ruby/object:Gem::Version
|
153
|
-
version: '0
|
158
|
+
version: '4.0'
|
154
159
|
type: :development
|
155
160
|
prerelease: false
|
156
161
|
version_requirements: !ruby/object:Gem::Requirement
|
157
162
|
requirements:
|
158
163
|
- - "~>"
|
159
164
|
- !ruby/object:Gem::Version
|
160
|
-
version: '0
|
165
|
+
version: '4.0'
|
161
166
|
- !ruby/object:Gem::Dependency
|
162
167
|
name: hoe
|
163
168
|
requirement: !ruby/object:Gem::Requirement
|
164
169
|
requirements:
|
165
170
|
- - "~>"
|
166
171
|
- !ruby/object:Gem::Version
|
167
|
-
version: '3.
|
172
|
+
version: '3.15'
|
168
173
|
type: :development
|
169
174
|
prerelease: false
|
170
175
|
version_requirements: !ruby/object:Gem::Requirement
|
171
176
|
requirements:
|
172
177
|
- - "~>"
|
173
178
|
- !ruby/object:Gem::Version
|
174
|
-
version: '3.
|
179
|
+
version: '3.15'
|
175
180
|
description: |-
|
176
181
|
An Entity/Component System framework inspired by Artemis.
|
177
182
|
|
@@ -181,25 +186,22 @@ description: |-
|
|
181
186
|
|
182
187
|
That said, let me know if you're using it for anything and I'll try to keep
|
183
188
|
you abreast of any changes I'm considering, and I'm happy to chat about ideas
|
184
|
-
for making it better via email or
|
185
|
-
|
186
|
-
{rdoc-image:https://badges.gitter.im/Join%20Chat.svg}[https://gitter.im/ged/chione]
|
189
|
+
for making it better via email or whatever.
|
187
190
|
email:
|
188
191
|
- ged@FaerieMUD.org
|
189
192
|
executables: []
|
190
193
|
extensions: []
|
191
194
|
extra_rdoc_files:
|
192
|
-
- History.
|
195
|
+
- History.md
|
193
196
|
- Manifest.txt
|
194
|
-
- README.
|
197
|
+
- README.md
|
195
198
|
files:
|
196
|
-
- ".gemtest"
|
197
199
|
- ".rdoc_options"
|
198
200
|
- ".simplecov"
|
199
201
|
- ChangeLog
|
200
|
-
- History.
|
202
|
+
- History.md
|
201
203
|
- Manifest.txt
|
202
|
-
- README.
|
204
|
+
- README.md
|
203
205
|
- Rakefile
|
204
206
|
- lib/chione.rb
|
205
207
|
- lib/chione/aspect.rb
|
@@ -221,21 +223,21 @@ files:
|
|
221
223
|
- spec/chione/world_spec.rb
|
222
224
|
- spec/chione_spec.rb
|
223
225
|
- spec/spec_helper.rb
|
224
|
-
homepage: http://
|
226
|
+
homepage: http://deveiate.org/projects/LinguaThauma
|
225
227
|
licenses:
|
226
|
-
- BSD
|
228
|
+
- BSD-3-Clause
|
227
229
|
metadata: {}
|
228
230
|
post_install_message:
|
229
231
|
rdoc_options:
|
230
232
|
- "--main"
|
231
|
-
- README.
|
233
|
+
- README.md
|
232
234
|
require_paths:
|
233
235
|
- lib
|
234
236
|
required_ruby_version: !ruby/object:Gem::Requirement
|
235
237
|
requirements:
|
236
238
|
- - ">="
|
237
239
|
- !ruby/object:Gem::Version
|
238
|
-
version: 2.
|
240
|
+
version: 2.3.3
|
239
241
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
240
242
|
requirements:
|
241
243
|
- - ">="
|
@@ -243,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
243
245
|
version: '0'
|
244
246
|
requirements: []
|
245
247
|
rubyforge_project:
|
246
|
-
rubygems_version: 2.
|
248
|
+
rubygems_version: 2.6.8
|
247
249
|
signing_key:
|
248
250
|
specification_version: 4
|
249
251
|
summary: An Entity/Component System framework inspired by Artemis
|
metadata.gz.sig
CHANGED
Binary file
|
data/.gemtest
DELETED
File without changes
|