imaginizer 0.0.1 → 0.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/README.md +16 -15
- data/lib/imaginizer/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b57552f3d3613d48fbe96a2d8271158d4c2e938
|
4
|
+
data.tar.gz: 8addcc75730714e0c81e484fb1925177d1e311a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02d32e79e10a528aef27923c23bed3dfcb034a5faff8f0828e3241e6eb6a2bbed90bbe328b1ae1e000b7e44f2050c59a6373d8c9f21585d9f5cbb78e041bff9b
|
7
|
+
data.tar.gz: 92340345dffea0b3bbaabba3dc067361954a1a731ee60d010949bf5acba3a3847002c58676584c408e1b4b69bbbd8afff4a4d011bbc899e812fa8e49e4d13ce5
|
data/README.md
CHANGED
@@ -1,24 +1,25 @@
|
|
1
1
|
What is Imaginizer
|
2
|
-
|
2
|
+
==================
|
3
3
|
|
4
|
-
Create
|
5
|
-
|
6
|
-
[](https://travis-ci.org/topspin/imaginizer)
|
7
|
-
[](https://codeclimate.com/github/topspin/imaginizer)
|
8
|
-
[](https://coveralls.io/r/topspin/imaginizer)
|
9
|
-
[](https://gemnasium.com/topspin/imaginizer)
|
10
|
-
|
11
|
-
Why Imaginizer was born
|
12
|
-
=====================
|
4
|
+
Create a set of images given sizes and optional content: title, subtitle, footer,
|
5
|
+
background image and foreground image.
|
13
6
|
|
14
7
|
Requirements
|
15
8
|
============
|
16
9
|
|
10
|
+
You need [Imagemagick](http://www.imagemagick.org) with [Freetype](http://freetype.org) support to run Imaginizer.
|
11
|
+
|
12
|
+
To check if you have it installed, run this command:
|
13
|
+
|
14
|
+
check=`cosnvert -list CONFIGURE 2> /dev/null|grep DELEGATES|grep freetype|wc -l`; if [ $check -eq 1 ]; then echo "Imagemagick/Freetype IS installed"; else echo "Imagemagick/Freetype IS NOT installed"; fi
|
15
|
+
|
16
|
+
To install:
|
17
|
+
|
18
|
+
* with homebrew (OS X), run `brew install imagemagick --with-freetype`
|
19
|
+
|
20
|
+
* with aptitude (Linux), run `apt-get freetype imagemagick`
|
21
|
+
|
17
22
|
How to use from the command line
|
18
23
|
================================
|
19
24
|
|
20
|
-
|
21
|
-
==============================
|
22
|
-
|
23
|
-
How to contribute
|
24
|
-
=================
|
25
|
+
Install with `gem install imaginizer`, then run `imaginizer -h`
|
data/lib/imaginizer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imaginizer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Claudio Baccigalupo
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '>='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 3.6.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '>='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: 3.6.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: bundler
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|