chione 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.md CHANGED
@@ -1,3 +1,15 @@
1
+ # Release History for chione
2
+
3
+ ---
4
+
5
+ ## v0.11.0 [2020-03-03] Michael Granger <ged@FaerieMUD.org>
6
+
7
+ Improvements:
8
+
9
+ - Tweak timing loop settings
10
+ - Update for Ruby 2.7
11
+
12
+
1
13
  ## v0.10.0 [2018-07-20] Michael Granger <ged@FaerieMUD.org>
2
14
 
3
15
  Enhancements:
data/README.md CHANGED
@@ -1,16 +1,16 @@
1
1
  # Chione
2
2
 
3
3
  home
4
- : http://faelidth.org/chione
4
+ : https://faelidth.org/chione
5
5
 
6
6
  code
7
- : http://bitbucket.org/ged/chione
7
+ : https://hg.sr.ht/~ged/chione
8
8
 
9
9
  github
10
- : http://github.com/ged/chione
10
+ : https://github.com/ged/chione
11
11
 
12
12
  docs
13
- : http://faelidth.org/chione/docs
13
+ : https://faelidth.org/chione/docs
14
14
 
15
15
 
16
16
  ## Description
@@ -28,7 +28,7 @@ for making it better via email or whatever.
28
28
 
29
29
  ## Prerequisites
30
30
 
31
- * Ruby 2.3
31
+ * Ruby 2.5
32
32
 
33
33
 
34
34
  ## Installation
@@ -60,7 +60,7 @@ Other ECS Frameworks:
60
60
  ## Contributing
61
61
 
62
62
  You can check out the current development source with Mercurial via its
63
- [project page][bitbucket]. Or if you prefer Git, via
63
+ [project page][sourcehut]. Or if you prefer Git, via
64
64
  [its Github mirror][github].
65
65
 
66
66
  After checking out the source, run:
@@ -71,9 +71,14 @@ This task will install any missing dependencies, run the tests/specs,
71
71
  and generate the API documentation.
72
72
 
73
73
 
74
+ ## Authors
75
+
76
+ - Michael Granger <ged@faeriemud.org>
77
+
78
+
74
79
  ## License
75
80
 
76
- Copyright (c) 2015-2018, Michael Granger
81
+ Copyright (c) 2015-2020, Michael Granger
77
82
  All rights reserved.
78
83
 
79
84
  Redistribution and use in source and binary forms, with or without
@@ -102,6 +107,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
102
107
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
103
108
 
104
109
 
105
- [bitbucket]: http://bitbucket.org/ged/chione
106
110
  [github]: https://github.com/ged/chione
111
+ [sourcehut]: https://hg.sr.ht/~ged/chione
107
112
 
data/Rakefile CHANGED
@@ -1,108 +1,10 @@
1
- #!/usr/bin/env rake
1
+ #!/usr/bin/env ruby -S rake
2
2
 
3
- require 'rake/clean'
4
3
 
5
- begin
6
- require 'hoe'
7
- rescue LoadError
8
- abort "This Rakefile requires 'hoe' (gem install hoe)"
9
- end
10
-
11
- GEMSPEC = 'chione.gemspec'
12
-
13
-
14
- Hoe.plugin :mercurial
15
- Hoe.plugin :signing
16
- Hoe.plugin :deveiate
17
-
18
- Hoe.plugins.delete :rubyforge
19
-
20
- hoespec = Hoe.spec 'chione' do |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/chione',
27
- code: 'http://repo.deveiate.org/chione',
28
- docs: 'http://deveiate.org/code/chione',
29
- github: 'http://github.com/ged/chione',
30
- }
31
-
32
- spec.developer 'Michael Granger', 'ged@FaerieMUD.org'
4
+ require 'rake/deveiate'
33
5
 
34
- spec.dependency 'loggability', '~> 0.12'
35
- spec.dependency 'configurability', '~> 3.0'
36
- spec.dependency 'pluggability', '~> 0.4'
37
- spec.dependency 'uuid', '~> 2.3'
38
- spec.dependency 'deprecatable', '~> 1.0'
39
- spec.dependency 'fluent_fixtures', '~> 0.6'
40
- spec.dependency 'faker', '~> 1.8'
41
6
 
42
- spec.dependency 'hoe-deveiate', '~> 0.10', :developer
43
- spec.dependency 'simplecov', '~> 0.12', :developer
44
- spec.dependency 'rdoc-generator-fivefish', '~> 0.4', :developer
45
-
46
- spec.require_ruby_version( '>=2.5.0' )
47
- spec.hg_sign_tags = true if spec.respond_to?( :hg_sign_tags= )
48
- spec.check_history_on_release = true if spec.respond_to?( :check_history_on_release= )
49
-
50
- spec.rdoc_locations << "yhaliwell:/usr/local/www/public/chione/docs"
7
+ Rake::DevEiate.setup( 'chione' ) do |project|
8
+ project.publish_to = 'deveiate:/usr/local/www/public/code'
51
9
  end
52
10
 
53
-
54
-
55
- ENV['VERSION'] ||= hoespec.spec.version.to_s
56
-
57
- # Ensure the specs pass before checking in
58
- task 'hg:precheckin' => [ :check_history, :check_manifest, :gemspec, :spec ]
59
-
60
- task :test => :spec
61
-
62
- # Rebuild the ChangeLog immediately before release
63
- task :prerelease => 'ChangeLog'
64
- CLOBBER.include( 'ChangeLog' )
65
-
66
- desc "Build a coverage report"
67
- task :coverage do
68
- ENV["COVERAGE"] = 'yes'
69
- Rake::Task[:spec].invoke
70
- end
71
- CLOBBER.include( 'coverage' )
72
-
73
-
74
- # Use the fivefish formatter for docs generated from development checkout
75
- if File.directory?( '.hg' )
76
- require 'rdoc/task'
77
-
78
- Rake::Task[ 'docs' ].clear
79
- RDoc::Task.new( 'docs' ) do |rdoc|
80
- rdoc.main = "README.md"
81
- rdoc.markup = 'markdown'
82
- rdoc.rdoc_files.include( "*.md", "ChangeLog", "lib/**/*.rb" )
83
- rdoc.generator = :fivefish
84
- rdoc.title = 'Chione'
85
- rdoc.rdoc_dir = 'doc'
86
- end
87
- end
88
-
89
- file __FILE__
90
- file 'lib/chione.rb'
91
- file 'Manifest.txt'
92
-
93
- task :gemspec => GEMSPEC
94
- file GEMSPEC => [ __FILE__, 'Manifest.txt', 'lib/chione.rb' ]
95
- task GEMSPEC do |task|
96
- Rake.application.trace "Updating gemspec"
97
- spec = $hoespec.spec
98
- spec.files.delete( '.gemtest' )
99
- spec.signing_key = nil
100
- spec.cert_chain = ['certs/ged.pem']
101
- spec.version = "#{spec.version.bump}.0.pre#{Time.now.strftime("%Y%m%d%H%M%S")}"
102
- File.open( task.name, 'w' ) do |fh|
103
- fh.write( spec.to_ruby )
104
- end
105
- end
106
-
107
- CLOBBER.include( GEMSPEC.to_s )
108
-
@@ -12,7 +12,7 @@ module Chione
12
12
  extend Loggability
13
13
 
14
14
  # Gem version
15
- VERSION = '0.10.0'
15
+ VERSION = '0.11.0'
16
16
 
17
17
 
18
18
  # Loggability API -- set up a log host
@@ -55,7 +55,7 @@ class Chione::Entity
55
55
  ### subclass of Chione::Component, an instance of such a subclass, or the name
56
56
  ### of a subclass. It will replace any existing component of the same type.
57
57
  def add_component( component, **init_values )
58
- self.world.add_component_to( self, component, init_values )
58
+ self.world.add_component_to( self, component, **init_values )
59
59
  end
60
60
 
61
61
 
@@ -181,7 +181,7 @@ module Chione
181
181
  newhash = {}
182
182
 
183
183
  hash.each do |key,val|
184
- keysym = key.to_s.dup.untaint.to_sym
184
+ keysym = key.to_s.dup.to_sym
185
185
 
186
186
  if val.is_a?( Hash )
187
187
  newhash[ keysym ] = symbolify_keys( val )
@@ -155,6 +155,7 @@ class Chione::System
155
155
 
156
156
  ### Stop the system.
157
157
  def stop
158
+ self.log.info "Stopping the %p system" % [ self.class ]
158
159
  self.class.event_handlers.each do |_, method_name|
159
160
  callback = self.method( method_name )
160
161
  self.log.info "Unregistering subscription for %p." % [ callback ]
@@ -25,12 +25,16 @@ class Chione::World
25
25
  # :singleton-method:
26
26
  # Configurable: The maximum number of seconds to wait for any one System
27
27
  # or Manager thread to exit before killing it when shutting down.
28
- setting :max_stop_wait, default: 5
28
+ setting :max_stop_wait, default: 5 do |value|
29
+ Integer( value )
30
+ end
29
31
 
30
32
  ##
31
33
  # :singleton-method:
32
34
  # Configurable: The number of seconds between timing events.
33
- setting :timing_event_interval, default: 1
35
+ setting :timing_event_interval, default: 1 do |value|
36
+ Float( value )
37
+ end
34
38
 
35
39
  end
36
40
 
@@ -210,7 +214,7 @@ class Chione::World
210
214
  self.world_threads.list.each do |thr|
211
215
  next if thr == @main_thread
212
216
  self.log.debug " killing: %p" % [ thr ]
213
- thr.join( self.class.max_stop_wait )
217
+ thr.join( Chione::World.max_stop_wait )
214
218
  end
215
219
  end
216
220
 
@@ -233,8 +237,8 @@ class Chione::World
233
237
 
234
238
  ### Subscribe to events with the specified +event_name+. Returns the callback object
235
239
  ### for later unsubscribe calls.
236
- def subscribe( event_name, callback=nil )
237
- callback = Proc.new if !callback && block_given?
240
+ def subscribe( event_name, callback=nil, &block )
241
+ callback ||= block
238
242
 
239
243
  raise LocalJumpError, "no callback given" unless callback
240
244
  raise ArgumentError, "callback is not callable" unless callback.respond_to?( :call )
@@ -543,12 +547,12 @@ class Chione::World
543
547
  ### implementation just broadcasts the +timing+ event, so you will likely want to
544
548
  ### override this if the main thread should do something else.
545
549
  def timing_loop
546
- self.log.info "Starting timing loop."
547
550
  last_timing_event = Time.now
548
- interval = self.class.timing_event_interval
551
+ interval = Chione::World.timing_event_interval
549
552
  self.defer_events = false
550
553
  self.tick_count = 0
551
554
 
555
+ self.log.info "Starting timing loop with interval = %0.3fs." % [ interval ]
552
556
  loop do
553
557
  previous_time, last_timing_event = last_timing_event, Time.now
554
558
  self.tick( last_timing_event - previous_time )
@@ -8,7 +8,7 @@ require 'chione/component'
8
8
  require 'chione/entity'
9
9
  require 'chione/world'
10
10
 
11
- describe Chione::Archetype do
11
+ RSpec.describe Chione::Archetype do
12
12
 
13
13
  let( :world ) { Chione::World.new }
14
14
 
@@ -7,7 +7,7 @@ require 'chione/component'
7
7
  require 'chione/fixtures'
8
8
 
9
9
 
10
- describe Chione::Aspect do
10
+ RSpec.describe Chione::Aspect do
11
11
 
12
12
  before( :all ) do
13
13
  Chione::Fixtures.load( :entities )
@@ -5,7 +5,7 @@ require_relative '../spec_helper'
5
5
  require 'chione/component'
6
6
 
7
7
 
8
- describe Chione::Component do
8
+ RSpec.describe Chione::Component do
9
9
 
10
10
  describe "concrete subclasses" do
11
11
 
@@ -6,7 +6,7 @@ require 'chione/entity'
6
6
  require 'chione/component'
7
7
 
8
8
 
9
- describe Chione::Entity do
9
+ RSpec.describe Chione::Entity do
10
10
 
11
11
  before( :all ) do
12
12
  @component_classes = Chione::Component.derivatives.dup
@@ -6,7 +6,7 @@ require 'chione/iterating_system'
6
6
  require 'chione/fixtures'
7
7
 
8
8
 
9
- describe Chione::IteratingSystem do
9
+ RSpec.describe Chione::IteratingSystem do
10
10
 
11
11
  before( :all ) do
12
12
  Chione::Fixtures.load( :entities )
@@ -6,7 +6,7 @@ require 'chione/manager'
6
6
  require 'chione/world'
7
7
 
8
8
 
9
- describe Chione::Manager do
9
+ RSpec.describe Chione::Manager do
10
10
 
11
11
  let( :world ) { Chione::World.new }
12
12
 
@@ -5,7 +5,7 @@ require_relative '../spec_helper'
5
5
  require 'chione/mixins'
6
6
 
7
7
 
8
- describe Chione, "mixins" do
8
+ RSpec.describe Chione, "mixins" do
9
9
 
10
10
  describe Chione::MethodUtilities, 'used to extend a class' do
11
11
 
@@ -194,16 +194,6 @@ describe Chione, "mixins" do
194
194
  expect( copy.default_proc ).to eq( original.default_proc )
195
195
  end
196
196
 
197
- it "preserves taintedness of copied objects" do
198
- original = Object.new
199
- original.taint
200
-
201
- copy = Chione::DataUtilities.deep_copy( original )
202
-
203
- expect( copy ).to_not be( original )
204
- expect( copy ).to be_tainted()
205
- end
206
-
207
197
  it "preserves frozen-ness of copied objects" do
208
198
  original = Object.new
209
199
  original.freeze
@@ -6,7 +6,7 @@ require 'chione/system'
6
6
  require 'chione/fixtures'
7
7
 
8
8
 
9
- describe Chione::System do
9
+ RSpec.describe Chione::System do
10
10
 
11
11
  before( :all ) do
12
12
  Chione::Fixtures.load( :entities )
@@ -12,7 +12,7 @@ require 'chione/manager'
12
12
  require 'chione/system'
13
13
 
14
14
 
15
- describe Chione::World do
15
+ RSpec.describe Chione::World do
16
16
 
17
17
  let( :world ) { described_class.new }
18
18
 
@@ -4,7 +4,7 @@ require_relative 'spec_helper'
4
4
 
5
5
  require 'chione'
6
6
 
7
- describe Chione do
7
+ RSpec.describe Chione do
8
8
 
9
9
  after( :all ) do
10
10
  Chione::Component.derivatives.clear
@@ -21,17 +21,22 @@ Faker::Config.locale = :en
21
21
 
22
22
 
23
23
  RSpec.configure do |config|
24
- # include Chione::TestHelpers
24
+ config.mock_with( :rspec ) do |mock|
25
+ mock.syntax = :expect
26
+ end
25
27
 
26
28
  SPEC_DIR = Pathname( __FILE__ ).dirname
27
29
  SPEC_DATA_DIR = SPEC_DIR + 'data'
28
30
 
29
- config.run_all_when_everything_filtered = true
31
+ config.disable_monkey_patching!
32
+ config.example_status_persistence_file_path = "spec/.status"
30
33
  config.filter_run :focus
31
- config.order = 'random'
32
- config.mock_with( :rspec ) do |mock|
33
- mock.syntax = :expect
34
- end
34
+ config.filter_run_when_matching :focus
35
+ config.order = :random
36
+ config.profile_examples = 5
37
+ config.run_all_when_everything_filtered = true
38
+ config.shared_context_metadata_behavior = :apply_to_host_groups
39
+ # config.warnings = true
35
40
 
36
41
  config.include( Loggability::SpecHelpers )
37
42
  config.include( Chione::TestHelpers )
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.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Granger
@@ -10,32 +10,31 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- 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
- 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
- HhcNMTcwOTI3MDAzMDQ0WhcNMTgwOTI3MDAzMDQ0WjA+MQwwCgYDVQQDDANnZWQx
16
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- X0qdrKi+2aZZ0NGuFj9AItBsVmAvkBGIpX4TEKQp5haEbPpmaqO5nIIhV26PXmyT
36
- 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
35
+ XrxOxp8o0uOkU7FdLSGsyqJ2LzsR4obN
37
36
  -----END CERTIFICATE-----
38
- date: 2018-07-20 00:00:00.000000000 Z
37
+ date: 2020-03-04 00:00:00.000000000 Z
39
38
  dependencies:
40
39
  - !ruby/object:Gem::Dependency
41
40
  name: loggability
@@ -43,28 +42,28 @@ dependencies:
43
42
  requirements:
44
43
  - - "~>"
45
44
  - !ruby/object:Gem::Version
46
- version: '0.12'
45
+ version: '0.17'
47
46
  type: :runtime
48
47
  prerelease: false
49
48
  version_requirements: !ruby/object:Gem::Requirement
50
49
  requirements:
51
50
  - - "~>"
52
51
  - !ruby/object:Gem::Version
53
- version: '0.12'
52
+ version: '0.17'
54
53
  - !ruby/object:Gem::Dependency
55
54
  name: configurability
56
55
  requirement: !ruby/object:Gem::Requirement
57
56
  requirements:
58
57
  - - "~>"
59
58
  - !ruby/object:Gem::Version
60
- version: '3.0'
59
+ version: '4.0'
61
60
  type: :runtime
62
61
  prerelease: false
63
62
  version_requirements: !ruby/object:Gem::Requirement
64
63
  requirements:
65
64
  - - "~>"
66
65
  - !ruby/object:Gem::Version
67
- version: '3.0'
66
+ version: '4.0'
68
67
  - !ruby/object:Gem::Dependency
69
68
  name: pluggability
70
69
  requirement: !ruby/object:Gem::Requirement
@@ -113,14 +112,14 @@ dependencies:
113
112
  requirements:
114
113
  - - "~>"
115
114
  - !ruby/object:Gem::Version
116
- version: '0.6'
115
+ version: '0.8'
117
116
  type: :runtime
118
117
  prerelease: false
119
118
  version_requirements: !ruby/object:Gem::Requirement
120
119
  requirements:
121
120
  - - "~>"
122
121
  - !ruby/object:Gem::Version
123
- version: '0.6'
122
+ version: '0.8'
124
123
  - !ruby/object:Gem::Dependency
125
124
  name: faker
126
125
  requirement: !ruby/object:Gem::Requirement
@@ -136,47 +135,19 @@ dependencies:
136
135
  - !ruby/object:Gem::Version
137
136
  version: '1.8'
138
137
  - !ruby/object:Gem::Dependency
139
- name: hoe-mercurial
140
- requirement: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - "~>"
143
- - !ruby/object:Gem::Version
144
- version: '1.4'
145
- type: :development
146
- prerelease: false
147
- version_requirements: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
150
- - !ruby/object:Gem::Version
151
- version: '1.4'
152
- - !ruby/object:Gem::Dependency
153
- name: hoe-deveiate
154
- requirement: !ruby/object:Gem::Requirement
155
- requirements:
156
- - - "~>"
157
- - !ruby/object:Gem::Version
158
- version: '0.10'
159
- type: :development
160
- prerelease: false
161
- version_requirements: !ruby/object:Gem::Requirement
162
- requirements:
163
- - - "~>"
164
- - !ruby/object:Gem::Version
165
- version: '0.10'
166
- - !ruby/object:Gem::Dependency
167
- name: hoe-highline
138
+ name: rake-deveiate
168
139
  requirement: !ruby/object:Gem::Requirement
169
140
  requirements:
170
141
  - - "~>"
171
142
  - !ruby/object:Gem::Version
172
- version: '0.2'
143
+ version: '0.11'
173
144
  type: :development
174
145
  prerelease: false
175
146
  version_requirements: !ruby/object:Gem::Requirement
176
147
  requirements:
177
148
  - - "~>"
178
149
  - !ruby/object:Gem::Version
