posxml_parser 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 052e4c4891aa7b9c8acffbeb3ee1f5b9d37b2da4
4
- data.tar.gz: 1a2bd89cfda5bd412781f4dc6fcf611a97e45ca3
3
+ metadata.gz: 093f0bdfa3395bd6e95302fd143bacf4ce1857df
4
+ data.tar.gz: 78dec7eb6612392b39dec71dd93f2c5b46aa827d
5
5
  SHA512:
6
- metadata.gz: c49e6c49f3bcc4213f442d79b175a2249af223672421bbf6e48580423f6d0ed98f7310942d24a0f9be1966ea77013d3b504ec4df29b25bdf4dcfcc4f0096f03c
7
- data.tar.gz: c5bfeb057224480b205088f7f98db91fadc55bd252ff49219d57acfe0768445a72f95f0001ddb4a64ee109cb5ce9414a4a40b85c6e5f93203cb6135956faa25d
6
+ metadata.gz: 03a0bd6cc9d050be5f307ccae1f54051b84ed130e73d62b344cf9c4b9dac9b7bf6b20e3c51942198ebbd40ea9a719355a85698e21a32f44cdf327165c4c12fa3
7
+ data.tar.gz: 18155d68d10bb94feea7392a49223756b4aec7b62231c03a993f4cbd3401708eb41f652d12bea9722cbcbee5d57155c0cd6137e9a9c8555d5cb527dfbe8fa4f7
data/Gemfile CHANGED
@@ -1,5 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'da_funk', '~>0.7'
4
+ gem 'funky-tlv'
4
5
 
5
6
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- posxml_parser (0.8.0)
4
+ posxml_parser (0.9.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -14,6 +14,7 @@ GEM
14
14
  rake (~> 10.4)
15
15
  yard (~> 0.8)
16
16
  funky-emv (0.2.0)
17
+ funky-tlv (0.2.0)
17
18
  rake (10.5.0)
18
19
  yard (0.8.7.6)
19
20
 
@@ -24,5 +25,6 @@ DEPENDENCIES
24
25
  bundler (~> 1.7)
25
26
  da_funk (~> 0.7)
26
27
  funky-emv (~> 0.2)
28
+ funky-tlv
27
29
  posxml_parser!
28
30
  rake (~> 10.0)
data/RELEASE_NOTES.md CHANGED
@@ -1,9 +1,69 @@
1
1
  # Posxml Parser
2
2
 
3
- ### 0.8.0 - 2016-06-30 - Emv Instructions
4
-
5
- - Implemented emv instructions.
6
- - Add funky-emv version 0.2.0
3
+ ### 0.8.0 - 2016-06-30
4
+
5
+ - Refactoring card_read to: - Perform PosxmlParser::EMV.initialize instead of process when icc detected. - Return Device::IO::CANCEL in key if mag.
6
+ - Refactorgin file_list to store exceptions.
7
+ - Refactoring some rescue exception in instructions to store any error.
8
+ - Store exceptions in posxml_setting.
9
+ - Implement the encryption of magstripe.
10
+ - Add support to tsi.
11
+ - Store emv errors.
12
+ - Refactoring names in string_element_at instruction.
13
+ - Check chip return on emv Handler converting to 1 if 0.
14
+ - Cipher result hex conversion not needed.
15
+ - Create new string in EMV.add_data to avoid memory leak.
16
+ - Add variable test case to compare numbers.
17
+ - Add Bug on execution to create variable if didn’t create yet on stack.
18
+ - Refactoring print_check_paper_out using Printer#paper? method.
19
+ - Refactoring print_bitmap checking Device returns.
20
+ - Refactoring print and print_big to avoid memory leak.
21
+ - Refactory emv.rb to avoid memory leak.
22
+ - Update Device::System.klass on execution.
23
+ - Add funky-tlv
24
+ - Implement 3DES cipher on cryptoencrypt.
25
+ - Implement “batterylevel|dockstatus” parameter on system.info.
26
+ - Use posxml_socket_read in iso8583 transact message second block.
27
+ - Check if app params.dat[“emv_application”] is defined to execute emv app.
28
+ - Remove commentaries on Variable.
29
+ - Log errors if exception in iso8583_analyze_message instruction.
30
+ - During creation of Variable the Variable create variable in the table if not exist.
31
+ - Bug fix posxml_socket_read method starting attempts with 0.
32
+ - Implement file_concat instruction.
33
+ - Add “FF” padding to 3DESInternal cryptography in cryptoencrypt instruction.
34
+ - Change input_money limit from 13 to 12.
35
+ - Add 3DES encryption with injected key.
36
+ - Return OS version on util_system_info.
37
+ - Refactoring string_length calling to_s, instead of value.
38
+ - Bug fix on integer to binary conversion returning the correct size.
39
+ - Refactoring string_join removing value call.
40
+ - Add EmvTransaction detection on read_card.
41
+ - Refactoring iso8583_transact_message using posxml_socket_read helper.
42
+ - Add error treatment for network_host_disconnect and set socket nil.
43
+ - Remove socket debug.
44
+ - Remove empty string check on read_file_by_index, now the empty string is supported by comparison.
45
+ - Bug fix add scenario “not equal” for string variable comparison.
46
+ - Add error treatment for some instructions rescue.
47
+ - Refactoring file_read_by_index reading and closing the file in a unique method.
48
+ - Fix typo on Emv.load.
49
+ - Add posxml helper to read from socket non blocking.
50
+ - Add custom initialisation load for emv.
51
+ - Require funky-emv.
52
+ - Fix INIT_INFO structure declaration.
53
+ - Fix emv EventHandler definition.
54
+ - Refactoring instruction exception handle.
55
+ - Remove custom env and crypto_encryptdecrypt instructions.
56
+ - Fix integer_conver_to_binary to ruby syntax only.
57
+ - Fix blank comparison on Variable, which should work with “ “ and “”.
58
+ - Remove swapvariables.
59
+ - Add emv.rb to Makefile.
60
+ - Add support to emv handlers.
61
+ - Add support for schedule handlers.
62
+ - Reafectoring keys and bins handlers.
63
+ - Do not include message character size on size calculation for iso transaction message.
64
+ - When read empty value on readfile instruction return “ “, not “”.
65
+ - Convert hex to char on file.write.
66
+ - Add Context treat for exception on file instructions.
7
67
 
8
68
  ### 0.7.11 - 2016-04-18 - Refactoring
9
69
 
data/Rakefile CHANGED
@@ -13,6 +13,7 @@ files = [
13
13
  "lib/posxml_parser/variable.rb",
14
14
  "lib/posxml_parser/version.rb",
15
15
  "lib/posxml_parser/posxml_setting.rb",
16
+ "lib/posxml_parser/emv.rb",
16
17
  "lib/posxml_parser.rb",
17
18
  "lib/posxml_interpreter.rb"
18
19
  ]
@@ -1,5 +1,5 @@
1
1
 
2
2
  module PosxmlParser
3
- VERSION = "0.8.0"
3
+ VERSION = "0.9.0"
4
4
  end
5
5
 
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: posxml_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudWalk Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-30 00:00:00.000000000 Z
11
+ date: 2016-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler