butler-mainframe 0.7.4 → 0.7.5
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/lib/mainframe/host_base.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9647666615fef70e24eb285f5fcfb19db6921380
|
|
4
|
+
data.tar.gz: 15dd4daa101efd4ab615221b61b48ab96f1c18b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4ea76d2b23706ab40dfc75cbcfacd795cdd589445ab9c915fdb903cdf9595d1131d7e710cae0409cdcfd44e63b0a295eab409c139c319a0c99554409249db9f
|
|
7
|
+
data.tar.gz: 47c6ea2a0192a2e43ac3a3bee7623e2aac4c11447931a23d7fe56d286cf66e87ddcb4070ba9c0953f304fe20f393558a77f878a054be130c8af95b0b7a0984f8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
0.7.5 [☰](https://github.com/marcomd/butler-mainframe/compare/v0.7.4...v0.7.5) April 19th, 2016
|
|
2
|
+
------------------------------
|
|
3
|
+
* Fixed a bug (Stack level too deep) on the write command when was passed the parameter :clean_first_chars
|
|
4
|
+
|
|
1
5
|
0.7.4 [☰](https://github.com/marcomd/butler-mainframe/compare/v0.7.3...v0.7.4) April 13th, 2016
|
|
2
6
|
------------------------------
|
|
3
7
|
* You can now let the session open with the new quit parameter :never
|
data/lib/mainframe/host_base.rb
CHANGED
|
@@ -276,7 +276,7 @@ module ButlerMainframe
|
|
|
276
276
|
|
|
277
277
|
if options[:clean_first_chars] && options[:clean_first_chars].to_i > 0
|
|
278
278
|
puts "write_text_on_map: Clean #{options[:clean_first_chars]} char#{options[:clean_first_chars] == 1 ? '' : 's'} y:#{y} x:#{x}" if @debug
|
|
279
|
-
bol_cleaned =
|
|
279
|
+
bol_cleaned = sub_write_text(" " * options[:clean_first_chars], y, x, :check_protect => options[:check])
|
|
280
280
|
unless bol_cleaned
|
|
281
281
|
puts "write_text_on_map: EHI! Impossible to clean the area specified" if @debug
|
|
282
282
|
return false
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: butler-mainframe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marco Mastrodonato
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This gem provides a virtual butler which can perform your custom tasks
|
|
14
14
|
on a 3270 emulator. Choose your emulator, configure your task and discover a new
|