Skip to content

Commit

Permalink
use clear >= 0.8.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mamantoha committed Jan 13, 2025
1 parent 7893c44 commit 34da5b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ shards:

ameba:
git: https://github.com/crystal-ameba/ameba.git
version: 1.7.0-dev+git.commit.65f7db0a492598548249778bb8ff69937a5801e8
version: 1.7.0-dev+git.commit.e113669f922132b3cfa4b86f72e73644f337989c

any_hash:
git: https://github.com/sija/any_hash.cr.git
Expand All @@ -31,7 +31,7 @@ shards:

clear:
git: https://github.com/crystal-garage/clear.git
version: 0.8.20+git.commit.c4ac908f773981ba3231d3c42afda942d507c823
version: 0.8.21+git.commit.5554e119f7b706474520fed374a1a707a42ac6dd

cmark:
git: https://github.com/amauryt/cr-cmark-gfm.git
Expand Down Expand Up @@ -139,7 +139,7 @@ shards:

redis: # Overridden
git: https://github.com/jgaskins/redis.git
version: 0.10.0+git.commit.f02724bdbc1c9ed0fd3830ebeab0f59a971d96ed
version: 0.10.0+git.commit.7c18c52646d53ec11510b7dfa3a024e3e49e36ef

retriable:
git: https://github.com/sija/retriable.cr.git
Expand Down
1 change: 1 addition & 0 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ dependencies:
clear:
github: crystal-garage/clear
branch: develop
version: '>= 0.8.21'
retriable:
github: Sija/retriable.cr
delegator:
Expand Down
4 changes: 2 additions & 2 deletions src/views/repositories/_header.slang
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ div
a href="#{repository_parent.parent.decorate.show_path}"
= repository_parent.parent.decorate.full_name
.shard__topics.mt-2
- repository.tag_names.each do |tag_name|
a.badge.bg-secondary.text-monospace href="/tags/#{tag_name}" = tag_name
- repository.tags.each do |tag|
a.badge.bg-secondary.text-monospace href="/tags/#{tag.name}" = tag.name
.shard__intro
span
== repository.decorate.description_html.to_s
Expand Down
6 changes: 2 additions & 4 deletions src/views/repositories/_repository.slang
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@
p.shards__shard_desc.dont-break-out
== repository.decorate.description_html.to_s
.shard__topics
/ TODO: for some reason repository.tags breaks html template
/ - repository.tags.each do |tag|
- repository.tag_names.each do |tag_name|
a href="/tags/#{tag_name}" class="badge bg-secondary text-monospace" = tag_name
- repository.tags.each do |tag|
a href="/tags/#{tag.name}" class="badge bg-secondary text-monospace" = tag.name
.shards__shard_github
ul
li
Expand Down

0 comments on commit 34da5b1

Please sign in to comment.