posxml_parser 0.15.3 → 0.16.0

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
  SHA1:
3
- metadata.gz: ec400fa782b8c13bf84ca9315fa89d00a0a279e6
4
- data.tar.gz: 0415d5d8a3b1793167ef5347df003f820bc5f0c7
3
+ metadata.gz: 5e782d3bbeec9639c300fe56b53cfb4d4177e58c
4
+ data.tar.gz: 9af80620aef608520e2b750addb91f9aba1dffd9
5
5
  SHA512:
6
- metadata.gz: a70057a10f4fc1d46337a1a9ff469c63ac65f3697da372c482ccda4e3d998770e5f6fe67922908b5d78c04eb6493c03d1211b5529b2ff11bbdd673fa1daf9340
7
- data.tar.gz: ea72f9a880f4de10ab959f5c5ba8f3882a9a033461791f6105a14bc6ebe5992cf1e803d21c7cd82e01e003c279b39a80b5f414f75b43baf0cb1fb27e7cc3c3c1
6
+ metadata.gz: b810fc4639d5bd5862fc0736a42a8c58addded4c63f74f6f5e06c642b45e9bd0e47d0e772ca296b2fcf6d6c892c649c4ed6b81af3ed59d2028fd0eeda20ff882
7
+ data.tar.gz: 3dbfea3074ed7ef5c88b4da884866a0a94a7679698c060e0640062377ab765afe971249378c7b327acf3207c23c59f0e5fe866701f20f23071bf9d0d0f7fa69b
data/Gemfile CHANGED
@@ -1,5 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'da_funk'
4
+ gem 'cloudwalk'
4
5
 
5
6
  gemspec
@@ -1,5 +1,14 @@
1
1
  # Posxml Parser
2
2
 
3
+ ### 0.16.0 - 2017-08-08
4
+
5
+ - Add cloudwalk gem.
6
+ - Add ISO20022 initial implementation.
7
+ - Add 3 instructions related with ISO 20022:
8
+ - iso20022_new(document).
9
+ - iso20022_add(tag, value).
10
+ - iso20022_build(variablereturn, buffer).
11
+
3
12
  ### 0.15.3 - 2017-07-25
4
13
 
5
14
  - Adopt da_funk 0.9.2: - Device::Setting.wifi_password; - Bool return for Device::Network.connected?
data/Rakefile CHANGED
@@ -6,6 +6,8 @@ require 'bundler/setup'
6
6
 
7
7
  Bundler.require(:default)
8
8
  files = [
9
+ "lib/posxml_parser/iso20022/acceptor_authorisation_request.rb",
10
+ "lib/posxml_parser/iso20022.rb",
9
11
  "lib/posxml_parser/posxml_error.rb",
10
12
  "lib/posxml_parser/bytecode.rb",
11
13
  "lib/posxml_parser/class_methods.rb",
@@ -34,6 +36,7 @@ files = [
34
36
  ]
35
37
 
36
38
  DaFunk::RakeTask.new do |t|
39
+ t.mruby = "cloudwalk run -b"
37
40
  t.libs = FileList[files]
38
41
  t.debug = false
39
42
  FileUtils.rm_rf("./test/tmp")
@@ -1,5 +1,5 @@
1
1
 
2
2
  module PosxmlParser
3
- VERSION = "0.15.3"
3
+ VERSION = "0.16.0"
4
4
  end
5
5
 
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.15.3
4
+ version: 0.16.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: 2017-07-25 00:00:00.000000000 Z
11
+ date: 2017-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler