gemwarrior 0.15.17 → 0.15.18
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 +4 -4
- data/gemwarrior.gemspec +28 -27
- data/lib/gemwarrior/version.rb +1 -1
- metadata +9 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce326e3393bebcd6d56b485f4917f1def84b3e69eb2a447bd5ec9db075cd5061
|
|
4
|
+
data.tar.gz: 8b1e6a56da8f254f265f33c43fac9e376928825afdaa98b6a3f1ed01210e85a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3b7c1241202972cb8b8819d0789257ebe0bcf809e0b9f8476e08d21c7f3f5571ec4374b6aba067404e0403771feb30627b0bb18ce46e6d4df0fa5037d8bb232
|
|
7
|
+
data.tar.gz: aa622e3a42077a681f1a94c4ff538a5caeda7cdbe809955a56c0b05f0a299b674bcfc07b9dabccc798d3cee0d8a943bbf76577059bd386067d97fe1647ed43b0
|
data/gemwarrior.gemspec
CHANGED
|
@@ -4,28 +4,34 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
require 'gemwarrior/version'
|
|
6
6
|
|
|
7
|
+
source_uri = 'https://github.com/michaelchadwick/gemwarrior'
|
|
8
|
+
rubygem_uri = 'http://rubygems.org/gems/gemwarrior'
|
|
9
|
+
|
|
7
10
|
Gem::Specification.new do |spec|
|
|
8
|
-
|
|
9
|
-
spec.
|
|
10
|
-
spec.
|
|
11
|
-
spec.
|
|
12
|
-
spec.authors
|
|
13
|
-
spec.
|
|
11
|
+
spec.name = 'gemwarrior'
|
|
12
|
+
spec.summary = 'RubyGem text adventure'
|
|
13
|
+
spec.version = Gemwarrior::VERSION
|
|
14
|
+
spec.platform = Gem::Platform::RUBY
|
|
15
|
+
spec.authors = ['Michael Chadwick']
|
|
16
|
+
spec.email = ['mike@neb.host']
|
|
17
|
+
spec.homepage = rubygem_uri
|
|
18
|
+
spec.license = 'MIT'
|
|
19
|
+
spec.description = 'A fun text adventure in the form of a RubyGem!'
|
|
20
|
+
|
|
21
|
+
spec.files = `git ls-files`.split("\n")
|
|
22
|
+
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
23
|
+
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
24
|
+
spec.require_paths = ['lib']
|
|
14
25
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
spec.metadata = {
|
|
21
|
-
"documentation_uri" => "https://github.com/michaelchadwick/gemwarrior",
|
|
22
|
-
"homepage_uri" => "https://github.com/michaelchadwick/gemwarrior",
|
|
23
|
-
"source_code_uri" => "https://github.com/michaelchadwick/gemwarrior"
|
|
24
|
-
}
|
|
26
|
+
spec.metadata = {
|
|
27
|
+
"documentation_uri" => source_uri,
|
|
28
|
+
"homepage_uri" => source_uri,
|
|
29
|
+
"source_code_uri" => source_uri
|
|
30
|
+
}
|
|
25
31
|
spec.required_ruby_version = '~> 2.0'
|
|
32
|
+
spec.post_install_message = "Type 'gemwarrior' to start adventuring!"
|
|
26
33
|
|
|
27
|
-
|
|
28
|
-
## runtime deps
|
|
34
|
+
## required deps
|
|
29
35
|
spec.add_runtime_dependency 'clocker', '~> 0.1.6'
|
|
30
36
|
spec.add_runtime_dependency 'colorize', '~> 1.0'
|
|
31
37
|
spec.add_runtime_dependency 'gems', '~> 1.2'
|
|
@@ -34,15 +40,10 @@ Gem::Specification.new do |spec|
|
|
|
34
40
|
spec.add_runtime_dependency 'matrext', '~> 1.0'
|
|
35
41
|
spec.add_runtime_dependency 'os', '~> 0.9', '>= 0.9.6'
|
|
36
42
|
spec.add_runtime_dependency 'psych', '~> 5.1'
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# spec.add_runtime_dependency 'win32-sound', '~> 0.6.0'
|
|
42
|
-
|
|
43
|
-
# spec.platform = Gem::Platform::RUBY
|
|
44
|
-
spec.post_install_message = "Type 'gemwarrior' to start adventuring!"
|
|
45
|
-
# spec.require_paths = ['lib']
|
|
43
|
+
## optional sound systems
|
|
44
|
+
# spec.add_runtime_dependency 'bloopsaphone', '>= 0.4'
|
|
45
|
+
# spec.add_runtime_dependency 'feep', '~> 0.1.3'
|
|
46
|
+
# spec.add_runtime_dependency 'win32-sound', '~> 0.6.0'
|
|
46
47
|
|
|
47
48
|
## development deps
|
|
48
49
|
spec.add_development_dependency 'awesome_print', '~> 1.9'
|
data/lib/gemwarrior/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemwarrior
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Chadwick
|
|
@@ -269,8 +269,10 @@ dependencies:
|
|
|
269
269
|
- !ruby/object:Gem::Version
|
|
270
270
|
version: '1.50'
|
|
271
271
|
description: A fun text adventure in the form of a RubyGem!
|
|
272
|
-
email:
|
|
273
|
-
|
|
272
|
+
email:
|
|
273
|
+
- mike@neb.host
|
|
274
|
+
executables:
|
|
275
|
+
- gemwarrior
|
|
274
276
|
extensions: []
|
|
275
277
|
extra_rdoc_files: []
|
|
276
278
|
files:
|
|
@@ -399,7 +401,7 @@ files:
|
|
|
399
401
|
- tests/test-save-load/save.conf
|
|
400
402
|
- tests/test-singleton/game.rb
|
|
401
403
|
- tests/test-singleton/game_options.rb
|
|
402
|
-
homepage:
|
|
404
|
+
homepage: http://rubygems.org/gems/gemwarrior
|
|
403
405
|
licenses:
|
|
404
406
|
- MIT
|
|
405
407
|
metadata:
|
|
@@ -425,4 +427,6 @@ rubygems_version: 3.4.19
|
|
|
425
427
|
signing_key:
|
|
426
428
|
specification_version: 4
|
|
427
429
|
summary: RubyGem text adventure
|
|
428
|
-
test_files:
|
|
430
|
+
test_files:
|
|
431
|
+
- spec/gemwarrior_spec.rb
|
|
432
|
+
- spec/spec_helper.rb
|