butler-mainframe 0.7.0 → 0.7.1
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 +5 -1
- data/lib/mainframe/host_base.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed67a6ff07abe972e3fedb89ddb890aec90c4018
|
|
4
|
+
data.tar.gz: 764c55b18eea91284b4bf866e149eb6d255a52c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c4b209cfc81d3dd7802f1effe7ab42e63f5042e2674d140ee8ba8ea0e2d30302196a7c574222e6d66f8a95c0897f07596c9151135309b7700c0ccedf4156129
|
|
7
|
+
data.tar.gz: 40795c5f88491ac0ba28b9b66b7e87dc5b0b2528b9dcbe699253c7ac323bcccbb03cde9b6d9494b3b7068bcaba90d3be73979c5eaeceeb7185f840910c628d8e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
0.7.1 [☰](https://github.com/marcomd/butler-mainframe/compare/v0.7.0...v0.7.1) January 12th, 2016
|
|
2
|
+
------------------------------
|
|
3
|
+
* Now the message contains the coordinates when you try to write a null value
|
|
4
|
+
|
|
1
5
|
0.7.0 [☰](https://github.com/marcomd/butler-mainframe/compare/v0.6.0...v0.7.0) December 2th, 2015
|
|
2
6
|
------------------------------
|
|
3
|
-
* Now is possible to set erase_before_writing to execute an erase until end of field before writing a text
|
|
7
|
+
* Now is possible to set erase_before_writing permanently to execute an erase until end of field before writing a text
|
|
4
8
|
* Changed param name in write method: erase_before_writing instead of erase_field_first => deprecation warning
|
|
5
9
|
* Changed param name in write method: clean_chars_before_writing instead of clean_first_chars => deprecation warning
|
|
6
10
|
* Changed method name: screen_title becomes catch_title to align it to the methods name that provide a similar result => deprecation warning
|
data/lib/mainframe/host_base.rb
CHANGED
|
@@ -129,7 +129,7 @@ module ButlerMainframe
|
|
|
129
129
|
|
|
130
130
|
hooked_rows = 2
|
|
131
131
|
raise "Missing coordinates! y(row)=#{y} x(column)=#{x} " unless x && y
|
|
132
|
-
raise "Sorry, cannot write null values"
|
|
132
|
+
raise "Sorry, cannot write null values at y=#{y} x=#{x}" unless text
|
|
133
133
|
|
|
134
134
|
bol_written = false
|
|
135
135
|
if options[:hook]
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marco Mastrodonato
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-12 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
|
|
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
70
|
requirements:
|
|
71
71
|
- A bit of awesomeness
|
|
72
72
|
rubyforge_project:
|
|
73
|
-
rubygems_version: 2.
|
|
73
|
+
rubygems_version: 2.5.1
|
|
74
74
|
signing_key:
|
|
75
75
|
specification_version: 4
|
|
76
76
|
summary: A virtual butler to perform tasks on a 3270 emulator
|