posxml_parser 0.15.1 → 0.15.2

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: 5dfbe8ba968fc380319c16ee1ac4d400c9efa379
4
- data.tar.gz: f7420564535b91239bd435d631653aa81513dc13
3
+ metadata.gz: 305e1c304581f95ec356a79da6801c6e9c911c25
4
+ data.tar.gz: f50e213993454d86a2f59b2be44d7558c288365d
5
5
  SHA512:
6
- metadata.gz: 9bf38cfcbee23b83a4a64307ab93e5dad57742514a76e838d0a428c6b28e009c08f68f4610447952cb2bd87c28fc6b78502d8ccca636658f167e9a8b3d5553b2
7
- data.tar.gz: 4ac30e27d6d3968ea586adc4d25249dceb45462d2cb7a01807173b325bd0fed6e3e9a119532028fc11406d60a30f7553809094781f0e84c107ff72fafa2f74c5
6
+ metadata.gz: d148188ee18f2eb2c3c66851a3b92eb9fbdca7473743f4dcab06fd85b0eedf2e0af0227f0c3ddff593a5c298087cc25cd880d03c194efc46896e8d05f1444998
7
+ data.tar.gz: 1edfa7cde337894b5d4ee3a0b6cc5149a634de89488428e62b8782030dbf6ee68178ee5068e3dcfb98481ed0d8376b5e1a4b346462175a29ac2ac3423b2866b7
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- posxml_parser (0.15.1)
4
+ posxml_parser (0.15.2)
5
5
  funky-emv (~> 0.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  cloudwalk_handshake (0.8.0)
11
- da_funk (0.8.4)
11
+ da_funk (0.9.1)
12
12
  bundler (~> 1.7)
13
13
  cloudwalk_handshake (~> 0.6)
14
14
  funky-emv (~> 0.3)
@@ -16,7 +16,7 @@ GEM
16
16
  rake (~> 10)
17
17
  funky-emv (0.5.8)
18
18
  funky-tlv (~> 0.2)
19
- funky-tlv (0.2.2)
19
+ funky-tlv (0.2.3)
20
20
  rake (10.5.0)
21
21
 
22
22
  PLATFORMS
@@ -27,3 +27,6 @@ DEPENDENCIES
27
27
  da_funk
28
28
  posxml_parser!
29
29
  rake (~> 10)
30
+
31
+ BUNDLED WITH
32
+ 1.15.1
data/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Posxml Parser
2
2
 
3
+ ### 0.15.2 - 2017-07-12
4
+
5
+ - Raise InstructionNotFoundError during XsdParser#to_bytecode if instruction not found in xsd.
6
+ - Fix PosxmlCompiler parser to avoid empty statements.
7
+ - Add warning for application size limit.
8
+ - Update da_funk (0.9.1).
9
+ - Update funky-tlv(0.2.3).
10
+
3
11
  ### 0.15.1 - 2017-06-30
4
12
 
5
13
  - PosxmlCompiler, check if function was declared.
data/Rakefile CHANGED
@@ -29,6 +29,7 @@ files = [
29
29
  "lib/posxml_compiler/variable_name_error.rb",
30
30
  "lib/posxml_compiler/variable_string_limit_error.rb",
31
31
  "lib/posxml_compiler/variable_undefined_error.rb",
32
+ "lib/posxml_compiler/instruction_not_found_error.rb",
32
33
  "lib/posxml_compiler/variable_type_error.rb"
33
34
  ]
34
35
 
@@ -1,5 +1,5 @@
1
1
 
2
2
  module PosxmlParser
3
- VERSION = "0.15.1"
3
+ VERSION = "0.15.2"
4
4
  end
5
5
 
Binary file
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: posxml_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.1
4
+ version: 0.15.2
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-06-30 00:00:00.000000000 Z
11
+ date: 2017-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.7'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.7'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '10'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: funky-emv
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0.3'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0.3'
55
55
  description: Funky Library responsible to parse and execute posxml applications.
@@ -59,7 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - .gitignore
62
+ - ".gitignore"
63
63
  - Gemfile
64
64
  - Gemfile.lock
65
65
  - README.md
@@ -78,17 +78,17 @@ require_paths:
78
78
  - lib
79
79
  required_ruby_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - '>='
81
+ - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
- - - '>='
86
+ - - ">="
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
90
  rubyforge_project:
91
- rubygems_version: 2.2.2
91
+ rubygems_version: 2.6.12
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: Parse and execute posxml applications.