Sha256: edbdd896af02818fd4f18f90dc0681b65fe512ac0aa59eaf4a158ac332a3e288

Contents?: true

Size: 676 Bytes

Versions: 3

Compression:

Stored size: 676 Bytes

Contents

# Rack::Manifest

This is a Rack middleware for managing your HTML5 manifest file (used for Service Worker, WebApp Icon, etc.) by yaml.
It can be easily implemented into your Rails application.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'rack-manifest'
```

## Usage

### Rails
Set your manifest.yml file like this one into your `config` directory.

```yaml
name: "Rack Manifest"
short_name: "Manifest"
icons: 
   src: "images/icon.png"
   sizes: "512x512"
   type: "image/png"
start_url: "/"
display: "standalone"
```

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rack-manifest-0.1.2 README.md
rack-manifest-0.1.1 README.md
rack-manifest-0.1.0 README.md