wads 0.1.1 → 0.1.2
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/CHANGELOG.md +4 -0
- data/README.md +9 -3
- data/lib/wads/app.rb +91 -66
- data/lib/wads/data_structures.rb +281 -12
- data/lib/wads/textinput.rb +49 -4
- data/lib/wads/version.rb +1 -1
- data/lib/wads/widgets.rb +656 -207
- data/media/WadsScreenshot.png +0 -0
- data/sample_app.rb +9 -3
- metadata +3 -2
Binary file
|
data/sample_app.rb
CHANGED
@@ -40,10 +40,16 @@ class SampleAppCommand
|
|
40
40
|
desc "Run sample analysis of interactions between Star Wars"
|
41
41
|
end
|
42
42
|
|
43
|
-
flag :
|
43
|
+
flag :graph do
|
44
44
|
short "-g"
|
45
|
-
long "--
|
46
|
-
desc "
|
45
|
+
long "--graph"
|
46
|
+
desc "Run a graph test"
|
47
|
+
end
|
48
|
+
|
49
|
+
flag :text do
|
50
|
+
short "-t"
|
51
|
+
long "--text"
|
52
|
+
desc "Display text only output"
|
47
53
|
end
|
48
54
|
|
49
55
|
def run
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wads
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dbroemme
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gosu
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- lib/wads/version.rb
|
78
78
|
- lib/wads/widgets.rb
|
79
79
|
- media/Banner.png
|
80
|
+
- media/WadsScreenshot.png
|
80
81
|
- run-sample-app
|
81
82
|
- sample_app.rb
|
82
83
|
- wads.gemspec
|