webview_ruby 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 80bb60c95ce40f4a3a997c1d7a06da58ad56416d3c132efe49c5204b4b0eb4bf
4
- data.tar.gz: 3998804646c9aa5cdec05a4787ed127ab640445ba8f5df2e01641a9360db8c32
3
+ metadata.gz: 78024485bfc5c0fb96bd833812a6a3ce5d2d7f37ec7ca1b8b1ea0511b596a91f
4
+ data.tar.gz: c74fbe8128f0843dd013e6ef47e23cacb416ff69e6fa5e4fe602b2723e1f3a6c
5
5
  SHA512:
6
- metadata.gz: 345a74af70e29b384456590b46e6fa76d5312137fc922d55185743857aa4fb2bb8abc4f625cf60670c0b0c880dfe1503ac829d23c411352f2c91d0730d8a1efc
7
- data.tar.gz: bb0c0d3c96aa21f8c3366be008bbde70c1085d26594f80548f0248cbf25b784b924a7b1fc6cadf3b9fef38b2d50d1eb3222fb16fe74034189a1ac4cc95cc0c0c
6
+ metadata.gz: 207cc3e082e27b00a0054866db5b019396f0979c4b87b4e61e5e5a5551ede262e8dd40f331ae31700dcddcb241d7f53fdbc6efbfefc2db1e871b30eea72ee4c9
7
+ data.tar.gz: 2df32e67939c5fcbc6f2dd379b474f4d963db044f170eff22149e2d7d09ca156d02b8172ab12bab698a17a85188e4745394736507aabd46553df93d4e4c5c049
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WebviewRuby
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/lib/webview_ruby.rb CHANGED
@@ -24,6 +24,7 @@ module WebviewRuby
24
24
 
25
25
  def initialize(debug:false)
26
26
  @is_running = false
27
+ @bindings = {}
27
28
  @window = WebviewRuby.webview_create(debug ? 1 : 0, nil)
28
29
  end
29
30
 
@@ -67,6 +68,7 @@ module WebviewRuby
67
68
  terminate
68
69
  end
69
70
  end
71
+ @bindings[callback] = true # save a reference
70
72
  WebviewRuby.webview_bind(@window, name, callback, nil)
71
73
  end
72
74
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webview_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marco Concetto Rudilosso
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-02-18 00:00:00.000000000 Z
11
+ date: 2023-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  requirements: []
99
- rubygems_version: 3.3.3
99
+ rubygems_version: 3.3.7
100
100
  signing_key:
101
101
  specification_version: 4
102
102
  summary: Ruby bindings for webview