inferred_crumpets 0.5.0 → 0.6.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/ruby.yml +6 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +4 -0
- data/README.md +1 -0
- data/inferred_crumpets.gemspec +1 -0
- data/lib/inferred_crumpets/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f19c79f1601d1354dca9c7c344ca8d7b00dad278d5de5c8559db7d3ea76c7ef
|
|
4
|
+
data.tar.gz: ea54714882c5e014f99069a5b9496ca893875c22f61d24b2880666ea251d2dc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af1daa0b2776872524937e773f0a5485efa45bbc672cee49aaf00a103e95a1adcfe87fb3bf9a8c3a1becf1a61c2fbcbeb4462d96961dab8267c985dacbfad7ee
|
|
7
|
+
data.tar.gz: e1fec9439a4b0188a7e55387916c2fd6ad4d78179c7d2f7f00c914101afebabc416feea94558a5025789cfe61fdca6df3d9f1181a19502493673ca5bbe9b859e
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -5,7 +5,7 @@ jobs:
|
|
|
5
5
|
strategy:
|
|
6
6
|
fail-fast: false
|
|
7
7
|
matrix:
|
|
8
|
-
ruby: ["2.6", "2.7", "3.0"]
|
|
8
|
+
ruby: ["2.6", "2.7", "3.0", "3.1"]
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
11
|
- uses: actions/checkout@v2
|
|
@@ -14,3 +14,8 @@ jobs:
|
|
|
14
14
|
ruby-version: ${{ matrix.ruby }}
|
|
15
15
|
bundler-cache: true
|
|
16
16
|
- run: bundle exec rake
|
|
17
|
+
- name: Coveralls
|
|
18
|
+
uses: coverallsapp/github-action@master
|
|
19
|
+
with:
|
|
20
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
21
|
+
path-to-lcov: coverage/lcov.info
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.1.0
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/inferred_crumpets)
|
|
4
4
|
[](https://github.com/sealink/inferred_crumpets/actions)
|
|
5
|
+
[](https://coveralls.io/github/sealink/inferred_crumpets?branch=master)
|
|
5
6
|
|
|
6
7
|
Automatic breadcrumbs for Rails. Built with [crumpet](https://github.com/blaknite/crumpet).
|
|
7
8
|
|
data/inferred_crumpets.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inferred_crumpets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grant Colegate
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: coverage-kit
|
|
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'
|
|
83
97
|
description: Automatic breadcrumbs for Rails.
|
|
84
98
|
email:
|
|
85
99
|
- support@travellink.com.au
|
|
@@ -129,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
143
|
- !ruby/object:Gem::Version
|
|
130
144
|
version: '0'
|
|
131
145
|
requirements: []
|
|
132
|
-
rubygems_version: 3.
|
|
146
|
+
rubygems_version: 3.3.3
|
|
133
147
|
signing_key:
|
|
134
148
|
specification_version: 4
|
|
135
149
|
summary: Automatic breadcrumbs for Rails.
|