8000 Update index.md with last commit badge and improve readme by xeruf · Pull Request #8 · nostorg/clients · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update index.md with last commit badge and improve readme #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
.jekyll-cache
.jekyll-metadata
.sass-cache
.bundle
_site
vendor
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ Where to make changes:

Serve locally for testing:

```bash
```sh
brew install asdf
asdf plugin add ruby
asdf install # install ruby from .tool-versions
asdf exec bundle install # install from gemfile
asdf exec jekyll serve
```

Or installing the Gems locally with bundle already available:

```sh
bundle config set path 'vendor/bundle'
bundle install
bundle exec jekyll serve
```
5 changes: 4 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ Contribute on github: <{{ site.github.repository 5D76 _url }}>
{% else %}
<td>{{ client.alias }}</td>
{% endif %}
<td><a href="{{ client.repo }}">{{ client.repo | split: "://" | last | split: "/" | first }}</a></td>
<td><a href="{{ client.repo }}">
<img alt="" src="https://img.shields.io/github/last-commit/{{ client.repo | split: '/' | slice: -2, 2 | join: '/' }}/main">
<img alt="" src="https://img.shields.io/github/last-commit/{{ client.repo | split: '/' | slice: -2, 2 | join: '/' }}/master">
</a></td>
<td>{{ client.latest }}</td>
<td>{{ client.purpose }}</td>
<!-- Features -->
Expand Down
0