179
- version: '0.2'
150
+ version: '0.11'
180
151
  - !ruby/object:Gem::Dependency
181
152
  name: simplecov
182
153
  requirement: !ruby/object:Gem::Requirement
@@ -205,58 +176,12 @@ dependencies:
205
176
  - - "~>"
206
177
  - !ruby/object:Gem::Version
207
178
  version: '0.4'
208
- - !ruby/object:Gem::Dependency
209
- name: rdoc
210
- requirement: !ruby/object:Gem::Requirement
211
- requirements:
212
- - - ">="
213
- - !ruby/object:Gem::Version
214
- version: '4.0'
215
- - - "<"
216
- - !ruby/object:Gem::Version
217
- version: '6'
218
- type: :development
219
- prerelease: false
220
- version_requirements: !ruby/object:Gem::Requirement
221
- requirements:
222
- - - ">="
223
- - !ruby/object:Gem::Version
224
- version: '4.0'
225
- - - "<"
226
- - !ruby/object:Gem::Version
227
- version: '6'
228
- - !ruby/object:Gem::Dependency
229
- name: hoe
230
- requirement: !ruby/object:Gem::Requirement
231
- requirements:
232
- - - "~>"
233
- - !ruby/object:Gem::Version
234
- version: '3.17'
235
- type: :development
236
- prerelease: false
237
- version_requirements: !ruby/object:Gem::Requirement
238
- requirements:
239
- - - "~>"
240
- - !ruby/object:Gem::Version
241
- version: '3.17'
242
- description: |-
243
- An Entity/Component System framework inspired by Artemis.
244
-
245
- This library is still experimental. I am writing it by extracting out ideas from
246
- a multi-user game I'm working on, and things may change radically if I find
247
- that parts of it don't work or could be done a better way.
248
-
249
- That said, let me know if you're using it for anything and I'll try to keep
250
- you abreast of any changes I'm considering, and I'm happy to chat about ideas
251
- for making it better via email or whatever.
179
+ description: An Entity/Component System framework inspired by Artemis.
252
180
  email:
253
- - ged@FaerieMUD.org
181
+ - ged@faeriemud.org
254
182
  executables: []
255
183
  extensions: []
256
- extra_rdoc_files:
257
- - History.md
258
- - Manifest.txt
259
- - README.md
184
+ extra_rdoc_files: []
260
185
  files:
261
186
  - ".rdoc_options"
262
187
  - ".simplecov"
@@ -290,30 +215,31 @@ files:
290
215
  - spec/chione/world_spec.rb
291
216
  - spec/chione_spec.rb
292
217
  - spec/spec_helper.rb
293
- homepage: http://deveiate.org/projects/chione
218
+ homepage: https://faelidth.org/chione
294
219
  licenses:
295
220
  - BSD-3-Clause
296
- metadata: {}
221
+ metadata:
222
+ homepage_uri: https://faelidth.org/chione
223
+ documentation_uri: https://faelidth.org/chione/docs
224
+ source_uri: https://hg.sr.ht/~ged/chione
225
+ bug_tracker_uri: https://todo.sr.ht/~ged/chione
297
226
  post_install_message:
298
- rdoc_options:
299
- - "--main"
300
- - README.md
227
+ rdoc_options: []
301
228
  require_paths:
302
229
  - lib
303
230
  required_ruby_version: !ruby/object:Gem::Requirement
304
231
  requirements:
305
232
  - - ">="
306
233
  - !ruby/object:Gem::Version
307
- version: 2.5.0
234
+ version: '0'
308
235
  required_rubygems_version: !ruby/object:Gem::Requirement
309
236
  requirements:
310
237
  - - ">="
311
238
  - !ruby/object:Gem::Version
312
239
  version: '0'
313
240
  requirements: []
314
- rubyforge_project:
315
- rubygems_version: 2.7.6
241
+ rubygems_version: 3.1.2
316
242
  signing_key:
317
243
  specification_version: 4
318
- summary: An Entity/Component System framework inspired by Artemis
244
+ summary: An Entity/Component System framework inspired by Artemis.
319
245
  test_files: []