pronto-poper 0.7.0 → 0.11.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 +5 -5
- data/.github/CODEOWNERS +3 -0
- data/.github/workflows/checks.yml +22 -0
- data/LICENSE +1 -1
- data/README.md +4 -4
- data/lib/pronto/poper/version.rb +1 -1
- data/pronto-poper.gemspec +5 -5
- metadata +13 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 59ca4cfb83e3da662e07f19a01eac896faead5725647c5b2c7b401a1c46d4ddc
|
|
4
|
+
data.tar.gz: fa53deac96bcc645b99bf7ca102476fb96d5b35962a36a5721c7ac01fbfad4a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4447ba89e64745c8f05e3a069cba74ef24934e4fe5faeb9d465ea4d6bf5d59025379604722d62cd5bf66a96862af0be22fca60fac1eb643c2ac0d67d80809e81
|
|
7
|
+
data.tar.gz: e846161755928150224d8ed2b11d43ef46b871e0abd29c7b8c514fbc641280ff4ad5232b91045452b54aeff09cfe36ea2c93b8c230ef78370425e80c323cbbbe
|
data/.github/CODEOWNERS
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Checks
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ master ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ master ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
ruby:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0']
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v2
|
|
17
|
+
- uses: ruby/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
|
20
|
+
bundler-cache: true
|
|
21
|
+
- name: rake spec
|
|
22
|
+
run: bundle exec rake spec
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Pronto runner for Poper
|
|
2
2
|
|
|
3
|
-
[](https://codeclimate.com/github/prontolabs/pronto-poper)
|
|
4
|
+
[](https://travis-ci.org/prontolabs/pronto-poper)
|
|
5
5
|
[](http://badge.fury.io/rb/pronto-poper)
|
|
6
|
-
[](https://gemnasium.com/prontolabs/pronto-poper)
|
|
7
7
|
|
|
8
|
-
Pronto runner for [Poper](https://github.com/mmozuras/poper), git commit message analyzer. [What is Pronto?](https://github.com/
|
|
8
|
+
Pronto runner for [Poper](https://github.com/mmozuras/poper), git commit message analyzer. [What is Pronto?](https://github.com/prontolabs/pronto)
|
data/lib/pronto/poper/version.rb
CHANGED
data/pronto-poper.gemspec
CHANGED
|
@@ -10,11 +10,11 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
|
11
11
|
s.author = 'Mindaugas Mozūras'
|
|
12
12
|
s.email = 'mindaugas.mozuras@gmail.com'
|
|
13
|
-
s.homepage = 'http://github.
|
|
13
|
+
s.homepage = 'http://github.com/mmozuras/pronto-poper'
|
|
14
14
|
s.summary = 'Pronto runner for Poper, git commit message analyzer'
|
|
15
15
|
|
|
16
16
|
s.licenses = ['MIT']
|
|
17
|
-
s.required_ruby_version = '>=
|
|
17
|
+
s.required_ruby_version = '>= 2.3.0'
|
|
18
18
|
s.rubygems_version = '1.8.23'
|
|
19
19
|
|
|
20
20
|
s.files = `git ls-files`.split($RS).reject do |file|
|
|
@@ -32,9 +32,9 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
s.extra_rdoc_files = ['LICENSE', 'README.md']
|
|
33
33
|
s.require_paths = ['lib']
|
|
34
34
|
|
|
35
|
-
s.add_dependency('pronto', '~> 0.
|
|
36
|
-
s.add_dependency('poper', '~> 0.
|
|
37
|
-
s.add_development_dependency('rake', '~>
|
|
35
|
+
s.add_dependency('pronto', '~> 0.11.0')
|
|
36
|
+
s.add_dependency('poper', '~> 0.2.0')
|
|
37
|
+
s.add_development_dependency('rake', '~> 12.0')
|
|
38
38
|
s.add_development_dependency('rspec', '~> 3.4')
|
|
39
39
|
s.add_development_dependency('rspec-its', '~> 1.2')
|
|
40
40
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pronto-poper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mindaugas Mozūras
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pronto
|
|
@@ -16,42 +16,42 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.11.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.11.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: poper
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: 0.2.0
|
|
34
34
|
type: :runtime
|
|
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: 0.
|
|
40
|
+
version: 0.2.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '12.0'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
54
|
+
version: '12.0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -88,12 +88,14 @@ extra_rdoc_files:
|
|
|
88
88
|
- LICENSE
|
|
89
89
|
- README.md
|
|
90
90
|
files:
|
|
91
|
+
- ".github/CODEOWNERS"
|
|
92
|
+
- ".github/workflows/checks.yml"
|
|
91
93
|
- LICENSE
|
|
92
94
|
- README.md
|
|
93
95
|
- lib/pronto/poper.rb
|
|
94
96
|
- lib/pronto/poper/version.rb
|
|
95
97
|
- pronto-poper.gemspec
|
|
96
|
-
homepage: http://github.
|
|
98
|
+
homepage: http://github.com/mmozuras/pronto-poper
|
|
97
99
|
licenses:
|
|
98
100
|
- MIT
|
|
99
101
|
metadata: {}
|
|
@@ -105,15 +107,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
105
107
|
requirements:
|
|
106
108
|
- - ">="
|
|
107
109
|
- !ruby/object:Gem::Version
|
|
108
|
-
version:
|
|
110
|
+
version: 2.3.0
|
|
109
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
112
|
requirements:
|
|
111
113
|
- - ">="
|
|
112
114
|
- !ruby/object:Gem::Version
|
|
113
115
|
version: '0'
|
|
114
116
|
requirements: []
|
|
115
|
-
|
|
116
|
-
rubygems_version: 2.4.5
|
|
117
|
+
rubygems_version: 3.0.3
|
|
117
118
|
signing_key:
|
|
118
119
|
specification_version: 4
|
|
119
120
|
summary: Pronto runner for Poper, git commit message analyzer
|