marketplace_opportunity_scraper 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +2 -0
- data/.github/workflows/publish.yml +2 -0
- data/.github/workflows/smoke_test.yml +28 -0
- data/.rspec +1 -0
- data/Gemfile.lock +11 -7
- data/lib/marketplace_opportunity_scraper/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86e428fe77ff33c97825f5c2080925ab0cd2ef9e19766b205ae1bf1631494526
|
4
|
+
data.tar.gz: ca69b2eef40d9689c6f4554b55dc775294d7d3987e020cac7227f6e6dfce1a3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96314a1dde3efd7a880eddc66622220d98b81f208a6f92f7ee41cf4b844d86bdac105868801d0aa61cd9354df1a9a603a20c3a2bc0555759b3c2e9aa7a50d2dc
|
7
|
+
data.tar.gz: 4dfd55190c69973622b5c07869ccc7527f01d1582c490b18b56f516b4e817d627ecef870c8e23c0031ee8341c346967c191d6746201026f8014b5cfb9b3f1f66
|
data/.github/workflows/build.yml
CHANGED
@@ -0,0 +1,28 @@
|
|
1
|
+
name: Smoke Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: "0 15 * * *"
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
build:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v1
|
13
|
+
- name: Set up Ruby
|
14
|
+
uses: actions/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: '2.7'
|
17
|
+
- name: Set up cache
|
18
|
+
uses: actions/cache@v2
|
19
|
+
with:
|
20
|
+
path: vendor/bundle
|
21
|
+
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
22
|
+
restore-keys: |
|
23
|
+
${{ runner.os }}-gems-
|
24
|
+
- name: Test the layout hasn't changed and broken the gem
|
25
|
+
run: |
|
26
|
+
gem install bundler
|
27
|
+
bundle install --jobs 4 --retry 3 --path ./vendor/bundle
|
28
|
+
bundle exec rspec -t smoke_test
|
data/.rspec
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
marketplace_opportunity_scraper (0.2.
|
4
|
+
marketplace_opportunity_scraper (0.2.2)
|
5
5
|
mechanize (~> 2.7)
|
6
6
|
|
7
7
|
GEM
|
@@ -20,7 +20,7 @@ GEM
|
|
20
20
|
hashdiff (1.0.1)
|
21
21
|
http-cookie (1.0.3)
|
22
22
|
domain_name (~> 0.5)
|
23
|
-
mechanize (2.7.
|
23
|
+
mechanize (2.7.7)
|
24
24
|
domain_name (~> 0.5, >= 0.5.1)
|
25
25
|
http-cookie (~> 1.0)
|
26
26
|
mime-types (>= 1.17.2)
|
@@ -28,17 +28,19 @@ GEM
|
|
28
28
|
net-http-persistent (>= 2.5.2)
|
29
29
|
nokogiri (~> 1.6)
|
30
30
|
ntlm-http (~> 0.1, >= 0.1.1)
|
31
|
+
webrick (~> 1.7)
|
31
32
|
webrobots (>= 0.0.9, < 0.2)
|
32
33
|
method_source (0.9.2)
|
33
34
|
mime-types (3.3.1)
|
34
35
|
mime-types-data (~> 3.2015)
|
35
|
-
mime-types-data (3.2020.
|
36
|
-
mini_portile2 (2.
|
36
|
+
mime-types-data (3.2020.1104)
|
37
|
+
mini_portile2 (2.5.0)
|
37
38
|
net-http-digest_auth (1.4.1)
|
38
|
-
net-http-persistent (4.0.
|
39
|
+
net-http-persistent (4.0.1)
|
39
40
|
connection_pool (~> 2.2)
|
40
|
-
nokogiri (1.
|
41
|
-
mini_portile2 (~> 2.
|
41
|
+
nokogiri (1.11.1)
|
42
|
+
mini_portile2 (~> 2.5.0)
|
43
|
+
racc (~> 1.4)
|
42
44
|
ntlm-http (0.1.1)
|
43
45
|
parallel (1.19.2)
|
44
46
|
parser (2.7.1.3)
|
@@ -47,6 +49,7 @@ GEM
|
|
47
49
|
coderay (~> 1.1.0)
|
48
50
|
method_source (~> 0.9.0)
|
49
51
|
public_suffix (4.0.5)
|
52
|
+
racc (1.5.2)
|
50
53
|
rainbow (3.0.0)
|
51
54
|
rake (13.0.1)
|
52
55
|
regexp_parser (1.7.1)
|
@@ -91,6 +94,7 @@ GEM
|
|
91
94
|
addressable (>= 2.3.6)
|
92
95
|
crack (>= 0.3.2)
|
93
96
|
hashdiff (>= 0.4.0, < 2.0.0)
|
97
|
+
webrick (1.7.0)
|
94
98
|
webrobots (0.1.2)
|
95
99
|
|
96
100
|
PLATFORMS
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: marketplace_opportunity_scraper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stuart Harrison
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -132,6 +132,7 @@ files:
|
|
132
132
|
- ".github/setup-rubygems.sh"
|
133
133
|
- ".github/workflows/build.yml"
|
134
134
|
- ".github/workflows/publish.yml"
|
135
|
+
- ".github/workflows/smoke_test.yml"
|
135
136
|
- ".rspec"
|
136
137
|
- ".ruby-version"
|
137
138
|
- ".standard.yml"
|
@@ -178,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
179
|
- !ruby/object:Gem::Version
|
179
180
|
version: '0'
|
180
181
|
requirements: []
|
181
|
-
rubygems_version: 3.1.
|
182
|
+
rubygems_version: 3.1.4
|
182
183
|
signing_key:
|
183
184
|
specification_version: 4
|
184
185
|
summary: A Ruby gem that fetches the latest opportunities from the Gov.uk Digital
|