rubytext 0.0.56 → 0.0.57

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 816db72a80a18295580c068e903fb244dcb3dbfca34f88573ccc16474e05e849
4
- data.tar.gz: b854625bf74e0102a45f0787e083376a32b9311369a900621f42082d4a078ddd
3
+ metadata.gz: 1888d387b543f386818ca4fd75323894e5fd1af7f12396d6ef3875a8d6fccabf
4
+ data.tar.gz: 8af625e8c83e8c63d7f11b37ae3d06af413e7ee7e4a021a848fa21e0a60fa6ac
5
5
  SHA512:
6
- metadata.gz: 16e754dd142473631aea79029b4c1840b25604730d9b8349a10886986823a89e3c5afc0738e9a7fb33fc7ee943e1e36bd2c4a2de623826d381305642bbf70ba4
7
- data.tar.gz: 30b79202b76c227d2dbda1b3b473835270a91535e013c985ae13b46810cb540d576575ecadd779db042c288f730faa21fb040dc69dad9774904b49a8d42b2e4c
6
+ metadata.gz: a668d934883bb8586b3eeb44af7cfe092ec2a90b668910413992dab4e27f32c84a3e3302cf517f3a6b59ab6287ba113446d1e448de8c76acd1ca683b620df8c7
7
+ data.tar.gz: 7d6fd2b457677a5f6618412c58b020dfbfeafbabcda27a6d26cbdf2b9a88364efbec5b1074081462e12a4dfc92a9a14b1b3c365963b6a19b648cc6fc190bce0d
data/README.md CHANGED
@@ -53,6 +53,9 @@ win = RubyText.window(6, 25, 2, 34,
53
53
  win.puts "This is a window..."
54
54
  ```
55
55
 
56
+ <img src=readme-images/prog01.png>
57
+
58
+
56
59
  How `output` works. This name may change.
57
60
  ```ruby
58
61
  require 'rubytext'
data/examples/showme.rb CHANGED
@@ -30,7 +30,7 @@ end
30
30
  def check_window
31
31
  if @rmax < 25 || @cmax < 80
32
32
  puts "\n Your window should be 25x80 or larger,"
33
- puts " but this one is only #{rmax}x#{cmax}."
33
+ puts " but this one is only #{@rmax}x#{@cmax}."
34
34
  puts " Please resize and run again!"
35
35
  getch
36
36
  exit 1
data/lib/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  module RubyText
3
- VERSION = "0.0.56"
3
+ VERSION = "0.0.57"
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.56
4
+ version: 0.0.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hal Fulton