rubytext 0.0.93 → 0.0.94
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/README.md +5 -6
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4530a36a54e9bfc11629beba83abbebea545cb364d3250faae70dae14e50de65
|
4
|
+
data.tar.gz: 8fa87d3a50600838ab38defc5e47185cda619d1a080dd8d9b41f4018e1ecee2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4b275893f36a423ab0aca1875dd058f41e57e6b2532373185ad0f46a4a6c696aa5cfbe93ab24936592e09f1f82d4af2ac66dd89f886ae70a267cf7ce71362a3
|
7
|
+
data.tar.gz: 44f44e5476d5f78a8d4b4f3b4953bcd1305d8ffa73c4ff434b02c6e1c62e1c86e899ab23daf7a3e93a592de1ab8b91c30313756b95b7523a0e4f4886b0bde1d0
|
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
# RubyText
|
2
2
|
|
3
3
|
RubyText is a curses wrapper that is in the early experimental
|
4
|
-
stages.
|
5
|
-
|
4
|
+
stages. Unlike some similar projects, it is a "thick" wrapper;
|
5
|
+
I am adding functionality that does not always correspond directly
|
6
|
+
to the curses world.
|
6
7
|
|
7
8
|
Install the `rubytext` gem and then run the demo or the slides
|
8
9
|
or both.
|
@@ -10,12 +11,10 @@ or both.
|
|
10
11
|
```
|
11
12
|
$ gem install rubytext
|
12
13
|
$ rubytext demo # 2-minute demo
|
13
|
-
$ rubytext slides #
|
14
|
+
$ rubytext slides # Longer "slideshow"
|
15
|
+
$ rubytext tutorial # (On OS/X) opens tutorial.html
|
14
16
|
```
|
15
17
|
|
16
|
-
There is also `examples/ide.rb` ("world's simplest Ruby IDE").
|
17
|
-
It is _very_ dumb. :)
|
18
|
-
|
19
18
|
### Getting started
|
20
19
|
|
21
20
|
Here's the obligatory hello-world program.
|
data/lib/version.rb
CHANGED