rustwright-core 0.1.1

Rust CDP core for a Python Playwright-compatible automation API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require_relative 'lib/rustwright'

Gem::Specification.new do |spec|
  spec.name = 'rustwright'
  spec.version = Rustwright::VERSION
  spec.authors = ['Rustwright contributors']
  spec.summary = 'Ruby bindings for the Rustwright browser automation C API'
  spec.homepage = 'https://github.com/Skyvern-AI/rustwright'
  spec.license = 'MIT'
  spec.required_ruby_version = '>= 2.6'
  spec.files = Dir['lib/**/*.rb', 'README.md']
  spec.require_paths = ['lib']
end