rails_imager 0.0.23 → 0.0.24
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 +112 -0
- data/app/controllers/rails_imager/images_controller.rb +4 -4
- data/lib/rails_imager/version.rb +1 -1
- data/spec/controllers/rails_imager/images_controller_spec.rb +44 -38
- data/spec/dummy/config/environments/production.rb +0 -3
- data/spec/dummy/config/environments/test.rb +0 -1
- data/spec/dummy/log/test.log +970 -0
- data/spec/spec_helper.rb +5 -3
- metadata +40 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7d326a5fafa2a406ad9bb8499a0a29edadc7a9e
|
4
|
+
data.tar.gz: d4a0791ce87a8e773b72b4467fcfb0f31e0ee6ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f930691ad8794fa52ec71ecd855d306bc56042637798f2232db88cd22622cce739deaa269e3a549f18a780ebfbad10cf60c6b944f1013e5bfae928c590cdce2c
|
7
|
+
data.tar.gz: 1b4c679417c99927b47be566ead66a6a607cb9b0209348cfc7f8032c32374e9afedc8b22aa34c6d7023ff0b531cbe30a3ed25824653ada18116bc5dac7611e07
|
data/README.md
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
[](https://codeclimate.com/github/kaspernj/rails_imager)
|
2
|
+
[](https://codeclimate.com/github/kaspernj/rails_imager)
|
3
|
+
[](https://app.shippable.com/projects/540e7b9d3479c5ea8f9ec23e/builds/latest)
|
4
|
+
|
5
|
+
# RailsImager
|
6
|
+
|
7
|
+
Generate images on the fly with caching by giving simple parameters to URL's.
|
8
|
+
|
9
|
+
## Install
|
10
|
+
|
11
|
+
First add RailsImager to your gemfile and bundle it:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'rails_imager'
|
15
|
+
```
|
16
|
+
|
17
|
+
The mount RailsImager in your "routes.rb":
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
YourApp::Application.routes.draw do
|
21
|
+
...
|
22
|
+
mount RailsImager::Engine => "/rails_imager"
|
23
|
+
...
|
24
|
+
end
|
25
|
+
```
|
26
|
+
|
27
|
+
Add this to the `ApplicationHelper` in order to gain access to the `rails_imager_p`-helper method for generating URL's easy.
|
28
|
+
```ruby
|
29
|
+
module ApplicationHelper
|
30
|
+
include RailsImager::ImagesHelper
|
31
|
+
end
|
32
|
+
```
|
33
|
+
|
34
|
+
## Capistrano
|
35
|
+
|
36
|
+
If you use Capistrano to deploy, you probably symlink the "public/system" directory, in order to share uploaded images between releases. This screws with RailsImager's security only to serve images from the "public"-folder.
|
37
|
+
|
38
|
+
You can solve this by adding the following initializer in "config/initializers/rails_imager.rb":
|
39
|
+
```ruby
|
40
|
+
# Add public/system to path, because it is symlinked through Capistrano on deployed servers.
|
41
|
+
RailsImager.config.allowed_paths << File.realpath("#{Rails.public_path.to_s}/system")
|
42
|
+
```
|
43
|
+
|
44
|
+
## Usage
|
45
|
+
|
46
|
+
Now you can use RailsImager to convert any image located in the public-folder like so:
|
47
|
+
|
48
|
+
### rails_imager_p helper method
|
49
|
+
|
50
|
+
Usage with a static image in the public folder:
|
51
|
+
```erb
|
52
|
+
<%= image_tag rails_imager_p("/picture.jpg", :smartsize => 200, :rounded_corners => 10, :border => 1, :border_color => "black") %>
|
53
|
+
```
|
54
|
+
|
55
|
+
Usage with a Paperclip attachment on a model:
|
56
|
+
```erb
|
57
|
+
<%= image_tag rails_imager_p(user.picture, :smartsize => 200) %>
|
58
|
+
```
|
59
|
+
|
60
|
+
### Rounded corners
|
61
|
+
|
62
|
+
Makes the corners of an image round.
|
63
|
+
```
|
64
|
+
http://localhost:3000/rails_imager/images/filename.png?rounded_corners=5
|
65
|
+
```
|
66
|
+
|
67
|
+
### Smart image sizing
|
68
|
+
|
69
|
+
Resize the longest side of an image to have a given size:
|
70
|
+
```
|
71
|
+
http://localhost:3000/rails_imager/images/filename.png?smartsize=200
|
72
|
+
```
|
73
|
+
|
74
|
+
### Normal sizing
|
75
|
+
|
76
|
+
Resize the given size but keep the aspect of the image:
|
77
|
+
```
|
78
|
+
http://localhost:3000/rails_imager/images/filename.png?width=200
|
79
|
+
```
|
80
|
+
```
|
81
|
+
http://localhost:3000/rails_imager/images/filename.png?height=200
|
82
|
+
```
|
83
|
+
|
84
|
+
### Max sizing
|
85
|
+
|
86
|
+
Sets the maximum size of an image but keeps the aspect:
|
87
|
+
```
|
88
|
+
http://localhost:3000/rails_imager/images/filename.png?maxwidth=200
|
89
|
+
```
|
90
|
+
```
|
91
|
+
http://localhost:3000/rails_imager/images/filename.png?maxheight=200
|
92
|
+
```
|
93
|
+
|
94
|
+
### Border
|
95
|
+
|
96
|
+
Give the image a border of a certain size and/or with a certain color.
|
97
|
+
```
|
98
|
+
http://localhost:3000/rails_imager/images/filename.png?border=2&border_color=black
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
## Caching
|
103
|
+
|
104
|
+
RailsImager performs various forms of caching, to avoid having to do too much work in regards to the actual resizing.
|
105
|
+
|
106
|
+
It caches the results as temp-files, so it never has to render the same image with the same parameters again.
|
107
|
+
|
108
|
+
It sends out the appropriate headers to the client, so the client doesn't read the same image again and again.
|
109
|
+
|
110
|
+
|
111
|
+
## License
|
112
|
+
This project uses MIT-LICENSE.
|
@@ -16,7 +16,7 @@ class RailsImager::ImagesController < ApplicationController
|
|
16
16
|
set_headers
|
17
17
|
|
18
18
|
if not_modified? && !force?
|
19
|
-
render nothing: true, status:
|
19
|
+
render nothing: true, status: :not_modified
|
20
20
|
else
|
21
21
|
send_file @cache_path, type: "image/png", disposition: "inline", filename: "picture.png"
|
22
22
|
end
|
@@ -97,20 +97,20 @@ private
|
|
97
97
|
@cache_name << "_#{val}-#{@image_params[val]}"
|
98
98
|
end
|
99
99
|
|
100
|
-
@cache_path = "#{cache_directory}/#{@cache_name}"
|
100
|
+
@cache_path = "#{cache_directory}/#{Digest::MD5.hexdigest(@cache_name)}.png"
|
101
101
|
end
|
102
102
|
|
103
103
|
def cache_directory
|
104
104
|
require "tmpdir"
|
105
105
|
cache_path = "#{Dir.tmpdir}/rails-imager-cache"
|
106
|
-
Dir.mkdir(cache_path) unless Dir.
|
106
|
+
Dir.mkdir(cache_path) unless Dir.exist?(cache_path)
|
107
107
|
return cache_path
|
108
108
|
end
|
109
109
|
|
110
110
|
def should_generate_cache?
|
111
111
|
return true if force?
|
112
112
|
|
113
|
-
if File.exists?(@cache_path)
|
113
|
+
if File.exists?(@cache_path) && File.size(@cache_path) > 0
|
114
114
|
if File.mtime(@cache_path) < File.mtime(@full_path)
|
115
115
|
return true
|
116
116
|
else
|
data/lib/rails_imager/version.rb
CHANGED
@@ -5,13 +5,15 @@ require 'RMagick'
|
|
5
5
|
|
6
6
|
describe RailsImager::ImagesController do
|
7
7
|
before do
|
8
|
+
@routes = RailsImager::Engine.routes
|
9
|
+
|
8
10
|
RailsImager.config do |config|
|
9
11
|
config.allowed_paths << File.realpath("#{File.dirname(__FILE__)}/../../dummy/public")
|
10
12
|
end
|
11
13
|
end
|
12
14
|
|
13
15
|
it "smartsize" do
|
14
|
-
get :show,
|
16
|
+
get :show, id: "test.png", image: {smartsize: 200}
|
15
17
|
assert_response :success
|
16
18
|
assert "image/png", response.content_type
|
17
19
|
img = ::Magick::Image.from_blob(response.body).first
|
@@ -20,7 +22,7 @@ describe RailsImager::ImagesController do
|
|
20
22
|
end
|
21
23
|
|
22
24
|
it "cache via expires" do
|
23
|
-
get :show,
|
25
|
+
get :show, id: "test.png", image: {smartsize: 200, rounded_corners: 8}
|
24
26
|
image_path = "#{Rails.public_path}/test.png"
|
25
27
|
response.headers["Expires"].should_not eq nil
|
26
28
|
assert_equal response.headers["Last-Modified"], File.mtime(image_path).httpdate
|
@@ -28,19 +30,19 @@ describe RailsImager::ImagesController do
|
|
28
30
|
|
29
31
|
it "should not accept invalid parameters" do
|
30
32
|
expect {
|
31
|
-
get :show,
|
33
|
+
get :show, id: "test.png", image: {invalid_param: "kasper"}
|
32
34
|
}.to raise_error(ArgumentError)
|
33
35
|
end
|
34
36
|
|
35
37
|
it "should do exact sizes" do
|
36
|
-
get :show,
|
38
|
+
get :show, id: "test.png", image: {width: "640", height: "480"}
|
37
39
|
img = ::Magick::Image.from_blob(response.body).first
|
38
40
|
img.columns.should eq 640
|
39
41
|
img.rows.should eq 480
|
40
42
|
end
|
41
43
|
|
42
44
|
it "should work correctly with special characters" do
|
43
|
-
get :show,
|
45
|
+
get :show, id: "test_æ_%C3%B8_å.png", image: {width: 640, height: 480}
|
44
46
|
response.should be_success
|
45
47
|
img = ::Magick::Image.from_blob(response.body).first
|
46
48
|
img.columns.should eq 640
|
@@ -48,7 +50,7 @@ describe RailsImager::ImagesController do
|
|
48
50
|
end
|
49
51
|
|
50
52
|
it "should do rounded corners" do
|
51
|
-
get :show,
|
53
|
+
get :show, id: "test.png", image: {smartsize: "640", rounded_corners: "15", border: "1", border_color: "black"}
|
52
54
|
|
53
55
|
old_file_path = File.realpath("#{File.dirname(__FILE__)}/../../test.png")
|
54
56
|
old_img = Magick::Image.read(old_file_path).first
|
@@ -58,72 +60,76 @@ describe RailsImager::ImagesController do
|
|
58
60
|
img.rows.should eq 629
|
59
61
|
|
60
62
|
#Test that corner pixels are transparent.
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
#Test that middle pixels are not transparent.
|
77
|
-
100.upto(200) do |time|
|
78
|
-
pixel = img.pixel_color(time, time)
|
63
|
+
unless RUBY_ENGINE == "jruby"
|
64
|
+
4.times do |time|
|
65
|
+
pixel = img.pixel_color(time, time)
|
66
|
+
pixel.opacity.should eq 65535
|
67
|
+
|
68
|
+
pixel_orig = old_img.pixel_color(time, time)
|
69
|
+
pixel_orig.opacity.should eq 0
|
70
|
+
end
|
71
|
+
|
72
|
+
#Test that it got a black border.
|
73
|
+
pixel = img.pixel_color(2, 5)
|
74
|
+
pixel.red.should eq 0
|
75
|
+
pixel.green.should eq 0
|
76
|
+
pixel.blue.should eq 0
|
79
77
|
pixel.opacity.should eq 0
|
80
78
|
|
81
|
-
|
82
|
-
|
79
|
+
#Test that middle pixels are not transparent.
|
80
|
+
100.upto(200) do |time|
|
81
|
+
pixel = img.pixel_color(time, time)
|
82
|
+
pixel.opacity.should eq 0
|
83
|
+
|
84
|
+
pixel_orig = old_img.pixel_color(time, time)
|
85
|
+
pixel_orig.opacity.should eq 0
|
86
|
+
end
|
83
87
|
end
|
84
88
|
end
|
85
89
|
|
86
90
|
it "should do max width" do
|
87
|
-
get :show,
|
91
|
+
get :show, id: "test.png", image: {maxwidth: 200}
|
88
92
|
img = ::Magick::Image.from_blob(response.body).first
|
89
93
|
img.columns.should eq 200
|
90
94
|
img.rows.should eq 196
|
91
95
|
end
|
92
96
|
|
93
97
|
it "should do max height" do
|
94
|
-
get :show,
|
98
|
+
get :show, id: "test.png", image: {maxheight: 200}
|
95
99
|
img = ::Magick::Image.from_blob(response.body).first
|
96
100
|
img.rows.should eq 200
|
97
101
|
img.columns.should eq 203
|
98
102
|
end
|
99
103
|
|
100
104
|
it "should be able to generate valid cache names" do
|
101
|
-
get :show,
|
105
|
+
get :show, id: "test.png", image: {smartsize: 400}
|
102
106
|
assigns(:cache_name).should include "test.png__ARGS__width-_height-_smartsize-400_maxwidth-_maxheight-_rounded_corners-_border-_border_color-"
|
103
107
|
end
|
104
108
|
|
105
109
|
it "should be able to generate cache" do
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
110
|
+
unless RUBY_ENGINE == "jruby"
|
111
|
+
get :show, id: "test.png", image: {smartsize: 400, force: true}
|
112
|
+
assigns(:image).should_not eq nil
|
113
|
+
controller.instance_variable_set(:@image, nil)
|
114
|
+
get :show, id: "test.png", image: {smartsize: 400}
|
115
|
+
response.code.should eq "200"
|
116
|
+
assigns(:image).should eq nil
|
117
|
+
end
|
112
118
|
end
|
113
119
|
|
114
120
|
it "should send not modified" do
|
115
121
|
old_file_path = File.realpath("#{File.dirname(__FILE__)}/../../test.png")
|
116
122
|
|
117
|
-
get :show,
|
123
|
+
get :show, id: "test.png", image: {smartsize: 350}
|
118
124
|
request.headers["If-Modified-Since"] = File.mtime(old_file_path)
|
119
|
-
get :show,
|
125
|
+
get :show, id: "test.png", image: {smartsize: 350}
|
120
126
|
|
121
127
|
response.code.should eq "304"
|
122
128
|
end
|
123
129
|
|
124
130
|
it "should not allow paths that havent specifically been allowed" do
|
125
131
|
expect {
|
126
|
-
get :show,
|
132
|
+
get :show, id: "/../config.ru", image: {smartsize: 200}
|
127
133
|
}.to raise_error(ArgumentError)
|
128
134
|
end
|
129
135
|
end
|
@@ -19,9 +19,6 @@ Dummy::Application.configure do
|
|
19
19
|
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
20
|
# config.action_dispatch.rack_cache = true
|
21
21
|
|
22
|
-
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
-
config.serve_static_assets = false
|
24
|
-
|
25
22
|
# Compress JavaScripts and CSS.
|
26
23
|
config.assets.js_compressor = :uglifier
|
27
24
|
# config.assets.css_compressor = :sass
|
@@ -13,7 +13,6 @@ Dummy::Application.configure do
|
|
13
13
|
config.eager_load = false
|
14
14
|
|
15
15
|
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
-
config.serve_static_assets = true
|
17
16
|
config.static_cache_control = "public, max-age=3600"
|
18
17
|
|
19
18
|
# Show full error reports and disable caching.
|
data/spec/dummy/log/test.log
CHANGED
@@ -10151,3 +10151,973 @@ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
|
10151
10151
|
[1m[35m (0.0ms)[0m rollback transaction
|
10152
10152
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10153
10153
|
[1m[35m (0.0ms)[0m rollback transaction
|
10154
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10155
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10156
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10157
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-_maxheight-200_rounded_corners-_border-_border_color- (1.0ms)
|
10158
|
+
Completed 200 OK in 126ms (ActiveRecord: 0.0ms)
|
10159
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10160
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10161
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-400_maxwidth-_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10162
|
+
Completed 200 OK in 21ms (ActiveRecord: 0.0ms)
|
10163
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10164
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10165
|
+
Completed 500 Internal Server Error in 2ms
|
10166
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10167
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10168
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-200_maxwidth-_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10169
|
+
Completed 200 OK in 19ms (ActiveRecord: 0.0ms)
|
10170
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10171
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10172
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test______.png__ARGS__width-640_height-480_smartsize-_maxwidth-_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10173
|
+
Completed 200 OK in 23ms (ActiveRecord: 0.0ms)
|
10174
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10175
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10176
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10177
|
+
Completed 200 OK in 18ms (ActiveRecord: 0.0ms)
|
10178
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10179
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10180
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-350_maxwidth-_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10181
|
+
Completed 200 OK in 19ms (ActiveRecord: 0.0ms)
|
10182
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10183
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10184
|
+
Completed 304 Not Modified in 14ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
10185
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10186
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10187
|
+
Completed 500 Internal Server Error in 20ms
|
10188
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10189
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10190
|
+
Completed 500 Internal Server Error in 2ms
|
10191
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10192
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10193
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-400_maxwidth-_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10194
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10195
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10196
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10197
|
+
Completed 500 Internal Server Error in 55ms
|
10198
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10199
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10200
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-640_height-480_smartsize-_maxwidth-_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10201
|
+
Completed 200 OK in 53ms (ActiveRecord: 0.0ms)
|
10202
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10203
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10204
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10205
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10206
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
10207
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10208
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10209
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10210
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10211
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
10212
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10213
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10214
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10215
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10216
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
10217
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10218
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10219
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10220
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10221
|
+
Completed 200 OK in 99ms (ActiveRecord: 0.0ms)
|
10222
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10223
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10224
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10225
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10226
|
+
Completed 200 OK in 97ms (ActiveRecord: 0.0ms)
|
10227
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10228
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10229
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10230
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10231
|
+
Completed 200 OK in 101ms (ActiveRecord: 0.0ms)
|
10232
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10233
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10234
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10235
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10236
|
+
Completed 200 OK in 91ms (ActiveRecord: 0.0ms)
|
10237
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10238
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10239
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10240
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (0.0ms)
|
10241
|
+
Completed 200 OK in 103ms (ActiveRecord: 0.0ms)
|
10242
|
+
[1m[36m (2.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10243
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10244
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10245
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10246
|
+
Completed 200 OK in 96ms (ActiveRecord: 0.0ms)
|
10247
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10248
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10249
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10250
|
+
Sent file /tmp/rails-imager-cache/_media_storage_Dev_Rails_rails_imager_spec_dummy_public_test.png__ARGS__width-_height-_smartsize-_maxwidth-200_maxheight-_rounded_corners-_border-_border_color- (1.0ms)
|
10251
|
+
Completed 200 OK in 99ms (ActiveRecord: 0.0ms)
|
10252
|
+
[1m[36m (5.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10253
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10254
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10255
|
+
Completed 500 Internal Server Error in 133ms
|
10256
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10257
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10258
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10259
|
+
Completed 500 Internal Server Error in 93ms
|
10260
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10261
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10262
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10263
|
+
Completed 500 Internal Server Error in 132ms
|
10264
|
+
[1m[36m (4.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10265
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10266
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10267
|
+
Completed 500 Internal Server Error in 91ms
|
10268
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10269
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10270
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10271
|
+
Completed 500 Internal Server Error in 87ms
|
10272
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10273
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10274
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10275
|
+
Completed 500 Internal Server Error in 94ms
|
10276
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10277
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10278
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10279
|
+
Completed 500 Internal Server Error in 94ms
|
10280
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10281
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10282
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10283
|
+
Completed 500 Internal Server Error in 216810ms
|
10284
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10285
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10286
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10287
|
+
Completed 500 Internal Server Error in 24235ms
|
10288
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10289
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10290
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10291
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10292
|
+
Completed 200 OK in 589405ms (ActiveRecord: 0.0ms)
|
10293
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10294
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10295
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10296
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (1.0ms)
|
10297
|
+
Completed 200 OK in 116ms (ActiveRecord: 0.0ms)
|
10298
|
+
[1m[36m (5.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10299
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10300
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200", "force"=>"true"}}
|
10301
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (1.0ms)
|
10302
|
+
Completed 200 OK in 117ms (ActiveRecord: 0.0ms)
|
10303
|
+
[1m[36m (5.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10304
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10305
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10306
|
+
Completed 500 Internal Server Error in 127ms
|
10307
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10308
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10309
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (1.0ms)
|
10310
|
+
Completed 200 OK in 160ms (ActiveRecord: 0.0ms)
|
10311
|
+
[1m[36m (5.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10312
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10313
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10314
|
+
Completed 500 Internal Server Error in 89ms
|
10315
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10316
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10317
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (1.0ms)
|
10318
|
+
Completed 200 OK in 139ms (ActiveRecord: 0.0ms)
|
10319
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10320
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10321
|
+
Completed 500 Internal Server Error in 73ms
|
10322
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10323
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10324
|
+
Completed 500 Internal Server Error in 2ms
|
10325
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10326
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10327
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10328
|
+
Completed 200 OK in 32ms (ActiveRecord: 0.0ms)
|
10329
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10330
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10331
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10332
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10333
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10334
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10335
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10336
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10337
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10338
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10339
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10340
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.0ms)
|
10341
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10342
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10343
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10344
|
+
Completed 200 OK in 121ms (ActiveRecord: 0.0ms)
|
10345
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10346
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10347
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10348
|
+
Completed 200 OK in 31ms (ActiveRecord: 0.0ms)
|
10349
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10350
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10351
|
+
Completed 500 Internal Server Error in 2ms
|
10352
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10353
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10354
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10355
|
+
Completed 500 Internal Server Error in 104ms
|
10356
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10357
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10358
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (2.0ms)
|
10359
|
+
Completed 200 OK in 8ms (ActiveRecord: 0.0ms)
|
10360
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10361
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10362
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10363
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10364
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10365
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10366
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10367
|
+
Completed 200 OK in 95ms (ActiveRecord: 0.0ms)
|
10368
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10369
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10370
|
+
Completed 304 Not Modified in 22ms (Views: 13.7ms | ActiveRecord: 0.0ms)
|
10371
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10372
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10373
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (1.0ms)
|
10374
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10375
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10376
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10377
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10378
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10379
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10380
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10381
|
+
Completed 500 Internal Server Error in 57ms
|
10382
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10383
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10384
|
+
Completed 500 Internal Server Error in 2ms
|
10385
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10386
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10387
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10388
|
+
Completed 200 OK in 78ms (ActiveRecord: 0.0ms)
|
10389
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10390
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10391
|
+
Completed 500 Internal Server Error in 1ms
|
10392
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10393
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10394
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10395
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10396
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10397
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10398
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10399
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10400
|
+
[1m[36m (4.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10401
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10402
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10403
|
+
Completed 500 Internal Server Error in 101ms
|
10404
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10405
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10406
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10407
|
+
Completed 500 Internal Server Error in 114ms
|
10408
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10409
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10410
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10411
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (1.0ms)
|
10412
|
+
Completed 200 OK in 128ms (ActiveRecord: 0.0ms)
|
10413
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10414
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10415
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10416
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10417
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
10418
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10419
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10420
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10421
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (1.0ms)
|
10422
|
+
Completed 200 OK in 17ms (ActiveRecord: 0.0ms)
|
10423
|
+
[1m[36m (5.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10424
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10425
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10426
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (1.0ms)
|
10427
|
+
Completed 200 OK in 208ms (ActiveRecord: 0.0ms)
|
10428
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10429
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10430
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10431
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10432
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10433
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10434
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10435
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10436
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10437
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10438
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10439
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10440
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10441
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10442
|
+
Completed 500 Internal Server Error in 2ms
|
10443
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10444
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10445
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10446
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10447
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10448
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10449
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10450
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10451
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10452
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10453
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10454
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10455
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10456
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10457
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (1.0ms)
|
10458
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10459
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10460
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10461
|
+
Completed 500 Internal Server Error in 57ms
|
10462
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10463
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10464
|
+
Completed 500 Internal Server Error in 1ms
|
10465
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10466
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10467
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10468
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10469
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10470
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10471
|
+
Completed 304 Not Modified in 13ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
10472
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10473
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10474
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10475
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10476
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10477
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.1ms)
|
10478
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10479
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10480
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10481
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10482
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10483
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10484
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10485
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10486
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10487
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10488
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10489
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10490
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
10491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10492
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10493
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10494
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10495
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10496
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10497
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10498
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10499
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10500
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10501
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.1ms)
|
10502
|
+
Completed 200 OK in 216ms (ActiveRecord: 0.0ms)
|
10503
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10504
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10505
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10506
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10507
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.1ms)
|
10508
|
+
Completed 200 OK in 78ms (ActiveRecord: 0.0ms)
|
10509
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10510
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10511
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10512
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10513
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10514
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10515
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10516
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10517
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10518
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10519
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10520
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10521
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10522
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10523
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10524
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10525
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10527
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10528
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10529
|
+
Completed 500 Internal Server Error in 0ms
|
10530
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10531
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10532
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10533
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10534
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10535
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10536
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10537
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10538
|
+
Completed 304 Not Modified in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
10539
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10540
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10541
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10542
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10543
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.1ms)
|
10544
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10545
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10546
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10547
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10548
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10549
|
+
Completed 500 Internal Server Error in 0ms
|
10550
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10551
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10552
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10553
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10554
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10555
|
+
Completed 200 OK in 15ms (ActiveRecord: 0.0ms)
|
10556
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10557
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10558
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10559
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (1.0ms)
|
10560
|
+
Completed 200 OK in 15ms (ActiveRecord: 0.0ms)
|
10561
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10562
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10563
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10564
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10565
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10566
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10567
|
+
Completed 500 Internal Server Error in 2ms
|
10568
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10569
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10570
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10571
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10572
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10573
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10574
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.0ms)
|
10575
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10576
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10577
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10578
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10579
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10580
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10581
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10582
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (1.0ms)
|
10583
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10584
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10585
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10586
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10587
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10588
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10589
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10590
|
+
Completed 304 Not Modified in 22ms (Views: 15.7ms | ActiveRecord: 0.0ms)
|
10591
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10592
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10593
|
+
Completed 500 Internal Server Error in 2ms
|
10594
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10595
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10596
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10597
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10598
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10599
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10600
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10601
|
+
Completed 200 OK in 187ms (ActiveRecord: 0.0ms)
|
10602
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10603
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10604
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10605
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10606
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10607
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10608
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10609
|
+
Completed 500 Internal Server Error in 3ms
|
10610
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10611
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10612
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (1.0ms)
|
10613
|
+
Completed 200 OK in 15ms (ActiveRecord: 0.0ms)
|
10614
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10615
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10616
|
+
Completed 500 Internal Server Error in 3ms
|
10617
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10618
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10619
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10620
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10621
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10622
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10623
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10624
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10625
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10626
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400", "force"=>true}}
|
10627
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10628
|
+
Completed 200 OK in 138ms (ActiveRecord: 0.0ms)
|
10629
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10630
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10631
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10632
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10633
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10634
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10635
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (1.0ms)
|
10636
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10637
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10638
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10639
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10640
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10641
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10642
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10643
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10644
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10645
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10646
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10647
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.0ms)
|
10648
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10649
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10650
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10651
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10652
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10653
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10654
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10655
|
+
Completed 304 Not Modified in 14ms (Views: 10.7ms | ActiveRecord: 0.0ms)
|
10656
|
+
[1m[36m (4.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10657
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10658
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10659
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10660
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
10661
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10662
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10663
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.0ms)
|
10664
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10665
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10666
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10667
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10668
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10669
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10670
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10671
|
+
Completed 500 Internal Server Error in 2ms
|
10672
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10673
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10674
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10675
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10676
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10677
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10678
|
+
Completed 500 Internal Server Error in 1ms
|
10679
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10680
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10681
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10682
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10683
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10684
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10685
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10686
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10687
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10688
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10689
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (1.0ms)
|
10690
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10691
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10692
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10693
|
+
Completed 304 Not Modified in 15ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
10694
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10695
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10696
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10697
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.0ms)
|
10698
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10699
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10700
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10701
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10702
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10703
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10704
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10705
|
+
Completed 500 Internal Server Error in 3ms
|
10706
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10707
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10708
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (1.0ms)
|
10709
|
+
Completed 200 OK in 14ms (ActiveRecord: 0.0ms)
|
10710
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10711
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10712
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (1.0ms)
|
10713
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10714
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10715
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10716
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10717
|
+
Completed 200 OK in 6ms (ActiveRecord: 0.0ms)
|
10718
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10719
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10720
|
+
Completed 500 Internal Server Error in 5ms
|
10721
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10722
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10723
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (1.0ms)
|
10724
|
+
Completed 200 OK in 8ms (ActiveRecord: 0.0ms)
|
10725
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10726
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10727
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (1.0ms)
|
10728
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10729
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10730
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10731
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (1.0ms)
|
10732
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10733
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10734
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10735
|
+
Completed 304 Not Modified in 20ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
10736
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10737
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10738
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10739
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10740
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10741
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10742
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10743
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10744
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10745
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10746
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10747
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10748
|
+
[1m[36m (4.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10749
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10750
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10751
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10752
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10753
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10754
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10755
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10756
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10757
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10758
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10759
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10760
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10762
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10763
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10764
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10765
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10766
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10767
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10768
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10769
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10770
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10771
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10772
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10773
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10774
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10775
|
+
[1m[36m (4.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10776
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10777
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10778
|
+
Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
|
10779
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
10780
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10781
|
+
Parameters: {"id"=>"test.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10782
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (1.0ms)
|
10783
|
+
Completed 200 OK in 15ms (ActiveRecord: 0.0ms)
|
10784
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10785
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxheight"=>"200"}}
|
10786
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10787
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10788
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10789
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"400"}}
|
10790
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10791
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10792
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10793
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10794
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (1.0ms)
|
10795
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10796
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10797
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"350"}}
|
10798
|
+
Rendered text template (0.0ms)
|
10799
|
+
Completed 304 Not Modified in 16ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
10800
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10801
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
|
10802
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
10803
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10804
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10805
|
+
Parameters: {"id"=>"test_æ_%C3%B8_å.png", "image"=>{"width"=>"640", "height"=>"480"}}
|
10806
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10807
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10808
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10809
|
+
Parameters: {"id"=>"test.png", "image"=>{"maxwidth"=>"200"}}
|
10810
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10811
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10812
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10813
|
+
Parameters: {"id"=>"/../config.ru", "image"=>{"smartsize"=>"200"}}
|
10814
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
10815
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10816
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
|
10817
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10818
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10819
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10820
|
+
Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}}
|
10821
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (1.0ms)
|
10822
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10823
|
+
[1m[36m (5.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10824
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10825
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
10826
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (1.0ms)
|
10827
|
+
Completed 200 OK in 17ms (ActiveRecord: 0.0ms)
|
10828
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10829
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"/../config.ru"}
|
10830
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
10831
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10832
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
10833
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10834
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10835
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10836
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
10837
|
+
Rendered text template (1.0ms)
|
10838
|
+
Completed 304 Not Modified in 19ms (Views: 12.4ms | ActiveRecord: 0.0ms)
|
10839
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10840
|
+
Parameters: {"image"=>{"maxheight"=>"200"}, "id"=>"test.png"}
|
10841
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10842
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10843
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10844
|
+
Parameters: {"image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}, "id"=>"test.png"}
|
10845
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (1.0ms)
|
10846
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10847
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10848
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test_æ_%C3%B8_å.png"}
|
10849
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10850
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10851
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10852
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test.png"}
|
10853
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (1.0ms)
|
10854
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10855
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10856
|
+
Parameters: {"image"=>{"invalid_param"=>"kasper"}, "id"=>"test.png"}
|
10857
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
10858
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10859
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"test.png"}
|
10860
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (1.0ms)
|
10861
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10862
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10863
|
+
Parameters: {"image"=>{"maxwidth"=>"200"}, "id"=>"test.png"}
|
10864
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (1.0ms)
|
10865
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10866
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10867
|
+
Parameters: {"image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}, "id"=>"test.png"}
|
10868
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (1.0ms)
|
10869
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10870
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
10871
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10872
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test.png"}
|
10873
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (1.0ms)
|
10874
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
10875
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10876
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
10877
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10878
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10879
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10880
|
+
Parameters: {"image"=>{"maxheight"=>"200"}, "id"=>"test.png"}
|
10881
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10882
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10883
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10884
|
+
Parameters: {"image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}, "id"=>"test.png"}
|
10885
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (1.0ms)
|
10886
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10887
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10888
|
+
Parameters: {"image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}, "id"=>"test.png"}
|
10889
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.0ms)
|
10890
|
+
Completed 200 OK in 4ms (ActiveRecord: 0.0ms)
|
10891
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10892
|
+
Parameters: {"image"=>{"maxwidth"=>"200"}, "id"=>"test.png"}
|
10893
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10894
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10895
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10896
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"/../config.ru"}
|
10897
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
10898
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10899
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"test.png"}
|
10900
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
10901
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10902
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10903
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
10904
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10905
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
10906
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10907
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
10908
|
+
Rendered text template (0.0ms)
|
10909
|
+
Completed 304 Not Modified in 16ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
10910
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10911
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test_æ_%C3%B8_å.png"}
|
10912
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10913
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.0ms)
|
10914
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10915
|
+
Parameters: {"image"=>{"invalid_param"=>"kasper"}, "id"=>"test.png"}
|
10916
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
10917
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10918
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10919
|
+
Parameters: {"image"=>{"maxwidth"=>"200"}, "id"=>"test.png"}
|
10920
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
10921
|
+
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)
|
10922
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10923
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10924
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10925
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
10926
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
10927
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10928
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10929
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
10930
|
+
Rendered text template (0.0ms)
|
10931
|
+
Completed 304 Not Modified in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
10932
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10933
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10934
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10935
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"/../config.ru"}
|
10936
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
10937
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10939
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10940
|
+
Parameters: {"image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}, "id"=>"test.png"}
|
10941
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.0ms)
|
10942
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10943
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10944
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10945
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10946
|
+
Parameters: {"image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}, "id"=>"test.png"}
|
10947
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.1ms)
|
10948
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10949
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10951
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10952
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test_æ_%C3%B8_å.png"}
|
10953
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
10954
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10955
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10956
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10957
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10958
|
+
Parameters: {"image"=>{"smartsize"=>"400", "force"=>true}, "id"=>"test.png"}
|
10959
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.1ms)
|
10960
|
+
Completed 200 OK in 90ms (ActiveRecord: 0.0ms)
|
10961
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10962
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
10963
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10964
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10965
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10966
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10967
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10968
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test.png"}
|
10969
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
10970
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10971
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10972
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10973
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10974
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"test.png"}
|
10975
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.1ms)
|
10976
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10977
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10978
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10979
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10980
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
10981
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
10982
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10983
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10984
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10985
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10986
|
+
Parameters: {"image"=>{"invalid_param"=>"kasper"}, "id"=>"test.png"}
|
10987
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
10988
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10989
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10990
|
+
Processing by RailsImager::ImagesController#show as HTML
|
10991
|
+
Parameters: {"image"=>{"maxheight"=>"200"}, "id"=>"test.png"}
|
10992
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
10993
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10994
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10995
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10996
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10997
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10998
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10999
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11000
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11001
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"test.png"}
|
11002
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.1ms)
|
11003
|
+
Completed 200 OK in 6ms (ActiveRecord: 0.0ms)
|
11004
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11005
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11006
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11007
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"/../config.ru"}
|
11008
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
11009
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11010
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11011
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11012
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
11013
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (0.0ms)
|
11014
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
11015
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11016
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
11017
|
+
Rendered text template (0.0ms)
|
11018
|
+
Completed 304 Not Modified in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
11019
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11020
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11021
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11022
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
11023
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
11024
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
11025
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11026
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11027
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11028
|
+
Parameters: {"image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}, "id"=>"test.png"}
|
11029
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (0.0ms)
|
11030
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
11031
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11032
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11033
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11034
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test.png"}
|
11035
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.1ms)
|
11036
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
11037
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11039
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11040
|
+
Parameters: {"image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}, "id"=>"test.png"}
|
11041
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (0.0ms)
|
11042
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
11043
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11044
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11045
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11046
|
+
Parameters: {"image"=>{"smartsize"=>"400", "force"=>true}, "id"=>"test.png"}
|
11047
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.1ms)
|
11048
|
+
Completed 200 OK in 111ms (ActiveRecord: 0.0ms)
|
11049
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11050
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
11051
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
11052
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
11053
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11054
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11055
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11056
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test_æ_%C3%B8_å.png"}
|
11057
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
11058
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
11059
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11060
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11061
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11062
|
+
Parameters: {"image"=>{"maxheight"=>"200"}, "id"=>"test.png"}
|
11063
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.1ms)
|
11064
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
11065
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11066
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11067
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11068
|
+
Parameters: {"image"=>{"maxwidth"=>"200"}, "id"=>"test.png"}
|
11069
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.1ms)
|
11070
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
11071
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11073
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11074
|
+
Parameters: {"image"=>{"invalid_param"=>"kasper"}, "id"=>"test.png"}
|
11075
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
11076
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11077
|
+
[1m[36m (3.0ms)[0m [1mSELECT name FROM sqlite_master WHERE type = 'table' AND name = "schema_migrations"[0m
|
11078
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11079
|
+
Parameters: {"image"=>{"invalid_param"=>"kasper"}, "id"=>"test.png"}
|
11080
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
11081
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11082
|
+
Parameters: {"image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}, "id"=>"test.png"}
|
11083
|
+
Sent file /tmp/rails-imager-cache/68a968398cfa1d0cd84dd5a794089554.png (1.0ms)
|
11084
|
+
Completed 200 OK in 16ms (ActiveRecord: 0.0ms)
|
11085
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11086
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test.png"}
|
11087
|
+
Sent file /tmp/rails-imager-cache/3b24cae006ac63b391b4e16561d0c176.png (0.0ms)
|
11088
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
11089
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11090
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"/../config.ru"}
|
11091
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
11092
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11093
|
+
Parameters: {"image"=>{"maxheight"=>"200"}, "id"=>"test.png"}
|
11094
|
+
Sent file /tmp/rails-imager-cache/d21ceb31c3fa4da3d50efe25436e51fe.png (0.0ms)
|
11095
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
11096
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11097
|
+
Parameters: {"image"=>{"smartsize"=>"640", "rounded_corners"=>"15", "border"=>"1", "border_color"=>"black"}, "id"=>"test.png"}
|
11098
|
+
Sent file /tmp/rails-imager-cache/cf61b86225ee9b620f73b5fe0e6af0b4.png (1.0ms)
|
11099
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
11100
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11101
|
+
Parameters: {"image"=>{"smartsize"=>"400"}, "id"=>"test.png"}
|
11102
|
+
Sent file /tmp/rails-imager-cache/a1d5e5791060350da8196efcf19e6d3c.png (0.0ms)
|
11103
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
11104
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11105
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
11106
|
+
Sent file /tmp/rails-imager-cache/3a04c3c926cd0bed2df232261ed539d0.png (1.0ms)
|
11107
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
11108
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11109
|
+
Parameters: {"image"=>{"smartsize"=>"350"}, "id"=>"test.png"}
|
11110
|
+
Rendered text template (1.0ms)
|
11111
|
+
Completed 304 Not Modified in 15ms (Views: 10.7ms | ActiveRecord: 0.0ms)
|
11112
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11113
|
+
Parameters: {"image"=>{"maxwidth"=>"200"}, "id"=>"test.png"}
|
11114
|
+
Sent file /tmp/rails-imager-cache/98c9a4c721daf05bde343cdf5f8e2a83.png (0.0ms)
|
11115
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.0ms)
|
11116
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11117
|
+
Parameters: {"image"=>{"width"=>"640", "height"=>"480"}, "id"=>"test_æ_%C3%B8_å.png"}
|
11118
|
+
Sent file /tmp/rails-imager-cache/38575c34bde0655cda92b47d2763aec5.png (0.0ms)
|
11119
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|
11120
|
+
Processing by RailsImager::ImagesController#show as HTML
|
11121
|
+
Parameters: {"image"=>{"smartsize"=>"200"}, "id"=>"test.png"}
|
11122
|
+
Sent file /tmp/rails-imager-cache/cdb14e91faa664e5555fd4bf048f485b.png (0.0ms)
|
11123
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.0ms)
|