An open API service indexing awesome lists of open source software.

https://github.com/bitbrain/gemspec-fetch

💎 Github Action that fetches metadata from any .gemspec file
https://github.com/bitbrain/gemspec-fetch

Last synced: 12 months ago
JSON representation

💎 Github Action that fetches metadata from any .gemspec file

Awesome Lists containing this project

README

          

# 💎 Gemspec Fetch

Github Action that fetches metadata from any .gemspec file

## Usage

```yml
- name: 💎 Extract gemspec info
id: gemspec_fetch
uses: bitbrain/gemspec-fetch@1.0
with:
specfile: rubygem.gemspec
```
and then access the following outputs:
```
${{ steps.gemspec_fetch.outputs.name }}
${{ steps.gemspec_fetch.outputs.version }}
${{ steps.gemspec_fetch.outputs.description }}
${{ steps.gemspec_fetch.outputs.homepage }}
${{ steps.gemspec_fetch.outputs.summary }}
```