lighthouse-matchers 1.0.3 → 1.2.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 +56 -0
- data/.github/workflows/release.yml +30 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +5 -2
- data/CHANGELOG.md +17 -10
- data/CONTRIBUTING.md +22 -12
- data/Gemfile.lock +27 -15
- data/README.md +29 -23
- data/Rakefile +10 -0
- data/bin/setup +1 -0
- data/lib/lighthouse/audit_service.rb +23 -6
- data/lib/lighthouse/matchers/rspec.rb +14 -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 +1314 -0
- data/package.json +29 -0
- metadata +39 -8
- data/.travis.yml +0 -11
- data/bin/ci-run +0 -4
data/package.json
ADDED
@@ -0,0 +1,29 @@
|
|
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
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "git+https://github.com/ackama/lighthouse-matchers.git"
|
12
|
+
},
|
13
|
+
"keywords": [
|
14
|
+
"ruby",
|
15
|
+
"gem",
|
16
|
+
"lighthouse",
|
17
|
+
"google-chrome",
|
18
|
+
"rspec"
|
19
|
+
],
|
20
|
+
"author": "Ackama Developers <developers@ackama.com>",
|
21
|
+
"license": "MIT",
|
22
|
+
"bugs": {
|
23
|
+
"url": "https://github.com/ackama/lighthouse-matchers/issues"
|
24
|
+
},
|
25
|
+
"homepage": "https://github.com/ackama/lighthouse-matchers#readme",
|
26
|
+
"dependencies": {
|
27
|
+
"lighthouse": "^9.6.7"
|
28
|
+
}
|
29
|
+
}
|
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.2.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: 2024-07-13 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/release.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
|
@@ -85,7 +114,6 @@ files:
|
|
85
114
|
- LICENSE
|
86
115
|
- README.md
|
87
116
|
- Rakefile
|
88
|
-
- bin/ci-run
|
89
117
|
- bin/console
|
90
118
|
- bin/setup
|
91
119
|
- lib/lighthouse/audit_service.rb
|
@@ -93,12 +121,15 @@ files:
|
|
93
121
|
- lib/lighthouse/matchers/rspec.rb
|
94
122
|
- lib/lighthouse/matchers/version.rb
|
95
123
|
- lighthouse-matchers.gemspec
|
124
|
+
- package-lock.json
|
125
|
+
- package.json
|
96
126
|
homepage: https://github.com/ackama/lighthouse-matchers
|
97
127
|
licenses: []
|
98
128
|
metadata:
|
99
129
|
homepage_uri: https://github.com/ackama/lighthouse-matchers
|
100
130
|
source_code_uri: https://github.com/ackama/lighthouse-matchers
|
101
131
|
changelog_uri: https://github.com/ackama/lighthouse-matchers/blob/master/CHANGELOG.md
|
132
|
+
rubygems_mfa_required: 'true'
|
102
133
|
post_install_message:
|
103
134
|
rdoc_options: []
|
104
135
|
require_paths:
|
@@ -107,14 +138,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
138
|
requirements:
|
108
139
|
- - ">="
|
109
140
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
141
|
+
version: 2.5.0
|
111
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
143
|
requirements:
|
113
144
|
- - ">="
|
114
145
|
- !ruby/object:Gem::Version
|
115
146
|
version: '0'
|
116
147
|
requirements: []
|
117
|
-
rubygems_version: 3.
|
148
|
+
rubygems_version: 3.4.19
|
118
149
|
signing_key:
|
119
150
|
specification_version: 4
|
120
151
|
summary: Provides RSpec matchers for executing and evaluating Lighthouse audit scores
|
data/.travis.yml
DELETED
data/bin/ci-run
DELETED