middleman-favicon-maker 3.1.1 → 3.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +9 -18
- data/lib/middleman-favicon-maker/version.rb +1 -1
- data/middleman-favicon-maker.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzA2MzM4MTI0NDhmNWIwMzg5Y2NjYWZiNjQ5OGRjNGJmM2RhN2FjYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTJiMzI1ZTcwNTE3ODExZjAzOTFjODU3NmIyOTI0YmUzYmM0YjBlNQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YWUyMGMxM2YwN2JiMGRhYTIyOTFmZWJiOGM2YmE0YjBmYTVjNWE4ODg3Zjli
|
10
|
+
Yjk3MjFhMDU3OWUwNWZkNGQyOGQwMWI3ZmYwMDc4NTUzMWQxY2ZhYThhNzc1
|
11
|
+
ZTcxMDJjNDhkYzFmZWIwMzZjY2JiMjRlYjIzZGMyYmI5NmU2NDQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OWIxOWZlMWE5ZmM2MzVjODc1MDM2ODY4OGQ3MGFhNTY1YmE0ZTE1OGZlMDFi
|
14
|
+
YzU0MTM3ZTJhNWRiYmRkZTNhOWRiOGMwOGY0NGZmMDBkZDE4MzI0ZDE3NTM0
|
15
|
+
ZTIxOTk3NThjMjc1NzQ4ZTIyOGEyMzBiZmVhNjE2NWE5NjcwODg=
|
data/README.md
CHANGED
@@ -4,25 +4,20 @@ Generate favicon files in various sizes from a base image in your [Middleman](ht
|
|
4
4
|
|
5
5
|
This gem integrates [FaviconMaker](https://github.com/follmann/favicon_maker) effortless into your [Middleman](https://github.com/middleman/middleman) project.
|
6
6
|
|
7
|
-
|
8
|
-
## IMPORTANT:
|
9
|
-
|
10
|
-
**Updated to support Middleman version 3.0.0 and above.**
|
11
|
-
|
12
|
-
Due to Middleman code changes **this version is NOT compatible with version 2.x installs of Middleman**.
|
13
|
-
|
14
|
-
Use version **0.0.6** of the `middleman-favicon-maker` gem for version 2.x installs of Middleman.
|
15
|
-
|
16
|
-
|
17
|
-
|
18
7
|
## Install
|
19
8
|
|
20
9
|
### Standalone
|
21
10
|
gem install middleman-favicon-maker
|
22
11
|
|
12
|
+
> Note: Use version **0.0.6** of the `middleman-favicon-maker` gem for version 2.x installs of Middleman.
|
13
|
+
|
23
14
|
### Using Bundler (recommended)
|
24
15
|
gem "middleman-favicon-maker"
|
25
16
|
|
17
|
+
#### Don't forget ImageMagick
|
18
|
+
> ImageMagick is a dependecy of a dependecy of favicon_maker and therefore of this Gem as well. People tripped over this before, so be sure to have it installed.
|
19
|
+
> e.g. on OSX a simple ```$ brew install imagemagick``` does it.
|
20
|
+
|
26
21
|
## How to integrate into a middleman project
|
27
22
|
1. Put a file called **favicon_base.png** into your source folder (ideally with the **dimensions of 114x114 pixels**)
|
28
23
|
<br><br>
|
@@ -44,15 +39,11 @@ That results in the following files being created in your middleman build direct
|
|
44
39
|
build/favicon.ico
|
45
40
|
build/favicon.png
|
46
41
|
|
47
|
-
|
42
|
+
> Note: The base image will not be copied to the build folder.
|
48
43
|
|
49
44
|
## Customise integration
|
50
45
|
|
51
|
-
|
52
|
-
**NOTE! v3.x of this gem uses a `favicon_maker_` prefix on the configuration options, whereas v.0.0.6 uses a `favicon_` prefix only.**
|
53
|
-
|
54
|
-
**Why the change? Consistency with the official activation keyword `:favicon_maker`.**
|
55
|
-
|
46
|
+
> Note: version **3.x** of this gem uses the `favicon_maker_` prefix for configuration options to be consistent with the activation keyword `:favicon_maker`. Until version **0.0.6** the `favicon_` prefix has been used.
|
56
47
|
|
57
48
|
You can set the following options for `middleman-favicon-maker`:
|
58
49
|
|
@@ -69,4 +60,4 @@ You can set the following options for `middleman-favicon-maker`:
|
|
69
60
|
|
70
61
|
## Copyright
|
71
62
|
|
72
|
-
© 2011 Andreas Follmann. See LICENSE for details.
|
63
|
+
© 2011-2013 Andreas Follmann. See LICENSE for details.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-favicon-maker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andreas Follmann
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: middleman-core
|
@@ -31,14 +31,14 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - ~>
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version:
|
34
|
+
version: 0.1.1
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - ~>
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
41
|
+
version: 0.1.1
|
42
42
|
description: Generate favicon files in various sizes from a base image in your Middleman
|
43
43
|
project
|
44
44
|
email:
|