rubytext 0.0.93 → 0.0.94

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -6
  3. data/lib/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51e87c6fce84220925a60c3160da5b206f05cce503d04fb0a0567f4eb5455e9a
4
- data.tar.gz: 99b5c7b09061903726b9b945d2eee25fd8aea94e022c383c15bc4410c573de66
3
+ metadata.gz: 4530a36a54e9bfc11629beba83abbebea545cb364d3250faae70dae14e50de65
4
+ data.tar.gz: 8fa87d3a50600838ab38defc5e47185cda619d1a080dd8d9b41f4018e1ecee2a
5
5
  SHA512:
6
- metadata.gz: 3c37fd680c86ed9803b33038e238315ac1fb5bde67fb2ee1d425c6b55d0561c1b9afc1c78665034e99a29fbc17230c406f5de281467417ff624e7167baa7bef9
7
- data.tar.gz: 273b34ee5bb9fd997cc060c91658bba2783db22a3dd0d74d50a2cfd0bd2f6504db9134498abad6759bce330385a950c4eb534f4f46f97594942c3513523076dd
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. The code has bugs. Running it may cause general bad luck
5
- as well as demon infestation.
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 # longer "slideshow"
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
@@ -1,6 +1,6 @@
1
1
 
2
2
  module RubyText
3
- VERSION = "0.0.93"
3
+ VERSION = "0.0.94"
4
4
 
5
5
  Path = File.expand_path(File.join(File.dirname(__FILE__)))
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubytext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.93
4
+ version: 0.0.94
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hal Fulton