pronto-poper 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cddd6d91897ab19c5f6b098ccd9ec939c2c131263ceb8f7fe5e08f98f05653fc
4
- data.tar.gz: c211efc34d9ce931672b87c079f3ae1cbba0a556aa68e3e5194906cf910fddc2
3
+ metadata.gz: 59ca4cfb83e3da662e07f19a01eac896faead5725647c5b2c7b401a1c46d4ddc
4
+ data.tar.gz: fa53deac96bcc645b99bf7ca102476fb96d5b35962a36a5721c7ac01fbfad4a2
5
5
  SHA512:
6
- metadata.gz: c6363b60c80627745a9a5d38b25643ecf48eb6fa972d4576e5cd2ca413c08e741b2a5971d60646f4dd1a6ec201edbe6fed368b8a09d495cdab4b4efd4da9050b
7
- data.tar.gz: 1db11879301b61f6d06c3e88a2dda8f609d067b70ec82f8e1b8d87d3f95e8ce36a96bca1b329a199cce1900e725460c9bf368394598ca11a1a1a14b14b7ad171
6
+ metadata.gz: 4447ba89e64745c8f05e3a069cba74ef24934e4fe5faeb9d465ea4d6bf5d59025379604722d62cd5bf66a96862af0be22fca60fac1eb643c2ac0d67d80809e81
7
+ data.tar.gz: e846161755928150224d8ed2b11d43ef46b871e0abd29c7b8c514fbc641280ff4ad5232b91045452b54aeff09cfe36ea2c93b8c230ef78370425e80c323cbbbe
@@ -0,0 +1,3 @@
1
+ # Order is important. The last matching pattern takes the most precedence.
2
+ # Default owners for everything in the repo.
3
+ * @prontolabs/core
@@ -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/README.md CHANGED
@@ -5,4 +5,4 @@
5
5
  [![Gem Version](https://badge.fury.io/rb/pronto-poper.png)](http://badge.fury.io/rb/pronto-poper)
6
6
  [![Dependency Status](https://gemnasium.com/prontolabs/pronto-poper.png)](https://gemnasium.com/prontolabs/pronto-poper)
7
7
 
8
- Pronto runner for [Poper](https://github.com/prontolabs/poper), git commit message analyzer. [What is Pronto?](https://github.com/prontolabs/pronto)
8
+ Pronto runner for [Poper](https://github.com/mmozuras/poper), git commit message analyzer. [What is Pronto?](https://github.com/prontolabs/pronto)
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module PoperVersion
3
- VERSION = '0.10.0'.freeze
3
+ VERSION = '0.11.0'.freeze
4
4
  end
5
5
  end
@@ -32,7 +32,7 @@ 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.10.0')
35
+ s.add_dependency('pronto', '~> 0.11.0')
36
36
  s.add_dependency('poper', '~> 0.2.0')
37
37
  s.add_development_dependency('rake', '~> 12.0')
38
38
  s.add_development_dependency('rspec', '~> 3.4')
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.10.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: 2019-02-03 00:00:00.000000000 Z
11
+ date: 2021-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.10.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.10.0
26
+ version: 0.11.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: poper
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -88,6 +88,8 @@ 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
@@ -112,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
114
  - !ruby/object:Gem::Version
113
115
  version: '0'
114
116
  requirements: []
115
- rubygems_version: 3.0.1
117
+ rubygems_version: 3.0.3
116
118
  signing_key:
117
119
  specification_version: 4
118
120
  summary: Pronto runner for Poper, git commit message analyzer