isomorfeus-puppetmaster 0.7.0 → 0.8.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
  SHA256:
3
- metadata.gz: ebe466bb26afc4e8af44f81ad554243bb75a6a1f32cac85634f4fcf5381ac9a6
4
- data.tar.gz: e7d3c72d1278b237e624661d096fef829d9d2200ceed1807384541d3d8224403
3
+ metadata.gz: 5d1d09c368b0fd5873b019ae1c4ab872b4b72c474c1bb800afc4567b6681f793
4
+ data.tar.gz: fa8dc5556af45cf98155abda40c48e1443435e41692d52afafed5b4ab62b606e
5
5
  SHA512:
6
- metadata.gz: c1f137e1696ed9ca04be5595d91607da6a74afd496cf5710b7551e0838b815ab982cc7af9aab3522af6cf22e02b233ecca803243d85e75644f0b2808dca02243
7
- data.tar.gz: 972d1a20f780b2dcb1a2a2ae21acfa6c9afa0f1a0bb5b910ef7194c82cd47cdf57d7ac1382aef46657d438b1af300f77ea50da67b627f2e7732375de00e5b33b
6
+ metadata.gz: 7fbfab536983319395f69630207e9f877fe326eb536c1564c20a0905455b415f463b980db05eb181c9f0159e46935ac74b8b5c18d0b7a4f7d8f579b10c0e830c
7
+ data.tar.gz: 462cbf65cd4861e0378f78ac4d69badb3fbe19a874a2df498b832f18fce588a2e7a849d2fcfa00c0a2d38401d6cf6aa983ffd1c69edba7508acfeecc846e9fb3
@@ -1,4 +1,4 @@
1
- class Puppeteer::DOMWorld
1
+ class Puppeteer::IsolaatedWorld
2
2
  def eval_ruby(ruby_source = '', &block)
3
3
  execution_context.eval_ruby(ruby_source, &block)
4
4
  end
@@ -1,3 +1,3 @@
1
1
  module Isomorfeus
2
- PUPPETMASTER_VERSION = '0.7.0'
2
+ PUPPETMASTER_VERSION = '0.8.0'
3
3
  end
@@ -4,6 +4,7 @@ require 'active_support/core_ext/string'
4
4
  require 'uri'
5
5
  require 'net/http'
6
6
  require 'rack'
7
+ require 'rackup'
7
8
  require 'opal'
8
9
  opal_path = Gem::Specification.find_by_name('opal').full_gem_path
9
10
  promise_path = File.join(opal_path, 'stdlib', 'promise.rb')
@@ -20,7 +21,7 @@ require 'securerandom'
20
21
  require 'puppeteer-ruby'
21
22
 
22
23
  require 'isomorfeus/puppeteer/execution_context'
23
- require 'isomorfeus/puppeteer/dom_world'
24
+ require 'isomorfeus/puppeteer/isolated_world'
24
25
  require 'isomorfeus/puppeteer/frame'
25
26
  require 'isomorfeus/puppeteer/js_handle'
26
27
  require 'isomorfeus/puppeteer/element_handle'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isomorfeus-puppetmaster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Biedermann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-20 00:00:00.000000000 Z
11
+ date: 2022-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -106,14 +106,14 @@ dependencies:
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: 0.43.0
109
+ version: 0.44.0
110
110
  type: :runtime
111
111
  prerelease: false
112
112
  version_requirements: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - "~>"
115
115
  - !ruby/object:Gem::Version
116
- version: 0.43.0
116
+ version: 0.44.0
117
117
  - !ruby/object:Gem::Dependency
118
118
  name: rack
119
119
  requirement: !ruby/object:Gem::Requirement
@@ -291,10 +291,10 @@ files:
291
291
  - LICENSE
292
292
  - README.md
293
293
  - lib/isomorfeus-puppetmaster.rb
294
- - lib/isomorfeus/puppeteer/dom_world.rb
295
294
  - lib/isomorfeus/puppeteer/element_handle.rb
296
295
  - lib/isomorfeus/puppeteer/execution_context.rb
297
296
  - lib/isomorfeus/puppeteer/frame.rb
297
+ - lib/isomorfeus/puppeteer/isolated_world.rb
298
298
  - lib/isomorfeus/puppeteer/js_handle.rb
299
299
  - lib/isomorfeus/puppeteer/page.rb
300
300
  - lib/isomorfeus/puppetmaster.rb