magick_title 0.1.4 → 0.1.5
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.
- data/README.md +15 -0
- data/lib/magick_title/image.rb +1 -0
- data/lib/magick_title/version.rb +2 -2
- data/test/helper.rb +3 -2
- metadata +2 -2
data/README.md
CHANGED
|
@@ -12,6 +12,20 @@ Requirements
|
|
|
12
12
|
MagickTitle is framework agnostic but requires imagemagick built with freetype.
|
|
13
13
|
|
|
14
14
|
|
|
15
|
+
Installation
|
|
16
|
+
------------
|
|
17
|
+
|
|
18
|
+
As usual, just use the `gem install command
|
|
19
|
+
|
|
20
|
+
(sudo) gem install magick_title
|
|
21
|
+
|
|
22
|
+
Or add magick_title as a gem in your Gemfile
|
|
23
|
+
|
|
24
|
+
gem 'magick_title', '>= 0.1.4'
|
|
25
|
+
|
|
26
|
+
Then run `bundle install`
|
|
27
|
+
|
|
28
|
+
|
|
15
29
|
|
|
16
30
|
Usage
|
|
17
31
|
-----
|
|
@@ -114,6 +128,7 @@ To Do
|
|
|
114
128
|
* Smart option validation (:color => 'fff' converts to :color => '#fff' and :color => 'pink' fails)
|
|
115
129
|
* More documentation
|
|
116
130
|
* Auto ActiveRecord integration (`has_magick_title` class method)
|
|
131
|
+
* Tempfiles and base64
|
|
117
132
|
* Clean up and publish demo app
|
|
118
133
|
|
|
119
134
|
|
data/lib/magick_title/image.rb
CHANGED
data/lib/magick_title/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module MagickTitle
|
|
2
|
-
VERSION = "0.1.
|
|
3
|
-
end
|
|
2
|
+
VERSION = "0.1.5"
|
|
3
|
+
end
|
data/test/helper.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: magick_title
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.5
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Spencer Steffen
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-02-
|
|
13
|
+
date: 2011-02-28 00:00:00 -08:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|