ontra-react-common-capybara-helpers 0.1.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 +7 -0
- data/ontra-react-common-capybara-helpers.gemspec +43 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9675d7961a85d27c1c28b6edcf5c4452ebfbc0359a92051c2aed490c20a9316e
|
4
|
+
data.tar.gz: b411361a7068d6b591e390729435e1cb46b40fe6918d3a85eb1b4dcdb8855f34
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6ad796dd15724fea858a6ff8e751cb1a42c659d152b49d18c7c89a8a082a4e0b5f14c6827a340203b61bba84bf5e162ee067a15fe362d4c4cc2f32dbc66eb28b
|
7
|
+
data.tar.gz: de835140ff41a9820af5e55768f831b99d7e1ef881d8ca35104540ff00e8607fd45449ff9b07a0953821d33014a6f3c395d4ab5677cdff2337d6530d43950637
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/ontra/react/common/capybara/helpers/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "ontra-react-common-capybara-helpers"
|
7
|
+
spec.version = Ontra::React::Common::Capybara::Helpers::VERSION
|
8
|
+
spec.authors = ["Dan Moazen"]
|
9
|
+
spec.email = ["dmoazen@ontra.ai"]
|
10
|
+
|
11
|
+
spec.summary = "Helpers for capybara tests to intereact and assert ontra-react-common components."
|
12
|
+
spec.homepage = "https://gitlab.com/incloudcounsel/eng/architecture/ontra-common-react/-/tree/main/src/#{spec.name}"
|
13
|
+
spec.license = "MIT"
|
14
|
+
spec.required_ruby_version = ">= 2.6.0"
|
15
|
+
|
16
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
17
|
+
|
18
|
+
raise "RubyGem 2.0 or newer is required" unless spec.respond_to? :metadata
|
19
|
+
|
20
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
21
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(__dir__) do
|
26
|
+
`git ls-files -z`.split("\x0")
|
27
|
+
.select do |f|
|
28
|
+
(File.expand_path(f) == __FILE__) || f.start_with?(spec.name)
|
29
|
+
end
|
30
|
+
.reject do |f|
|
31
|
+
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
|
32
|
+
end
|
33
|
+
end
|
34
|
+
spec.bindir = "exe"
|
35
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
36
|
+
spec.require_paths = ["lib"]
|
37
|
+
|
38
|
+
# Uncomment to register a new dependency of your gem
|
39
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
40
|
+
|
41
|
+
# For more information and examples about making a new gem, check out our
|
42
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
43
|
+
end
|
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ontra-react-common-capybara-helpers
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dan Moazen
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-05-16 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
- dmoazen@ontra.ai
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ontra-react-common-capybara-helpers.gemspec
|
21
|
+
homepage: https://gitlab.com/incloudcounsel/eng/architecture/ontra-common-react/-/tree/main/src/ontra-react-common-capybara-helpers
|
22
|
+
licenses:
|
23
|
+
- MIT
|
24
|
+
metadata:
|
25
|
+
allowed_push_host: https://rubygems.org
|
26
|
+
homepage_uri: https://gitlab.com/incloudcounsel/eng/architecture/ontra-common-react/-/tree/main/src/ontra-react-common-capybara-helpers
|
27
|
+
source_code_uri: https://gitlab.com/incloudcounsel/eng/architecture/ontra-common-react/-/tree/main/src/ontra-react-common-capybara-helpers
|
28
|
+
post_install_message:
|
29
|
+
rdoc_options: []
|
30
|
+
require_paths:
|
31
|
+
- lib
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.6.0
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
requirements: []
|
43
|
+
rubygems_version: 3.3.26
|
44
|
+
signing_key:
|
45
|
+
specification_version: 4
|
46
|
+
summary: Helpers for capybara tests to intereact and assert ontra-react-common components.
|
47
|
+
test_files: []
|