inferred_crumpets 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.git-blame-ignore-revs +12 -0
- data/.github/workflows/ruby.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +21 -17
- data/inferred_crumpets.gemspec +1 -1
- data/lib/inferred_crumpets/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 540290ccb31780e476a878e574cabbcb4aa86424539d285b46185ab88e942366
|
4
|
+
data.tar.gz: 9b9f7c414bf37d12198462c855899de6253551cf61aa7ca8c951645402d8a00d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab5dcf0c375dafba46da8c2c143ef938d71398caf2d6ca8a3adcfe37489fb9600ad2f85e7e1de88f268113eb80e6229c0930132551b788824b128145c1aa91fe
|
7
|
+
data.tar.gz: 44db64bef9bcf5b2c5b8965d0d4428ceba6333de23074a6df26ecb341c3100a9f14955845fe03d2233dc905aa7ad1e860ca78e7aaeb6d2f1589ce31bca8ae154
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# The commits that did automated reformatting. You can ignore them
|
2
|
+
# during git-blame with `--ignore-rev` or `--ignore-revs-file`.
|
3
|
+
# You can also globally configure GIT with the following command
|
4
|
+
#
|
5
|
+
# $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
|
6
|
+
#
|
7
|
+
# Example entries:
|
8
|
+
#
|
9
|
+
# <full commit hash> # initial black-format
|
10
|
+
# <full commit hash> # rename something internal
|
11
|
+
|
12
|
+
0daeaca5107bc0c6d1577dd8b546da447739e8f3 # Pretty CHANGELOG.md
|
data/.github/workflows/ruby.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.2.0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# InferredCrumpets
|
2
2
|
|
3
|
+
## 0.7.0
|
4
|
+
|
5
|
+
- [PLAT-1175] Update to Ruby 3.2
|
6
|
+
|
3
7
|
## 0.6.0
|
4
8
|
|
5
9
|
- [PLAT-183] Ruby 3.1, coveralls via github actions
|
@@ -10,59 +14,59 @@
|
|
10
14
|
|
11
15
|
## 0.4.2
|
12
16
|
|
13
|
-
|
17
|
+
- [TT-6224] ActiveRecord::Base subjects can now take a custom crumb name
|
14
18
|
|
15
19
|
## 0.4.1
|
16
20
|
|
17
|
-
|
21
|
+
- [TT-5835] Fix crumb title for active record relation
|
18
22
|
|
19
23
|
## 0.4.0
|
20
24
|
|
21
|
-
|
25
|
+
- [TT-5807] Use crumb title for the subject name
|
22
26
|
|
23
27
|
## 0.3.0
|
24
28
|
|
25
|
-
|
26
|
-
|
29
|
+
- [TT-5087] Add parent to be displayed on index routes
|
30
|
+
- [TT-5088] Add ability to link to all actions
|
27
31
|
|
28
32
|
## 0.2.6
|
29
33
|
|
30
|
-
|
34
|
+
- [TT-4479] Added grandparent support
|
31
35
|
|
32
36
|
## 0.2.5
|
33
37
|
|
34
|
-
|
38
|
+
- [RU-145] Check for the Rails 5 ActionController::UrlGenerationError
|
35
39
|
|
36
40
|
## 0.2.4
|
37
41
|
|
38
|
-
|
39
|
-
|
42
|
+
- [TT-3102] Move url checking out into seperate class
|
43
|
+
- [TT-3102] Fix regression where subject routes where not build properly
|
40
44
|
|
41
45
|
## 0.2.3
|
42
46
|
|
43
|
-
|
47
|
+
- [TT-3117] Fix: NoMethodError when subject is not linkable
|
44
48
|
|
45
49
|
## 0.2.2
|
46
50
|
|
47
|
-
|
51
|
+
- [TT-3102] Fix: Show subject crumb even when action is not linkable
|
48
52
|
|
49
53
|
## 0.2.1
|
50
54
|
|
51
|
-
|
55
|
+
- [TT-2850] Fix: Don't link to actions that have no url
|
52
56
|
|
53
57
|
## 0.2.0
|
54
58
|
|
55
|
-
|
56
|
-
|
59
|
+
- Fix: shallow routes no longer cause a routing error
|
60
|
+
- Change: collection crumb not shown if a parent is set and the collection is shallow routed
|
57
61
|
|
58
62
|
## 0.1.2
|
59
63
|
|
60
|
-
|
64
|
+
- Fix: non-index collection actions now work
|
61
65
|
|
62
66
|
## 0.1.1
|
63
67
|
|
64
|
-
|
68
|
+
- Update: works with Crumpet 0.3.0
|
65
69
|
|
66
70
|
## 0.1.0
|
67
71
|
|
68
|
-
|
72
|
+
- Initial release
|
data/inferred_crumpets.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.bindir = "exe"
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
22
|
spec.require_paths = ["lib"]
|
23
|
-
spec.required_ruby_version = '>=
|
23
|
+
spec.required_ruby_version = '>= 3.0'
|
24
24
|
|
25
25
|
spec.add_dependency "rails", ">= 6"
|
26
26
|
spec.add_dependency "crumpet", ">= 0.3.0"
|
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.7.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: 2023-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -101,6 +101,7 @@ executables: []
|
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
|
+
- ".git-blame-ignore-revs"
|
104
105
|
- ".github/dependabot.yml"
|
105
106
|
- ".github/workflows/release.yml"
|
106
107
|
- ".github/workflows/ruby.yml"
|
@@ -136,14 +137,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
137
|
requirements:
|
137
138
|
- - ">="
|
138
139
|
- !ruby/object:Gem::Version
|
139
|
-
version:
|
140
|
+
version: '3.0'
|
140
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
142
|
requirements:
|
142
143
|
- - ">="
|
143
144
|
- !ruby/object:Gem::Version
|
144
145
|
version: '0'
|
145
146
|
requirements: []
|
146
|
-
rubygems_version: 3.
|
147
|
+
rubygems_version: 3.4.1
|
147
148
|
signing_key:
|
148
149
|
specification_version: 4
|
149
150
|
summary: Automatic breadcrumbs for Rails.
|