Improve metadata, README
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Râu Cao 2024-02-02 12:30:31 +02:00
parent 57c8c6a46a
commit f88892a326
Signed by: raucao
GPG Key ID: 37036C356E56CC51
2 changed files with 17 additions and 15 deletions

View File

@ -49,8 +49,6 @@ Or maybe just iOS icons? They're pretty convenient for postprocessing after all.
icon = metadata.select_icon(purpose: "apple-touch-icon", sizes: "180x180") icon = metadata.select_icon(purpose: "apple-touch-icon", sizes: "180x180")
``` ```
_TODO check out the docs for options and behavior._
## Development ## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run After checking out the repo, run `bin/setup` to install dependencies. Then, run
@ -68,12 +66,13 @@ git commits and tags, and push the `.gem` file to
## Contributing ## Contributing
Bug reports and pull requests are welcome on GitHub at Bug reports and pull requests are welcome on the
https://github.com/5apps/manifique. Please add specs for any changes or [Kosmos Gitea](https://gitea.kosmos.org/5apps/manifique) or on
additions. [GitHub](https://github.com/5apps/manifique). Please add specs for any changes
or additions.
## Code of Conduct ## Code of Conduct
Everyone interacting in this projects codebase, issue trackers, and chat Everyone interacting in this projects codebase, issue trackers, and chat
rooms is expected to follow the [code of rooms is expected to follow the [code of
conduct](https://github.com/5apps/manifique/blob/master/CODE_OF_CONDUCT.md). conduct](https://gitea.kosmos.org/5apps/manifique/src/branch/master/CODE_OF_CONDUCT.md).

View File

@ -3,15 +3,18 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "manifique/version" require "manifique/version"
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "manifique" spec.name = "manifique"
spec.version = Manifique::VERSION spec.version = Manifique::VERSION
spec.authors = ["Râu Cao"] spec.licenses = ["MIT"]
spec.email = ["raucao@kosmos.org"] spec.authors = ["Râu Cao"]
spec.email = ["raucao@kosmos.org"]
spec.summary = %q{Fetch metadata and icons of Web applications} spec.summary = "Fetch metadata and icons of Web applications"
spec.description = %q{Fetch metadata and icons of Web applications} spec.description = "Fetch and process metadata and icons of Web applications from Web App Manifest files, with fallbacks to HTML elements/attributes}"
spec.homepage = "https://gitea.kosmos.org/5apps/manifique" spec.homepage = "https://gitea.kosmos.org/5apps/manifique"
spec.license = "MIT" spec.metadata = {
"bug_tracker_uri" => "https://gitea.kosmos.org/5apps/manifique/issues",
"source_code_uri" => "https://gitea.kosmos.org/5apps/manifique"
}
# Specify which files should be added to the gem when it is released. # Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. # The `git ls-files -z` loads the files in the RubyGem that have been added into git.