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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -15
  3. data/lib/imaginizer/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f785f60e2c5ecffeb7a70fb74e10c83f06f4605
4
- data.tar.gz: 0f68a4e28ef3cdfd4b4b4acd57ac812d4252b305
3
+ metadata.gz: 4b57552f3d3613d48fbe96a2d8271158d4c2e938
4
+ data.tar.gz: 8addcc75730714e0c81e484fb1925177d1e311a3
5
5
  SHA512:
6
- metadata.gz: 804f0bdce8fd34c718be7b653e949f2b8f00792690a2a1eb7d1a31d290a3563b35f2f953f86db479ff5698111e1667c4e6678b7743fd37c9e71d4a7c797042c5
7
- data.tar.gz: 20d5fa5ec919fbe91f20f75b8f49eb225d23faebc7f9a4d65dd0b43f0add7284a8773b25301922a234be87464c57382065dccdc5c74fb5b00e083afb57a68db0
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 an image given a size and optional content
5
-
6
- [![Build Status](https://travis-ci.org/topspin/imaginizer.png)](https://travis-ci.org/topspin/imaginizer)
7
- [![Code Climate](https://codeclimate.com/github/topspin/imaginizer.png)](https://codeclimate.com/github/topspin/imaginizer)
8
- [![Coverage Status](https://coveralls.io/repos/topspin/imaginizer/badge.png)](https://coveralls.io/r/topspin/imaginizer)
9
- [![Dependency Status](https://gemnasium.com/topspin/imaginizer.png)](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
- How to use from other programs
21
- ==============================
22
-
23
- How to contribute
24
- =================
25
+ Install with `gem install imaginizer`, then run `imaginizer -h`
@@ -1,3 +1,3 @@
1
1
  module Imaginizer
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
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.1
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: '0'
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: '0'
27
+ version: 3.6.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: bundler
30
30
  requirement: !ruby/object:Gem::Requirement