has_image 0.1.0 → 0.1.1
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/CHANGELOG +4 -0
- data/README +7 -3
- metadata +14 -5
data/CHANGELOG
CHANGED
data/README
CHANGED
|
@@ -72,7 +72,7 @@ It also provides a view helper to make displaying the images extremely simple:
|
|
|
72
72
|
Has image can be installed as a gem, or as a Rails plugin. Gem installation
|
|
73
73
|
is easiest, and recommended:
|
|
74
74
|
|
|
75
|
-
gem install
|
|
75
|
+
gem install has_image
|
|
76
76
|
|
|
77
77
|
and add
|
|
78
78
|
|
|
@@ -94,7 +94,6 @@ Then, make sure the model has a column named "has_image_file."
|
|
|
94
94
|
|
|
95
95
|
git://github.com/norman/has_image.git
|
|
96
96
|
|
|
97
|
-
|
|
98
97
|
== Hacking it
|
|
99
98
|
|
|
100
99
|
Don't like the way it makes images? Want to pipe the images through some
|
|
@@ -120,7 +119,7 @@ storage and processing functionality is largely independent of your model, and
|
|
|
120
119
|
of Rails.
|
|
121
120
|
|
|
122
121
|
My goal for HasImage[http://github.com/norman/has_image] is to keep it very
|
|
123
|
-
small. If you need
|
|
122
|
+
small. If you need *a lot* of functionality that's not here, instead of patching
|
|
124
123
|
this code, you will likely be better off using
|
|
125
124
|
attachment_fu[http://github.com/technoweenie/attachment_fu], which is much
|
|
126
125
|
more powerful, but also more complex.
|
|
@@ -133,7 +132,12 @@ At the time of writing (July 2008),
|
|
|
133
132
|
HasImage[http://github.com/norman/has_image] is in its infancy. Your patches,
|
|
134
133
|
bug reports and withering criticism are more than welcome.
|
|
135
134
|
|
|
135
|
+
== Links
|
|
136
136
|
|
|
137
|
+
* {HasImage RDocs}[http://randomba.org/projects/has_image] (regenerated nightly)
|
|
138
|
+
* {HasImage on GitHub}[http://github.com/norman/has_image]
|
|
139
|
+
* {HasImage on Rubyforge}[http://rubyforge.org/projects/has-image/]
|
|
140
|
+
* {HasImage on Lighthouse}[http://randomba.lighthouseapp.com/projects/14674-has_image]
|
|
137
141
|
|
|
138
142
|
Copyright (c) 2008 {Norman Clarke}[mailto:norman@randomba.org], released under
|
|
139
143
|
the MIT license
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: has_image
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Norman Clarke
|
|
@@ -9,10 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-07-
|
|
12
|
+
date: 2008-07-28 00:00:00 -03:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: mini_magick
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 1.2.3
|
|
24
|
+
version:
|
|
16
25
|
description: HasImage is a Ruby on Rails gem/plugin that allows you to attach images to ActiveRecord models.
|
|
17
26
|
email: norman@randomba.org
|
|
18
27
|
executables: []
|
|
@@ -58,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
58
67
|
version:
|
|
59
68
|
requirements: []
|
|
60
69
|
|
|
61
|
-
rubyforge_project:
|
|
70
|
+
rubyforge_project: has-image
|
|
62
71
|
rubygems_version: 1.2.0
|
|
63
72
|
signing_key:
|
|
64
73
|
specification_version: 2
|