maremma 4.9.6 → 4.9.7
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 → ci.yml} +5 -9
- data/CHANGELOG.md +10 -2
- data/Gemfile.lock +11 -11
- data/README.md +1 -1
- data/lib/maremma/version.rb +1 -1
- data/maremma.gemspec +1 -1
- metadata +11 -6
- data/.travis.yml +0 -33
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97f609c2f21061be1d94d1008d66789aea372dcac92f68cc0943ec2a07f85dde
|
4
|
+
data.tar.gz: 7ca7760b1a151b189165bff33d9be4a4e3f5db27ed950744919ad70ae1c4654a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c54549e05fc09105f1b381bcb6558b9e94d6c0d0e40641bd5c779560917e5def941ed56c57362a07968ffbac764cc8761921855e912379483667ea9e3c7e5c1
|
7
|
+
data.tar.gz: 04ffa3d6d3b32b2c9dbf7ca1c9d59f315b485f3bc2e6694f1d1462f64187a29722f64d60fc26b3963c556119181c86e74878303487ccad544e53b8faa58425b2
|
@@ -1,9 +1,10 @@
|
|
1
|
-
name:
|
1
|
+
name: Ruby CI
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
5
|
-
branches:
|
6
|
-
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master ]
|
7
8
|
jobs:
|
8
9
|
build:
|
9
10
|
runs-on: ubuntu-latest
|
@@ -22,16 +23,11 @@ jobs:
|
|
22
23
|
bundle install
|
23
24
|
bundle exec rspec
|
24
25
|
|
25
|
-
# - name: Publish code coverage
|
26
|
-
# uses: paambaati/codeclimate-action@v2.7.4
|
27
|
-
# env:
|
28
|
-
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
29
|
-
|
30
26
|
- name: Notify Slack
|
31
27
|
uses: adamkdean/simple-slack-notify@1.0.4
|
32
28
|
with:
|
33
29
|
channel: '#ops'
|
34
30
|
username: 'GitHub Actions'
|
35
31
|
color: 'good'
|
36
|
-
text: 'A new version of the maremma
|
32
|
+
text: 'A new version of the maremma passes all tests.'
|
37
33
|
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [4.9.7](https://github.com/datacite/maremma/tree/4.9.7) (2022-01-04)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.
|
5
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.6...4.9.7)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Update nokogiri requirement from ~\> 1.11.2 to \>= 1.11.2, \< 1.13.0 [\#15](https://github.com/datacite/maremma/pull/15) ([dependabot[bot]](https://github.com/apps/dependabot))
|
10
|
+
|
11
|
+
## [4.9.6](https://github.com/datacite/maremma/tree/4.9.6) (2021-10-28)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.5...4.9.6)
|
6
14
|
|
7
15
|
**Merged pull requests:**
|
8
16
|
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
maremma (4.9.
|
4
|
+
maremma (4.9.7)
|
5
5
|
activesupport (>= 4.2.5)
|
6
6
|
addressable (>= 2.3.6)
|
7
7
|
builder (~> 3.2, >= 3.2.2)
|
@@ -9,14 +9,14 @@ PATH
|
|
9
9
|
faraday (~> 0.17.3)
|
10
10
|
faraday-encoding (~> 0.0.4)
|
11
11
|
faraday_middleware (~> 0.14.0)
|
12
|
-
nokogiri (
|
12
|
+
nokogiri (>= 1.11.2, < 1.13.0)
|
13
13
|
oj (>= 2.8.3)
|
14
14
|
oj_mimic_json (~> 1.0, >= 1.0.1)
|
15
15
|
|
16
16
|
GEM
|
17
17
|
remote: https://rubygems.org/
|
18
18
|
specs:
|
19
|
-
activesupport (6.1.4.
|
19
|
+
activesupport (6.1.4.4)
|
20
20
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
21
21
|
i18n (>= 1.6, < 2)
|
22
22
|
minitest (>= 5.1)
|
@@ -39,16 +39,16 @@ GEM
|
|
39
39
|
faraday_middleware (0.14.0)
|
40
40
|
faraday (>= 0.7.4, < 1.0)
|
41
41
|
hashdiff (1.0.1)
|
42
|
-
i18n (1.8.
|
42
|
+
i18n (1.8.11)
|
43
43
|
concurrent-ruby (~> 1.0)
|
44
44
|
jaro_winkler (1.5.4)
|
45
|
-
mini_portile2 (2.
|
46
|
-
minitest (5.
|
45
|
+
mini_portile2 (2.6.1)
|
46
|
+
minitest (5.15.0)
|
47
47
|
multipart-post (2.1.1)
|
48
|
-
nokogiri (1.
|
49
|
-
mini_portile2 (~> 2.
|
48
|
+
nokogiri (1.12.5)
|
49
|
+
mini_portile2 (~> 2.6.1)
|
50
50
|
racc (~> 1.4)
|
51
|
-
oj (3.13.
|
51
|
+
oj (3.13.10)
|
52
52
|
oj_mimic_json (1.0.1)
|
53
53
|
parallel (1.20.1)
|
54
54
|
parser (3.0.2.0)
|
@@ -98,7 +98,7 @@ GEM
|
|
98
98
|
addressable (>= 2.3.6)
|
99
99
|
crack (>= 0.3.2)
|
100
100
|
hashdiff (>= 0.4.0, < 2.0.0)
|
101
|
-
zeitwerk (2.5.
|
101
|
+
zeitwerk (2.5.3)
|
102
102
|
|
103
103
|
PLATFORMS
|
104
104
|
ruby
|
@@ -116,4 +116,4 @@ DEPENDENCIES
|
|
116
116
|
webmock (~> 3.0, >= 3.0.1)
|
117
117
|
|
118
118
|
BUNDLED WITH
|
119
|
-
2.
|
119
|
+
2.3.4
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[![Identifier](https://img.shields.io/badge/doi-10.5438%2Fqeg0--3gm3-fca709.svg)](https://doi.org/10.5438/qeg0-3gm3)
|
2
2
|
[![Gem Version](https://badge.fury.io/rb/maremma.svg)](https://badge.fury.io/rb/maremma)
|
3
|
-
[![Build Status](https://
|
3
|
+
[![Build Status](https://github.com/datacite/maremma/actions/workflows/ci.yml/badge.svg)](https://github.com/datacite/maremma/actions/workflows/ci.yml)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/datacite/maremma/badges/gpa.svg)](https://codeclimate.com/github/datacite/maremma)
|
5
5
|
[![Test Coverage](https://codeclimate.com/github/datacite/maremma/badges/coverage.svg)](https://codeclimate.com/github/datacite/maremma/coverage)
|
6
6
|
|
data/lib/maremma/version.rb
CHANGED
data/maremma.gemspec
CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
s.add_dependency "faraday", "~> 0.17.3"
|
26
26
|
s.add_dependency "faraday-encoding", "~> 0.0.4"
|
27
27
|
s.add_dependency "faraday_middleware", "~> 0.14.0"
|
28
|
-
s.add_dependency "nokogiri", "
|
28
|
+
s.add_dependency "nokogiri", ">= 1.11.2", "< 1.13.0"
|
29
29
|
s.add_dependency "oj", ">= 2.8.3"
|
30
30
|
s.add_dependency "oj_mimic_json", "~> 1.0", ">= 1.0.1"
|
31
31
|
s.add_development_dependency "bundler", "~> 2.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: maremma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.9.
|
4
|
+
version: 4.9.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Fenner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -118,16 +118,22 @@ dependencies:
|
|
118
118
|
name: nokogiri
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
120
120
|
requirements:
|
121
|
-
- - "
|
121
|
+
- - ">="
|
122
122
|
- !ruby/object:Gem::Version
|
123
123
|
version: 1.11.2
|
124
|
+
- - "<"
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: 1.13.0
|
124
127
|
type: :runtime
|
125
128
|
prerelease: false
|
126
129
|
version_requirements: !ruby/object:Gem::Requirement
|
127
130
|
requirements:
|
128
|
-
- - "
|
131
|
+
- - ">="
|
129
132
|
- !ruby/object:Gem::Version
|
130
133
|
version: 1.11.2
|
134
|
+
- - "<"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: 1.13.0
|
131
137
|
- !ruby/object:Gem::Dependency
|
132
138
|
name: oj
|
133
139
|
requirement: !ruby/object:Gem::Requirement
|
@@ -316,12 +322,11 @@ extensions: []
|
|
316
322
|
extra_rdoc_files:
|
317
323
|
- README.md
|
318
324
|
files:
|
319
|
-
- ".github/workflows/build.yml"
|
320
325
|
- ".github/workflows/changelog.yml"
|
326
|
+
- ".github/workflows/ci.yml"
|
321
327
|
- ".github/workflows/release.yml"
|
322
328
|
- ".gitignore"
|
323
329
|
- ".rubocop.yml"
|
324
|
-
- ".travis.yml"
|
325
330
|
- CHANGELOG.md
|
326
331
|
- Gemfile
|
327
332
|
- Gemfile.lock
|
data/.travis.yml
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.6.5
|
4
|
-
|
5
|
-
addons:
|
6
|
-
code_climate:
|
7
|
-
repo_token: $CODECLIMATE_REPO_TOKEN
|
8
|
-
|
9
|
-
install:
|
10
|
-
- travis_retry bundle install
|
11
|
-
|
12
|
-
before_script:
|
13
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
14
|
-
- chmod +x ./cc-test-reporter
|
15
|
-
- ./cc-test-reporter before-build
|
16
|
-
|
17
|
-
script:
|
18
|
-
- bundle exec rspec spec
|
19
|
-
after_script:
|
20
|
-
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
21
|
-
|
22
|
-
deploy:
|
23
|
-
provider: rubygems
|
24
|
-
api_key:
|
25
|
-
secure: YqeY08GVxIbvUPawYI6UrMPXtGUuCMC4u6R1Iup2AGJ7AUlYkMwqrwPfzmZPM2fjCBEpKpbY1OekkFUnUvxZvH4gsqMNB7558At6be/i3W1batAu3KZ6GLRk5HDIQcqb1T3noGU2xjwNprblOgrWO8RKxR/Ey3crqLv77FHtHHBTsI3nPPyYgurs1PvN4hjlxStlYMKlLgRBQeEzSKGajKQwj80HiCV+nHRdEEJ/y+a+ZwaxjMrB7Y7VDW+a+NETQw9yoL1KwVxaugGfpAlqP/oCmRVfL18nyMoVwWqYV44ewQh2NoOpzi1RD05DvFhI4qOHkt0/yRIzO/QhGrhpYmktKR1KgNSu8TJAYcb7J7A2OIx8sqyOraENcZK5fjaatIpSxAg0axo0LnLxKi3zBIr1pcdkzqhQyo1hs1PNvtWSrXDoVgAAb8uqRNfRXKPzrukATvL+gyFJnnxyF/uPzZItxZv/cAbHfNvWJDk3vEquX4P1SiAsG1a1JsWRKgrDPlvT45E74vE1MxIElo+25NktLqutG1dwz/TFFrDcTGSTwO/NijGdAPJVfbTDuVblKCh9UZmf38X9+3QT5U8OA4Z4GaG8Aud0PB+ml27uDGqBtS7PGC69/q3lbV9s7zpYe/9pnhRfHGzNCGcKpPIbW2gUiJINKbd5ZV4KMv1uZCM=
|
26
|
-
gem: maremma
|
27
|
-
on:
|
28
|
-
tags: true
|
29
|
-
repo: datacite/maremma
|
30
|
-
|
31
|
-
notifications:
|
32
|
-
email: false
|
33
|
-
slack: datacite:Wt8En0ALoTA6Kjc5EOKNDWxN
|