rpg-prompt 1.1

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.
@@ -0,0 +1,10 @@
1
+ require "./lib/NAME.rb"
2
+ require "test/unit"
3
+
4
+ class TestNAME < Test::Unit::TestCase
5
+
6
+ def test_sample
7
+ assert_equal(4, 2+2)
8
+ end
9
+
10
+ end
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rpg-prompt
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.1'
5
+ platform: ruby
6
+ authors:
7
+ - Guillermo Regodón
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-12-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Prompt that facilitates the management of characters and actions in a
14
+ Role Playing Game. The set of rules can be programmed in Ruby to match your favourite
15
+ set of rules. I have included an easy set of rules as an example, although in my
16
+ games I use a commercial set of rules that I do not include for copyright reasons.
17
+ email:
18
+ - guillermoregodon@gmail.com
19
+ executables:
20
+ - rpg-prompt
21
+ extensions: []
22
+ extra_rdoc_files: []
23
+ files:
24
+ - bin/rpg-prompt
25
+ - data/rpg-prompt/example.txt
26
+ - data/rpg-prompt/help.txt
27
+ - data/rpg-prompt/rules_default.rb
28
+ - data/rpg-prompt/rules_default_hashes.rb
29
+ - data/rpg-prompt/texts_default.rb
30
+ - lib/rpg-prompt/commands.rb
31
+ - lib/rpg-prompt/keypress.rb
32
+ - lib/rpg-prompt/manage_command.rb
33
+ - lib/rpg-prompt/message.rb
34
+ - lib/rpg-prompt/parse_line.rb
35
+ - lib/rpg-prompt/rules_default.rb
36
+ - lib/rpg-prompt/rules_default_hashes.rb
37
+ - lib/rpg-prompt/rules_sheet.rb
38
+ - lib/rpg-prompt/save.rb
39
+ - lib/rpg-prompt/texts_default.rb
40
+ - lib/rpg-prompt/texts_prompt.rb
41
+ - tests/test_rpg-prompt.rb
42
+ homepage: https://github.com/GuillermoRegodon/rubygem-rpg-prompt
43
+ licenses:
44
+ - MIT
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ - data
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ requirements: []
62
+ rubygems_version: 3.0.3
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Helper Prompt for playing Role Playing Games
66
+ test_files:
67
+ - tests/test_rpg-prompt.rb