papermill 1.1.1 → 1.1.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.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/papermill/papermill_paperclip_processor.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -32,7 +32,7 @@ Check your audience.
|
|
32
32
|
=== Server requirements:
|
33
33
|
|
34
34
|
* Makes internal use of JQuery (but loaded in compatibility mode by default, compatible with Prototype/whatever... JRails not needed.)
|
35
|
-
* Rails 2.3 (rail's I18n, engine)
|
35
|
+
* Rails 2.3.4 (rail's I18n, engine. older 2.3.x have issues with CRSF or try to check for CRSF stamp against AJAX request, useless with AJAX same origin policy, fixed with 2.3.4)
|
36
36
|
* Paperclip 2.3 branch (installed by default as a gem dependency, will be loaded internally if needed => You can require your own version of Paperclip)
|
37
37
|
* Front web server serving static assets if present, and forwarding demand to rails if not. (Usually a no-brainer on any classic installation. Works with Webrick)
|
38
38
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.2
|
@@ -42,7 +42,7 @@ module Paperclip
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def transformation_command
|
45
|
-
puts "crop_command= #{crop_command ? super.sub(/ -crop \S+/, crop_command) : super}"
|
45
|
+
#puts "crop_command= #{crop_command ? super.sub(/ -crop \S+/, crop_command) : super}"
|
46
46
|
|
47
47
|
crop_command ? super.sub(/ -crop \S+/, crop_command) : super
|
48
48
|
end
|