webview_ruby 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 78024485bfc5c0fb96bd833812a6a3ce5d2d7f37ec7ca1b8b1ea0511b596a91f
4
- data.tar.gz: c74fbe8128f0843dd013e6ef47e23cacb416ff69e6fa5e4fe602b2723e1f3a6c
3
+ metadata.gz: 69ed78c9c7afed75c8371b7050fa0373f7fae112bc140164b76a8c8b6534e52a
4
+ data.tar.gz: fc3f1e3044c93f0c27e003071a9c251910b97da3c5c076d7d67b7cc3aafc4def
5
5
  SHA512:
6
- metadata.gz: 207cc3e082e27b00a0054866db5b019396f0979c4b87b4e61e5e5a5551ede262e8dd40f331ae31700dcddcb241d7f53fdbc6efbfefc2db1e871b30eea72ee4c9
7
- data.tar.gz: 2df32e67939c5fcbc6f2dd379b474f4d963db044f170eff22149e2d7d09ca156d02b8172ab12bab698a17a85188e4745394736507aabd46553df93d4e4c5c049
6
+ metadata.gz: 4cccf1db60986874ed631c835296705532825a04d76c4dc82d2b392ec5bad7e42a2cda539168d05dd1404fe8229e9b26dfba5bf5a59b03576f6ffb2e049d4cc5
7
+ data.tar.gz: ae0a5ad8841ac6deb689c3830b55e3210c4514d21894ba5987dd4263866b77f7ef642fbe718c64f863b417ff9eb1ee4fc29fb351f87c55748f91944dbe7162ee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.2] - 2022-03-23
4
+
5
+ - Add support for linux compilation
3
6
  ## [0.1.0] - 2022-02-09
4
7
 
5
8
  - Initial release
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  WebViewRuby is a library that provide bindings for [webview/webview](https://github.com/webview/webview) a tiny tiny cross-platform webview library to build modern cross-platform GUIs. Webview uses Cocoa/WebKit on macOS, gtk-webkit2 on Linux and Edge on Windows 10.
4
4
 
5
- IMPORTANT: Compilation may not work on windows and linux right now. Follow the progress [here](https://github.com/Maaarcocr/webview_ruby/issues/1)
5
+ IMPORTANT: Compilation may not work on windows right now. Follow the progress [here](https://github.com/Maaarcocr/webview_ruby/issues/1)
6
6
 
7
7
  ## Installation
8
8
 
data/ext/Rakefile CHANGED
@@ -1,6 +1,14 @@
1
1
  require 'ffi-compiler/compile_task'
2
+ require 'rbconfig'
2
3
 
3
4
  FFI::Compiler::CompileTask.new('webview-ext') do |c|
5
+ if RbConfig::CONFIG['host_os'] =~ /darwin/
4
6
  c.cxxflags << "-std=c++11"
5
7
  c.ldflags << "-framework WebKit"
6
- end
8
+ elsif RbConfig::CONFIG['host_os'] =~ /linux/
9
+ c.cxxflags << `pkg-config --cflags gtk+-3.0 webkit2gtk-4.0`.strip
10
+ c.ldflags << `pkg-config --libs gtk+-3.0 webkit2gtk-4.0`.strip
11
+ else
12
+ puts "Unsupported operating system prolly windows, check rake file in ext directory in source code and add correct flags from here https://github.com/webview/webview#webview-for-cc-developers "
13
+ end
14
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WebviewRuby
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.1
4
+ version: 0.1.2
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: 2023-02-26 00:00:00.000000000 Z
11
+ date: 2023-03-23 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.7
99
+ rubygems_version: 3.3.11
100
100
  signing_key:
101
101
  specification_version: 4
102
102
  summary: Ruby bindings for webview