ack_favicon_maker_rails 1.0.1.2 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +6 -3
- data/favicon_maker_rails.gemspec +3 -3
- data/lib/favicon_maker_rails/version.rb +1 -1
- metadata +4 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ed3e558db72552d0b8fdf2aac39c1fdcfdfe5a9
|
|
4
|
+
data.tar.gz: 0f87193e27b96cef86df2baee9bf6a7c70ec93ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da6640c583ddf5e80a59fa01513685ba155395e97637b4cdd39fa9a3595296124d4428f605d26c3eb957318475d12c5ebe895d10aa54334b2b3a79537e249c58
|
|
7
|
+
data.tar.gz: e5894843ef913ffbd90db89b624bdb1e0bd0b2b4b821171d08ce5e8f86423a78d0fe859c1d31665e557c4388777e29e8cbfbe77b775412e5bc897d70b288bbff
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# Favicon Maker for Rails
|
|
2
2
|
|
|
3
|
+
Forked. [Original gem](https://github.com/awmichel/favicon_maker_rails)
|
|
4
|
+
|
|
3
5
|
This is a very simple gem that adds a rake task to your Rails project for generating favicons of various sizes and formats from a single source file by making use of the [FaviconMaker](https://github.com/follmann/favicon_maker) library.
|
|
4
6
|
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
Add the following line to your Gemfile:
|
|
8
|
-
|
|
9
|
-
gem '
|
|
10
|
+
```
|
|
11
|
+
gem 'ack_favicon_maker_rails'
|
|
12
|
+
```
|
|
10
13
|
|
|
11
14
|
## Usage
|
|
12
15
|
|
|
@@ -23,4 +26,4 @@ Add the following line to your Gemfile:
|
|
|
23
26
|
|
|
24
27
|
## Copyright
|
|
25
28
|
|
|
26
|
-
Copyright (c)
|
|
29
|
+
Copyright (c) 2017 Alexander Kiseliev. See LICENSE for details.
|
data/favicon_maker_rails.gemspec
CHANGED
|
@@ -5,9 +5,9 @@ require "favicon_maker_rails/version"
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "ack_favicon_maker_rails"
|
|
7
7
|
s.version = FaviconMakerRails::VERSION
|
|
8
|
-
s.authors = ["Alexander Kiseliev"
|
|
9
|
-
s.email = ["dev@
|
|
10
|
-
s.homepage = "
|
|
8
|
+
s.authors = ["Alexander Kiseliev"]
|
|
9
|
+
s.email = ["dev@redrocks.pro"]
|
|
10
|
+
s.homepage = "https://github.com/ack43/favicon_maker_rails"
|
|
11
11
|
s.summary = %q{Simple rake task for generating favicons from a .png source.}
|
|
12
12
|
s.description = %q{Uses the FaviconMaker library for generating favicons in various formats from a single .png source file.}
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ack_favicon_maker_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Kiseliev
|
|
8
|
-
- Adam Michel
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2017-08-
|
|
11
|
+
date: 2017-08-25 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: favicon_maker
|
|
@@ -42,8 +41,7 @@ dependencies:
|
|
|
42
41
|
description: Uses the FaviconMaker library for generating favicons in various formats
|
|
43
42
|
from a single .png source file.
|
|
44
43
|
email:
|
|
45
|
-
- dev@
|
|
46
|
-
- awmichel90@gmail.com
|
|
44
|
+
- dev@redrocks.pro
|
|
47
45
|
executables: []
|
|
48
46
|
extensions: []
|
|
49
47
|
extra_rdoc_files: []
|
|
@@ -62,7 +60,7 @@ files:
|
|
|
62
60
|
- lib/favicon_maker_rails/tasks.rake
|
|
63
61
|
- lib/favicon_maker_rails/version.rb
|
|
64
62
|
- release.sh
|
|
65
|
-
homepage:
|
|
63
|
+
homepage: https://github.com/ack43/favicon_maker_rails
|
|
66
64
|
licenses: []
|
|
67
65
|
metadata: {}
|
|
68
66
|
post_install_message:
|