lighthouse-matchers 1.0.3 → 1.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 +4 -4
- data/.github/workflows/ci.yml +45 -0
- data/.github/workflows/codeql.yml +74 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +5 -2
- data/CHANGELOG.md +13 -11
- data/CONTRIBUTING.md +22 -12
- data/Gemfile.lock +25 -15
- data/README.md +23 -23
- data/Rakefile +10 -0
- data/bin/ci-run +4 -2
- data/bin/setup +1 -0
- data/lib/lighthouse/audit_service.rb +6 -5
- data/lib/lighthouse/matchers/rspec.rb +8 -4
- data/lib/lighthouse/matchers/version.rb +1 -1
- data/lib/lighthouse/matchers.rb +2 -6
- data/lighthouse-matchers.gemspec +7 -2
- data/package-lock.json +959 -0
- data/package.json +32 -0
- metadata +39 -7
- data/.travis.yml +0 -11
data/package.json
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"name": "lighthouse-matchers-rubygem",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Implements RSpec matchers for Google Chrome Lighthouse audits.",
|
5
|
+
"main": "index.js",
|
6
|
+
"directories": {
|
7
|
+
"lib": "lib"
|
8
|
+
},
|
9
|
+
"scripts": {
|
10
|
+
"test": "bin/ci-run"
|
11
|
+
},
|
12
|
+
"repository": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "git+https://github.com/ackama/lighthouse-matchers.git"
|
15
|
+
},
|
16
|
+
"keywords": [
|
17
|
+
"ruby",
|
18
|
+
"gem",
|
19
|
+
"lighthouse",
|
20
|
+
"google-chrome",
|
21
|
+
"rspec"
|
22
|
+
],
|
23
|
+
"author": "Ackama Developers <developers@ackama.com>",
|
24
|
+
"license": "MIT",
|
25
|
+
"bugs": {
|
26
|
+
"url": "https://github.com/ackama/lighthouse-matchers/issues"
|
27
|
+
},
|
28
|
+
"homepage": "https://github.com/ackama/lighthouse-matchers#readme",
|
29
|
+
"dependencies": {
|
30
|
+
"lighthouse": "^9.6.7"
|
31
|
+
}
|
32
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lighthouse-matchers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh McArthur on behalf of Ackama
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '13.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '13.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-retry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: rubocop
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +80,20 @@ dependencies:
|
|
66
80
|
- - ">="
|
67
81
|
- !ruby/object:Gem::Version
|
68
82
|
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: webrick
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
69
97
|
description:
|
70
98
|
email:
|
71
99
|
- josh.mcarthur@ackama.com
|
@@ -73,10 +101,11 @@ executables: []
|
|
73
101
|
extensions: []
|
74
102
|
extra_rdoc_files: []
|
75
103
|
files:
|
104
|
+
- ".github/workflows/ci.yml"
|
105
|
+
- ".github/workflows/codeql.yml"
|
76
106
|
- ".gitignore"
|
77
107
|
- ".rspec"
|
78
108
|
- ".rubocop.yml"
|
79
|
-
- ".travis.yml"
|
80
109
|
- CHANGELOG.md
|
81
110
|
- CODE_OF_CONDUCT.md
|
82
111
|
- CONTRIBUTING.md
|
@@ -93,12 +122,15 @@ files:
|
|
93
122
|
- lib/lighthouse/matchers/rspec.rb
|
94
123
|
- lib/lighthouse/matchers/version.rb
|
95
124
|
- lighthouse-matchers.gemspec
|
125
|
+
- package-lock.json
|
126
|
+
- package.json
|
96
127
|
homepage: https://github.com/ackama/lighthouse-matchers
|
97
128
|
licenses: []
|
98
129
|
metadata:
|
99
130
|
homepage_uri: https://github.com/ackama/lighthouse-matchers
|
100
131
|
source_code_uri: https://github.com/ackama/lighthouse-matchers
|
101
132
|
changelog_uri: https://github.com/ackama/lighthouse-matchers/blob/master/CHANGELOG.md
|
133
|
+
rubygems_mfa_required: 'true'
|
102
134
|
post_install_message:
|
103
135
|
rdoc_options: []
|
104
136
|
require_paths:
|
@@ -107,14 +139,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
139
|
requirements:
|
108
140
|
- - ">="
|
109
141
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
142
|
+
version: 2.5.0
|
111
143
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
144
|
requirements:
|
113
145
|
- - ">="
|
114
146
|
- !ruby/object:Gem::Version
|
115
147
|
version: '0'
|
116
148
|
requirements: []
|
117
|
-
rubygems_version: 3.
|
149
|
+
rubygems_version: 3.3.26
|
118
150
|
signing_key:
|
119
151
|
specification_version: 4
|
120
152
|
summary: Provides RSpec matchers for executing and evaluating Lighthouse audit scores
|