da_funk 1.7.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7aefd3af4727577071949e1efd5aa5bcff0d6f38
4
- data.tar.gz: 0141f8d60bf76607aff1da184eb0c87c15acdd8c
3
+ metadata.gz: 60a6e816eace4d5b1f3cd69a082def017a6ad559
4
+ data.tar.gz: 7d61a87cc84166992f29c24b39504c3414df97a8
5
5
  SHA512:
6
- metadata.gz: dccb52cb1b3a1205c7098458e376582bc46e460bdf42a43a4251be7010629265670958e638f4efa27b84d7f878fd659fd77c58124a552a2e44279d5da6e23dc9
7
- data.tar.gz: 54f517cd5d93ac182153ae85c88aee12db40394cbebfd95ecbe1e527de3dec11e23d4744efe1bf6c5d403e5c79e2cc71f244ec45d114bf0d0418287f9839476b
6
+ metadata.gz: 427517e678f79b63d440d6a892dd77684e238ed4223d30ad2c66ce2f59ee2e23ca6a880ee3169ea78b1c5558489d202b1e38f122568291122034c1cb13dcc3b0
7
+ data.tar.gz: 1248887ecd7719a95d727e37232d19fc7c645056b53564e54bcbe53729359d743eeb194ff9ce0cc793be9935808b75e72eae4c6b9ffaa786920ef30d74eab3b1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- da_funk (1.7.0)
4
+ da_funk (1.7.1)
5
5
  archive-zip (~> 0.5)
6
6
  bundler
7
7
  cloudwalk_handshake
@@ -27,7 +27,7 @@ GEM
27
27
  parallel (1.12.1)
28
28
  parser (2.4.0.2)
29
29
  ast (~> 2.3)
30
- posxml_parser (1.2.2)
30
+ posxml_parser (1.3.0)
31
31
  funky-emv (~> 0.3)
32
32
  powerpack (0.1.1)
33
33
  rainbow (3.0.0)
data/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # DaFunk
2
2
 
3
+ ### 1.7.1 - 2018-02-09
4
+
5
+ - Fix payment channel compilation.
6
+
3
7
  ### 1.7.0 - 2018-02-09
4
8
 
5
9
  - Adopt “w” for FileDb and Transaction::Download write operation and improve IO time.
data/Rakefile CHANGED
@@ -34,6 +34,8 @@ FILES = FileList[
34
34
  "lib/da_funk/version.rb",
35
35
 
36
36
  "lib/da_funk.rb",
37
+ "lib/da_funk/payment_channel.rb",
38
+ "lib/da_funk/connection_management.rb",
37
39
  "lib/da_funk/test.rb",
38
40
  "lib/da_funk/screen.rb",
39
41
  "lib/da_funk/callback_flow.rb",
@@ -78,12 +78,7 @@ module DaFunk
78
78
  end
79
79
 
80
80
  def self.alive?
81
- a = Device::Network.connected?
82
- a = Device::Network.connected?
83
- b = @client if @client
84
- c = @client.connected? if @client
85
- ContextLog.info "a[#{a}] b[#{b}] c[#{c}]"
86
- a && b && c
81
+ Device::Network.connected? && @client && @client.connected?
87
82
  end
88
83
 
89
84
  def self.close!
@@ -1,4 +1,4 @@
1
1
  module DaFunk
2
- VERSION="1.7.0"
2
+ VERSION="1.7.1"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: da_funk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Scalone