dynamic_paperclip 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -52,6 +52,10 @@ has_dynamic_attached_file :avatar
52
52
 
53
53
  You can continue defining styles there, too, you don't need to move over entirely to dynamic styles. You can have both!
54
54
 
55
+ **Note:** Dynamic Paperclip requires that the ``:style`` **and** either the ``:id`` or ``:id_partition`` be included
56
+ in the ``:url`` that you specify when defining the attachment. Paperclip includes them by default, so this only
57
+ applies if you've specified your own.
58
+
55
59
  Then, whenever you'd like a URL to a dynamic style, simply call ``#dynamic_url`` instead of ``#url`` on the attachment,
56
60
  passing it the style definition that you would normally define in the ``:styles`` hash on ``has_attached_file``:
57
61
 
@@ -116,13 +120,13 @@ end
116
120
  Dynamic Paperclip will generate the following route:
117
121
 
118
122
  ```ruby
119
- get '/system/users/:attachment/:id/:style', to: 'DynamicPaperclip::AttachmentStyles#generate_user'
123
+ get '/system/users/:attachment/:id/dynamic_:definition', to: 'DynamicPaperclip::AttachmentStyles#generate_user'
120
124
  ```
121
125
 
122
126
  Now, in your view, you might call something like this:
123
127
 
124
128
  ```ruby
125
- @photo.avatar.dynamic_url('50x50')
129
+ @user.avatar.dynamic_url('50x50')
126
130
  ```
127
131
 
128
132
  Which will return the following url (assuming a JPG avatar and a User ID of 42):
@@ -19,18 +19,17 @@ module DynamicPaperclip
19
19
  id = params[:id] || id_from_partition(params[:id_partition])
20
20
 
21
21
  attachment = klass.find(id).send(attachment_name)
22
+ style_name = StyleNaming.dynamic_style_name_from_definition(params[:definition])
22
23
 
23
- # Only validate style name if it's dynamic,
24
- # and only process style if it's dynamic and doesn't exist,
24
+ # Validate URL hash against requested style name
25
+ raise Errors::InvalidHash unless DynamicPaperclip::UrlSecurity.valid_hash?(params[:s], style_name)
26
+
27
+ # Only process style if it doesn't exist,
25
28
  # otherwise we may just be fielding a request for
26
29
  # an existing style (i.e. serve_static_assets is true)
27
- if params[:style] =~ /^dynamic_/
28
- raise Errors::InvalidHash unless DynamicPaperclip::UrlSecurity.valid_hash?(params[:s], params[:style])
29
-
30
- attachment.process_dynamic_style params[:style] unless attachment.exists?(params[:style])
31
- end
30
+ attachment.process_dynamic_style params[:definition] unless attachment.exists?(style_name)
32
31
 
33
- send_file attachment.path(params[:style]), :disposition => 'inline', :type => attachment.content_type
32
+ send_file attachment.path(style_name), :disposition => 'inline', :type => attachment.content_type
34
33
  end
35
34
 
36
35
  def id_from_partition(partition)
@@ -6,6 +6,7 @@ require "dynamic_paperclip/attachment"
6
6
  require "dynamic_paperclip/has_attached_file"
7
7
  require "dynamic_paperclip/paperclip_shim"
8
8
  require "dynamic_paperclip/url_security"
9
+ require "dynamic_paperclip/style_naming"
9
10
 
10
11
  module DynamicPaperclip
11
12
  extend self
@@ -22,43 +22,29 @@ module DynamicPaperclip
22
22
  super.merge dynamic_styles
23
23
  end
24
24
 
25
- def process_dynamic_style(name)
26
- add_dynamic_style! name
27
- reprocess! name
25
+ def process_dynamic_style(definition)
26
+ style_name = StyleNaming.dynamic_style_name_from_definition(definition)
27
+
28
+ add_dynamic_style! style_name
29
+ reprocess! style_name
28
30
  end
29
31
 
30
32
  def dynamic_url(definition)
31
33
  raise DynamicPaperclip::Errors::SecretNotSet, "No secret has been configured. Please run the dynamic_paperclip:install generator." unless DynamicPaperclip.config.secret.present?
32
34
 
33
- style_name = dynamic_style_name_from_definition(definition)
35
+ style_name = StyleNaming.dynamic_style_name_from_definition(definition)
34
36
 
35
37
  url = url(style_name)
36
38
 
37
39
  delimiter_char = url.match(/\?.+=/) ? '&' : '?'
38
40
 
39
- "#{url}#{delimiter_char}s=#{UrlSecurity.generate_hash(style_name)}"
41
+ "#{url}#{delimiter_char}s=#{UrlSecurity.generate_hash(style_name)}".html_safe
40
42
  end
41
43
 
42
44
  private
43
45
 
44
- # Generate style name from style definition,
45
- # only supports strings at the moment
46
- def dynamic_style_name_from_definition(options)
47
- if options.is_a?(String)
48
- "dynamic_#{URI.escape(options)}".to_sym
49
- else
50
- raise 'Only String options are supported with dynamic attachments'
51
- end
52
- end
53
-
54
- # Reverse of #dynamic_style_name_from_definition,
55
- # given a dynamic style name, extracts the definition (style options)
56
- def style_definition_from_dynamic_style_name(name)
57
- URI.unescape name[8..-1]
58
- end
59
-
60
46
  def add_dynamic_style!(name)
61
- @dynamic_styles[name.to_sym] = Paperclip::Style.new(name, style_definition_from_dynamic_style_name(name), self)
47
+ @dynamic_styles[name.to_sym] = Paperclip::Style.new(name, StyleNaming.style_definition_from_dynamic_style_name(name), self)
62
48
  end
63
49
  end
64
50
  end
@@ -33,7 +33,11 @@ module DynamicPaperclip
33
33
  end
34
34
 
35
35
  def add_route!
36
- url = (@options[:url] || Attachment.default_options[:url]).gsub(':id_partition', '*id_partition').gsub(':class', @klass.name.underscore.pluralize)
36
+ url = (@options[:url] || Attachment.default_options[:url]).
37
+ gsub(':id_partition', '*id_partition').
38
+ gsub(':class' , @klass.name.underscore.pluralize).
39
+ gsub(':style' , "dynamic_:definition")
40
+
37
41
  action = "generate_#{@klass.name.underscore}"
38
42
  default_attachment = @name.to_s.downcase.pluralize
39
43
 
@@ -0,0 +1,19 @@
1
+ module DynamicPaperclip
2
+ module StyleNaming
3
+ # Generate style name from style definition,
4
+ # only supports strings at the moment
5
+ def self.dynamic_style_name_from_definition(options)
6
+ if options.is_a?(String)
7
+ "dynamic_#{URI.escape(options)}".to_sym
8
+ else
9
+ raise 'Only String options are supported with dynamic attachments'
10
+ end
11
+ end
12
+
13
+ # Reverse of #dynamic_style_name_from_definition,
14
+ # given a dynamic style name, extracts the definition (style options)
15
+ def self.style_definition_from_dynamic_style_name(name)
16
+ URI.unescape name[8..-1]
17
+ end
18
+ end
19
+ end
@@ -1,3 +1,3 @@
1
1
  module DynamicPaperclip
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -2,10 +2,7 @@ require 'test_helper'
2
2
 
3
3
  class Foo < ActiveRecord::Base
4
4
  has_dynamic_attached_file :image,
5
- :url => '/system/:class/:attachment/:id/:style/:filename',
6
- :styles => {
7
- :thumb => '50x50#'
8
- }
5
+ :url => '/system/:class/:attachment/:id/:style/:filename'
9
6
 
10
7
  has_dynamic_attached_file :image_with_id_partition_in_url,
11
8
  :url => '/system/:class/:attachment/:id_partition/:style/:filename'
@@ -15,6 +12,7 @@ class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestC
15
12
  setup do
16
13
  @foo = stub('foo')
17
14
  @attachment = stub('image attachment', :path => File.join(FIXTURES_DIR, 'rails.png'), :content_type => 'image/jpeg')
15
+ @attachment.stubs(:exists?).returns(true)
18
16
 
19
17
  Foo.stubs(:find).with('1').returns @foo
20
18
  @foo.stubs(:image).returns @attachment
@@ -41,38 +39,27 @@ class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestC
41
39
  }
42
40
  end
43
41
 
44
- should 'not process style if it is not dynamic' do
45
- @attachment.expects(:process_dynamic_style).never
46
-
47
- get :generate_foo,
48
- :attachment => 'images',
49
- :id => '1',
50
- :style => 'thumb',
51
- :filename => 'file',
52
- :use_route => :dynamic_paperclip_engine
53
- end
54
-
55
- should 'not process style if it is dynamic but already exists' do
56
- @attachment.expects(:exists?).with('dynamic_42x42').returns(true)
42
+ should 'not process style if it already exists' do
43
+ @attachment.expects(:exists?).with(:dynamic_42x42).returns(true)
57
44
  @attachment.expects(:process_dynamic_style).never
58
45
 
59
46
  get :generate_foo,
60
47
  :attachment => 'images',
61
48
  :id => '1',
62
- :style => 'dynamic_42x42',
49
+ :definition => '42x42',
63
50
  :filename => 'file',
64
51
  :s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
65
52
  :use_route => :dynamic_paperclip_engine
66
53
  end
67
54
 
68
55
  should 'process style if it is dynamic and does not exist' do
69
- @attachment.expects(:exists?).with('dynamic_42x42').returns(false)
56
+ @attachment.expects(:exists?).with(:dynamic_42x42).returns(false)
70
57
  @attachment.expects(:process_dynamic_style).once
71
58
 
72
59
  get :generate_foo,
73
60
  :attachment => 'images',
74
61
  :id => '1',
75
- :style => 'dynamic_42x42',
62
+ :definition => '42x42',
76
63
  :filename => 'file',
77
64
  :s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
78
65
  :use_route => :dynamic_paperclip_engine
@@ -84,8 +71,9 @@ class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestC
84
71
  get :generate_foo,
85
72
  :attachment => 'images',
86
73
  :id => '1',
87
- :style => 'thumb',
74
+ :definition => '42x42',
88
75
  :filename => 'file',
76
+ :s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
89
77
  :use_route => :dynamic_paperclip_engine
90
78
  end
91
79
 
@@ -96,18 +84,17 @@ class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestC
96
84
  get :generate_foo,
97
85
  :attachment => 'image_with_id_partition_in_urls',
98
86
  :id_partition => '000/010/042',
99
- :style => 'thumb',
87
+ :definition => '42x42',
100
88
  :filename => 'file',
89
+ :s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
101
90
  :use_route => :dynamic_paperclip_engine
102
91
  end
103
92
 
104
93
  should 'respond with correct content type' do
105
- @attachment.stubs(:exists?).returns(true)
106
-
107
94
  get :generate_foo,
108
95
  :attachment => 'images',
109
96
  :id => '1',
110
- :style => 'dynamic_42x42',
97
+ :definition => '42x42',
111
98
  :filename => 'file',
112
99
  :s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
113
100
  :use_route => :dynamic_paperclip_engine
@@ -116,15 +103,13 @@ class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestC
116
103
  end
117
104
 
118
105
  should 'send image to client with correct content type and disposition' do
119
- @attachment.stubs(:exists?).returns(true)
120
-
121
106
  @controller.stubs(:render)
122
107
  @controller.expects(:send_file).with(@attachment.path, :disposition => 'inline', :type => @attachment.content_type)
123
108
 
124
109
  get :generate_foo,
125
110
  :attachment => 'images',
126
111
  :id => '1',
127
- :style => 'dynamic_42x42',
112
+ :definition => '42x42',
128
113
  :filename => 'file',
129
114
  :s => DynamicPaperclip::UrlSecurity.generate_hash('dynamic_42x42'),
130
115
  :use_route => :dynamic_paperclip_engine
@@ -135,7 +120,7 @@ class DynamicPaperclip::AttachmentStylesControllerTest < ActionController::TestC
135
120
  get :generate_foo,
136
121
  :attachment => 'images',
137
122
  :id => '1',
138
- :style => 'dynamic_42x42',
123
+ :definition => '42x42',
139
124
  :filename => 'file',
140
125
  :s => 'this is an invalid hash',
141
126
  :use_route => :dynamic_paperclip_engine
Binary file
@@ -14468,3 +14468,3092 @@ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14468
14468
   (0.0ms) rollback transaction
14469
14469
   (0.1ms) begin transaction
14470
14470
   (0.0ms) rollback transaction
14471
+ Connecting to database specified by database.yml
14472
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14473
+ Migrating to CreatePhotos (20131102002336)
14474
+  (0.1ms) begin transaction
14475
+ Fixture Delete (0.3ms) DELETE FROM "photos"
14476
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:43:11', '2013-11-04 18:43:11')
14477
+  (0.6ms) commit transaction
14478
+  (0.0ms) begin transaction
14479
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14480
+  (0.1ms) rollback transaction
14481
+  (0.0ms) begin transaction
14482
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14483
+  (0.0ms) rollback transaction
14484
+  (0.0ms) begin transaction
14485
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14486
+  (0.0ms) rollback transaction
14487
+  (0.0ms) begin transaction
14488
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14489
+  (0.1ms) rollback transaction
14490
+  (0.0ms) begin transaction
14491
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14492
+  (0.1ms) rollback transaction
14493
+  (0.0ms) begin transaction
14494
+  (0.0ms) rollback transaction
14495
+  (0.0ms) begin transaction
14496
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14497
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 13:43:12 -0500
14498
+  (0.1ms) rollback transaction
14499
+  (0.0ms) begin transaction
14500
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14501
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14502
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14503
+ Completed 200 OK in 1.3ms (ActiveRecord: 0.0ms)
14504
+  (0.1ms) rollback transaction
14505
+  (0.0ms) begin transaction
14506
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14507
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
14508
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14509
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14510
+  (0.0ms) rollback transaction
14511
+  (0.0ms) begin transaction
14512
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14513
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14514
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14515
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14516
+  (0.0ms) rollback transaction
14517
+  (0.0ms) begin transaction
14518
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14519
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14520
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14521
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14522
+  (0.0ms) rollback transaction
14523
+  (0.0ms) begin transaction
14524
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14525
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14526
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14527
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14528
+  (0.0ms) rollback transaction
14529
+  (0.0ms) begin transaction
14530
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14531
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
14532
+ Completed 500 Internal Server Error in 0.4ms
14533
+  (0.0ms) rollback transaction
14534
+  (0.0ms) begin transaction
14535
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14536
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
14537
+ Completed 500 Internal Server Error in 0.5ms
14538
+  (0.0ms) rollback transaction
14539
+  (0.0ms) begin transaction
14540
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14541
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
14542
+ Completed 500 Internal Server Error in 0.4ms
14543
+  (0.0ms) rollback transaction
14544
+  (0.0ms) begin transaction
14545
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14546
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14547
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14548
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14549
+  (0.1ms) rollback transaction
14550
+  (0.0ms) begin transaction
14551
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14552
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14553
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
14554
+  (0.0ms) rollback transaction
14555
+  (0.0ms) begin transaction
14556
+  (0.0ms) rollback transaction
14557
+  (0.0ms) begin transaction
14558
+  (0.0ms) rollback transaction
14559
+ Connecting to database specified by database.yml
14560
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14561
+ Migrating to CreatePhotos (20131102002336)
14562
+  (0.1ms) begin transaction
14563
+ Fixture Delete (0.3ms) DELETE FROM "photos"
14564
+ Fixture Insert (0.2ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:43:29', '2013-11-04 18:43:29')
14565
+  (2.2ms) commit transaction
14566
+  (0.0ms) begin transaction
14567
+ Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14568
+  (0.1ms) rollback transaction
14569
+  (0.0ms) begin transaction
14570
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14571
+  (0.0ms) rollback transaction
14572
+  (0.0ms) begin transaction
14573
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14574
+  (0.1ms) rollback transaction
14575
+  (0.0ms) begin transaction
14576
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14577
+  (0.1ms) rollback transaction
14578
+  (0.0ms) begin transaction
14579
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14580
+  (0.1ms) rollback transaction
14581
+  (0.0ms) begin transaction
14582
+  (0.0ms) rollback transaction
14583
+  (0.0ms) begin transaction
14584
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14585
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 13:43:29 -0500
14586
+  (0.1ms) rollback transaction
14587
+  (0.0ms) begin transaction
14588
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14589
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14590
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14591
+ Completed 200 OK in 1.3ms (ActiveRecord: 0.0ms)
14592
+  (0.0ms) rollback transaction
14593
+  (0.0ms) begin transaction
14594
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14595
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
14596
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14597
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14598
+  (0.0ms) rollback transaction
14599
+  (0.0ms) begin transaction
14600
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14601
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14602
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14603
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14604
+  (0.0ms) rollback transaction
14605
+  (0.0ms) begin transaction
14606
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14607
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14608
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14609
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14610
+  (0.0ms) rollback transaction
14611
+  (0.0ms) begin transaction
14612
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14613
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14614
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14615
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14616
+  (0.0ms) rollback transaction
14617
+  (0.0ms) begin transaction
14618
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14619
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
14620
+ Completed 500 Internal Server Error in 0.4ms
14621
+  (0.0ms) rollback transaction
14622
+  (0.0ms) begin transaction
14623
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14624
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
14625
+ Completed 500 Internal Server Error in 0.5ms
14626
+  (0.1ms) rollback transaction
14627
+  (0.0ms) begin transaction
14628
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14629
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
14630
+ Completed 500 Internal Server Error in 0.4ms
14631
+  (0.0ms) rollback transaction
14632
+  (0.0ms) begin transaction
14633
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14634
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14635
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14636
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14637
+  (0.0ms) rollback transaction
14638
+  (0.0ms) begin transaction
14639
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14640
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14641
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
14642
+  (0.0ms) rollback transaction
14643
+  (0.0ms) begin transaction
14644
+  (0.0ms) rollback transaction
14645
+  (0.0ms) begin transaction
14646
+  (0.0ms) rollback transaction
14647
+ Connecting to database specified by database.yml
14648
+  (3.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14649
+ Migrating to CreatePhotos (20131102002336)
14650
+  (0.1ms) begin transaction
14651
+ Fixture Delete (0.3ms) DELETE FROM "photos"
14652
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:45:34', '2013-11-04 18:45:34')
14653
+  (0.5ms) commit transaction
14654
+  (0.0ms) begin transaction
14655
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14656
+  (0.1ms) rollback transaction
14657
+  (0.0ms) begin transaction
14658
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14659
+  (0.1ms) rollback transaction
14660
+  (0.0ms) begin transaction
14661
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14662
+  (0.1ms) rollback transaction
14663
+  (0.0ms) begin transaction
14664
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14665
+  (0.0ms) rollback transaction
14666
+  (0.0ms) begin transaction
14667
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14668
+  (0.0ms) rollback transaction
14669
+  (0.0ms) begin transaction
14670
+  (0.0ms) rollback transaction
14671
+  (0.0ms) begin transaction
14672
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14673
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 13:45:34 -0500
14674
+  (0.1ms) rollback transaction
14675
+  (0.0ms) begin transaction
14676
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14677
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14678
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14679
+ Completed 200 OK in 1.4ms (ActiveRecord: 0.0ms)
14680
+  (0.1ms) rollback transaction
14681
+  (0.0ms) begin transaction
14682
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14683
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
14684
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14685
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14686
+  (0.0ms) rollback transaction
14687
+  (0.0ms) begin transaction
14688
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14689
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14690
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14691
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14692
+  (0.0ms) rollback transaction
14693
+  (0.0ms) begin transaction
14694
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14695
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14696
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14697
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14698
+  (0.0ms) rollback transaction
14699
+  (0.0ms) begin transaction
14700
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14701
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14702
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14703
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14704
+  (0.0ms) rollback transaction
14705
+  (0.0ms) begin transaction
14706
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14707
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
14708
+ Completed 500 Internal Server Error in 0.4ms
14709
+  (0.0ms) rollback transaction
14710
+  (0.0ms) begin transaction
14711
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14712
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
14713
+ Completed 500 Internal Server Error in 0.5ms
14714
+  (0.1ms) rollback transaction
14715
+  (0.0ms) begin transaction
14716
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14717
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
14718
+ Completed 500 Internal Server Error in 0.4ms
14719
+  (0.0ms) rollback transaction
14720
+  (0.0ms) begin transaction
14721
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14722
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14723
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14724
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14725
+  (0.0ms) rollback transaction
14726
+  (0.0ms) begin transaction
14727
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14728
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14729
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
14730
+  (0.0ms) rollback transaction
14731
+  (0.0ms) begin transaction
14732
+  (0.0ms) rollback transaction
14733
+  (0.0ms) begin transaction
14734
+  (0.0ms) rollback transaction
14735
+ Connecting to database specified by database.yml
14736
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14737
+ Migrating to CreatePhotos (20131102002336)
14738
+  (0.1ms) begin transaction
14739
+ Fixture Delete (0.3ms) DELETE FROM "photos"
14740
+ Fixture Insert (0.2ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:46:12', '2013-11-04 18:46:12')
14741
+  (1.4ms) commit transaction
14742
+  (0.0ms) begin transaction
14743
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14744
+  (0.1ms) rollback transaction
14745
+  (0.0ms) begin transaction
14746
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14747
+  (0.0ms) rollback transaction
14748
+  (0.0ms) begin transaction
14749
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14750
+  (0.0ms) rollback transaction
14751
+  (0.0ms) begin transaction
14752
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14753
+  (0.0ms) rollback transaction
14754
+  (0.0ms) begin transaction
14755
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14756
+  (0.0ms) rollback transaction
14757
+  (0.0ms) begin transaction
14758
+  (0.0ms) rollback transaction
14759
+  (0.0ms) begin transaction
14760
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14761
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 13:46:12 -0500
14762
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
14763
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
14764
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14765
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/original/rails.png (0.1ms)
14766
+ Completed 200 OK in 3.8ms (ActiveRecord: 0.1ms)
14767
+  (0.1ms) rollback transaction
14768
+  (0.0ms) begin transaction
14769
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14770
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14771
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14772
+ Completed 200 OK in 0.9ms (ActiveRecord: 0.0ms)
14773
+  (0.1ms) rollback transaction
14774
+  (0.0ms) begin transaction
14775
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14776
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
14777
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14778
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14779
+  (0.0ms) rollback transaction
14780
+  (0.0ms) begin transaction
14781
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14782
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14783
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14784
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14785
+  (0.0ms) rollback transaction
14786
+  (0.0ms) begin transaction
14787
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14788
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14789
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14790
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14791
+  (0.0ms) rollback transaction
14792
+  (0.0ms) begin transaction
14793
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14794
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14795
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14796
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14797
+  (0.0ms) rollback transaction
14798
+  (0.0ms) begin transaction
14799
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14800
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
14801
+ Completed 500 Internal Server Error in 0.4ms
14802
+  (0.0ms) rollback transaction
14803
+  (0.0ms) begin transaction
14804
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14805
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
14806
+ Completed 500 Internal Server Error in 0.4ms
14807
+  (0.0ms) rollback transaction
14808
+  (0.0ms) begin transaction
14809
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14810
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
14811
+ Completed 500 Internal Server Error in 0.4ms
14812
+  (0.0ms) rollback transaction
14813
+  (0.0ms) begin transaction
14814
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14815
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14816
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
14817
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
14818
+  (0.0ms) rollback transaction
14819
+  (0.0ms) begin transaction
14820
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14821
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14822
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
14823
+  (0.0ms) rollback transaction
14824
+  (0.0ms) begin transaction
14825
+  (0.0ms) rollback transaction
14826
+  (0.0ms) begin transaction
14827
+  (0.1ms) rollback transaction
14828
+ Connecting to database specified by database.yml
14829
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14830
+ Migrating to CreatePhotos (20131102002336)
14831
+  (0.1ms) begin transaction
14832
+ Fixture Delete (0.3ms) DELETE FROM "photos"
14833
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:49:52', '2013-11-04 18:49:52')
14834
+  (0.5ms) commit transaction
14835
+  (0.0ms) begin transaction
14836
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14837
+  (0.1ms) rollback transaction
14838
+  (0.0ms) begin transaction
14839
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14840
+  (0.0ms) rollback transaction
14841
+  (0.0ms) begin transaction
14842
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14843
+  (0.1ms) rollback transaction
14844
+  (0.0ms) begin transaction
14845
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14846
+  (0.1ms) rollback transaction
14847
+  (0.0ms) begin transaction
14848
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14849
+  (0.1ms) rollback transaction
14850
+  (0.0ms) begin transaction
14851
+  (0.0ms) rollback transaction
14852
+  (0.0ms) begin transaction
14853
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14854
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 13:49:52 -0500
14855
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
14856
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
14857
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14858
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d.png[0]'
14859
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d.png[0]'
14860
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d.png[0]'
14861
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d.png[0]'
14862
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d20131104-5424-q2psog'
14863
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-5424-lnuj1d20131104-5424-q2psog'
14864
+  (0.1ms) SAVEPOINT active_record_1
14865
+  (0.4ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 18:49:52.875836', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 18:49:53.063169' WHERE "photos"."id" = 1
14866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14867
+ Completed 500 Internal Server Error in 200.6ms
14868
+  (0.4ms) rollback transaction
14869
+  (0.1ms) begin transaction
14870
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14871
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14872
+ Completed 500 Internal Server Error in 1.0ms
14873
+  (0.0ms) rollback transaction
14874
+  (0.0ms) begin transaction
14875
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14876
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
14877
+ Completed 500 Internal Server Error in 0.5ms
14878
+  (0.0ms) rollback transaction
14879
+  (0.0ms) begin transaction
14880
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14881
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14882
+ Completed 500 Internal Server Error in 0.5ms
14883
+  (0.0ms) rollback transaction
14884
+  (0.0ms) begin transaction
14885
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14886
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14887
+ Completed 500 Internal Server Error in 0.5ms
14888
+  (0.1ms) rollback transaction
14889
+  (0.0ms) begin transaction
14890
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14891
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14892
+ Completed 500 Internal Server Error in 0.5ms
14893
+  (0.1ms) rollback transaction
14894
+  (0.0ms) begin transaction
14895
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14896
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
14897
+ Completed 500 Internal Server Error in 0.5ms
14898
+  (0.1ms) rollback transaction
14899
+  (0.0ms) begin transaction
14900
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14901
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
14902
+ Completed 500 Internal Server Error in 0.5ms
14903
+  (0.1ms) rollback transaction
14904
+  (0.0ms) begin transaction
14905
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14906
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
14907
+ Completed 500 Internal Server Error in 0.5ms
14908
+  (0.1ms) rollback transaction
14909
+  (0.0ms) begin transaction
14910
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14911
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14912
+ Completed 500 Internal Server Error in 0.5ms
14913
+  (0.0ms) rollback transaction
14914
+  (0.0ms) begin transaction
14915
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14916
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14917
+ Completed 500 Internal Server Error in 0.5ms
14918
+  (0.0ms) rollback transaction
14919
+  (0.0ms) begin transaction
14920
+  (0.0ms) rollback transaction
14921
+  (0.0ms) begin transaction
14922
+  (0.1ms) rollback transaction
14923
+ Connecting to database specified by database.yml
14924
+  (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14925
+ Migrating to CreatePhotos (20131102002336)
14926
+  (0.1ms) begin transaction
14927
+ Fixture Delete (0.3ms) DELETE FROM "photos"
14928
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:55:42', '2013-11-04 18:55:42')
14929
+  (0.5ms) commit transaction
14930
+  (0.0ms) begin transaction
14931
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14932
+  (0.1ms) rollback transaction
14933
+  (0.0ms) begin transaction
14934
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14935
+  (0.1ms) rollback transaction
14936
+  (0.0ms) begin transaction
14937
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14938
+  (0.0ms) rollback transaction
14939
+  (0.0ms) begin transaction
14940
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14941
+  (0.1ms) rollback transaction
14942
+  (0.0ms) begin transaction
14943
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14944
+  (0.0ms) rollback transaction
14945
+  (0.0ms) begin transaction
14946
+  (0.0ms) rollback transaction
14947
+  (0.0ms) begin transaction
14948
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
14949
+  (0.0ms) rollback transaction
14950
+  (0.1ms) begin transaction
14951
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14952
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14953
+ Completed 500 Internal Server Error in 1.3ms
14954
+  (0.0ms) rollback transaction
14955
+  (0.0ms) begin transaction
14956
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14957
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
14958
+ Completed 500 Internal Server Error in 0.5ms
14959
+  (0.0ms) rollback transaction
14960
+  (0.0ms) begin transaction
14961
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14962
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14963
+ Completed 500 Internal Server Error in 0.5ms
14964
+  (0.0ms) rollback transaction
14965
+  (0.0ms) begin transaction
14966
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14967
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
14968
+ Completed 500 Internal Server Error in 0.5ms
14969
+  (0.0ms) rollback transaction
14970
+  (0.0ms) begin transaction
14971
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14972
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14973
+ Completed 500 Internal Server Error in 0.5ms
14974
+  (0.0ms) rollback transaction
14975
+  (0.4ms) begin transaction
14976
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14977
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
14978
+ Completed 500 Internal Server Error in 0.4ms
14979
+  (0.0ms) rollback transaction
14980
+  (0.0ms) begin transaction
14981
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14982
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
14983
+ Completed 500 Internal Server Error in 0.5ms
14984
+  (0.0ms) rollback transaction
14985
+  (0.0ms) begin transaction
14986
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14987
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
14988
+ Completed 500 Internal Server Error in 0.4ms
14989
+  (0.0ms) rollback transaction
14990
+  (0.0ms) begin transaction
14991
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14992
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14993
+ Completed 500 Internal Server Error in 0.5ms
14994
+  (0.0ms) rollback transaction
14995
+  (0.0ms) begin transaction
14996
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
14997
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
14998
+ Completed 500 Internal Server Error in 0.5ms
14999
+  (0.1ms) rollback transaction
15000
+  (0.0ms) begin transaction
15001
+  (0.0ms) rollback transaction
15002
+  (0.0ms) begin transaction
15003
+  (0.0ms) rollback transaction
15004
+ Connecting to database specified by database.yml
15005
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15006
+ Migrating to CreatePhotos (20131102002336)
15007
+  (0.1ms) begin transaction
15008
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15009
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:56:00', '2013-11-04 18:56:00')
15010
+  (1.4ms) commit transaction
15011
+  (0.0ms) begin transaction
15012
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15013
+  (0.1ms) rollback transaction
15014
+  (0.0ms) begin transaction
15015
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15016
+  (0.1ms) rollback transaction
15017
+  (0.0ms) begin transaction
15018
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15019
+  (0.1ms) rollback transaction
15020
+  (0.0ms) begin transaction
15021
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15022
+  (0.0ms) rollback transaction
15023
+  (0.0ms) begin transaction
15024
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15025
+  (0.0ms) rollback transaction
15026
+  (0.0ms) begin transaction
15027
+  (0.0ms) rollback transaction
15028
+  (0.0ms) begin transaction
15029
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15030
+  (0.1ms) rollback transaction
15031
+  (0.1ms) begin transaction
15032
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15033
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15034
+ Completed 500 Internal Server Error in 1.3ms
15035
+  (0.1ms) rollback transaction
15036
+  (0.0ms) begin transaction
15037
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15038
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15039
+ Completed 500 Internal Server Error in 0.5ms
15040
+  (0.0ms) rollback transaction
15041
+  (0.0ms) begin transaction
15042
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15043
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15044
+ Completed 500 Internal Server Error in 0.4ms
15045
+  (0.0ms) rollback transaction
15046
+  (0.0ms) begin transaction
15047
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15048
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15049
+ Completed 500 Internal Server Error in 0.4ms
15050
+  (0.0ms) rollback transaction
15051
+  (0.0ms) begin transaction
15052
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15053
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15054
+ Completed 500 Internal Server Error in 0.4ms
15055
+  (0.0ms) rollback transaction
15056
+  (0.0ms) begin transaction
15057
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15058
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15059
+ Completed 500 Internal Server Error in 0.4ms
15060
+  (0.0ms) rollback transaction
15061
+  (0.0ms) begin transaction
15062
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15063
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15064
+ Completed 500 Internal Server Error in 0.4ms
15065
+  (0.0ms) rollback transaction
15066
+  (0.0ms) begin transaction
15067
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15068
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15069
+ Completed 500 Internal Server Error in 0.4ms
15070
+  (0.0ms) rollback transaction
15071
+  (0.0ms) begin transaction
15072
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15073
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15074
+ Completed 500 Internal Server Error in 0.5ms
15075
+  (0.0ms) rollback transaction
15076
+  (0.0ms) begin transaction
15077
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15078
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15079
+ Completed 500 Internal Server Error in 0.6ms
15080
+  (0.1ms) rollback transaction
15081
+  (0.0ms) begin transaction
15082
+  (0.0ms) rollback transaction
15083
+  (0.0ms) begin transaction
15084
+  (0.0ms) rollback transaction
15085
+ Connecting to database specified by database.yml
15086
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15087
+ Migrating to CreatePhotos (20131102002336)
15088
+  (0.1ms) begin transaction
15089
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15090
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:56:15', '2013-11-04 18:56:15')
15091
+  (0.8ms) commit transaction
15092
+  (0.0ms) begin transaction
15093
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15094
+  (0.1ms) rollback transaction
15095
+  (0.0ms) begin transaction
15096
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15097
+  (0.0ms) rollback transaction
15098
+  (0.0ms) begin transaction
15099
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15100
+  (0.1ms) rollback transaction
15101
+  (0.0ms) begin transaction
15102
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15103
+  (0.0ms) rollback transaction
15104
+  (0.0ms) begin transaction
15105
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15106
+  (0.1ms) rollback transaction
15107
+  (0.0ms) begin transaction
15108
+  (0.0ms) rollback transaction
15109
+  (0.0ms) begin transaction
15110
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15111
+  (0.1ms) rollback transaction
15112
+  (0.1ms) begin transaction
15113
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15114
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15115
+ Completed 500 Internal Server Error in 1.4ms
15116
+  (0.0ms) rollback transaction
15117
+  (0.0ms) begin transaction
15118
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15119
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15120
+ Completed 500 Internal Server Error in 0.5ms
15121
+  (0.0ms) rollback transaction
15122
+  (0.0ms) begin transaction
15123
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15124
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15125
+ Completed 500 Internal Server Error in 0.5ms
15126
+  (0.0ms) rollback transaction
15127
+  (0.0ms) begin transaction
15128
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15129
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15130
+ Completed 500 Internal Server Error in 0.5ms
15131
+  (0.0ms) rollback transaction
15132
+  (0.0ms) begin transaction
15133
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15134
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15135
+ Completed 500 Internal Server Error in 0.5ms
15136
+  (0.0ms) rollback transaction
15137
+  (0.0ms) begin transaction
15138
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15139
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15140
+ Completed 500 Internal Server Error in 0.4ms
15141
+  (0.0ms) rollback transaction
15142
+  (0.0ms) begin transaction
15143
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15144
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15145
+ Completed 500 Internal Server Error in 0.5ms
15146
+  (0.0ms) rollback transaction
15147
+  (0.0ms) begin transaction
15148
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15149
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15150
+ Completed 500 Internal Server Error in 0.4ms
15151
+  (0.0ms) rollback transaction
15152
+  (0.0ms) begin transaction
15153
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15154
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15155
+ Completed 500 Internal Server Error in 0.5ms
15156
+  (0.0ms) rollback transaction
15157
+  (0.0ms) begin transaction
15158
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15159
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15160
+ Completed 500 Internal Server Error in 0.5ms
15161
+  (0.1ms) rollback transaction
15162
+  (0.0ms) begin transaction
15163
+  (0.0ms) rollback transaction
15164
+  (0.0ms) begin transaction
15165
+  (0.0ms) rollback transaction
15166
+ Connecting to database specified by database.yml
15167
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15168
+ Migrating to CreatePhotos (20131102002336)
15169
+  (0.1ms) begin transaction
15170
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15171
+ Fixture Insert (0.2ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:56:29', '2013-11-04 18:56:29')
15172
+  (1.4ms) commit transaction
15173
+  (0.0ms) begin transaction
15174
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15175
+  (0.1ms) rollback transaction
15176
+  (0.0ms) begin transaction
15177
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15178
+  (0.1ms) rollback transaction
15179
+  (0.0ms) begin transaction
15180
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15181
+  (0.0ms) rollback transaction
15182
+  (0.0ms) begin transaction
15183
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15184
+  (0.1ms) rollback transaction
15185
+  (0.0ms) begin transaction
15186
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15187
+  (0.0ms) rollback transaction
15188
+  (0.0ms) begin transaction
15189
+  (0.0ms) rollback transaction
15190
+  (0.0ms) begin transaction
15191
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15192
+  (0.0ms) rollback transaction
15193
+  (0.1ms) begin transaction
15194
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15195
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15196
+ Completed 500 Internal Server Error in 1.3ms
15197
+  (0.1ms) rollback transaction
15198
+  (0.0ms) begin transaction
15199
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15200
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15201
+ Completed 500 Internal Server Error in 0.5ms
15202
+  (0.0ms) rollback transaction
15203
+  (0.0ms) begin transaction
15204
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15205
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15206
+ Completed 500 Internal Server Error in 0.5ms
15207
+  (0.0ms) rollback transaction
15208
+  (0.0ms) begin transaction
15209
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15210
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15211
+ Completed 500 Internal Server Error in 0.5ms
15212
+  (0.0ms) rollback transaction
15213
+  (0.0ms) begin transaction
15214
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15215
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15216
+ Completed 500 Internal Server Error in 0.5ms
15217
+  (0.0ms) rollback transaction
15218
+  (0.0ms) begin transaction
15219
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15220
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15221
+ Completed 500 Internal Server Error in 0.4ms
15222
+  (0.0ms) rollback transaction
15223
+  (0.0ms) begin transaction
15224
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15225
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15226
+ Completed 500 Internal Server Error in 0.5ms
15227
+  (0.0ms) rollback transaction
15228
+  (0.0ms) begin transaction
15229
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15230
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15231
+ Completed 500 Internal Server Error in 0.4ms
15232
+  (0.0ms) rollback transaction
15233
+  (0.0ms) begin transaction
15234
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15235
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15236
+ Completed 500 Internal Server Error in 0.5ms
15237
+  (0.0ms) rollback transaction
15238
+  (0.0ms) begin transaction
15239
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15240
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15241
+ Completed 500 Internal Server Error in 0.5ms
15242
+  (0.0ms) rollback transaction
15243
+  (0.0ms) begin transaction
15244
+  (0.0ms) rollback transaction
15245
+  (0.0ms) begin transaction
15246
+  (0.1ms) rollback transaction
15247
+ Connecting to database specified by database.yml
15248
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15249
+ Migrating to CreatePhotos (20131102002336)
15250
+  (0.1ms) begin transaction
15251
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15252
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:57:07', '2013-11-04 18:57:07')
15253
+  (0.8ms) commit transaction
15254
+  (0.0ms) begin transaction
15255
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15256
+  (0.1ms) rollback transaction
15257
+  (0.0ms) begin transaction
15258
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15259
+  (0.0ms) rollback transaction
15260
+  (0.0ms) begin transaction
15261
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15262
+  (0.0ms) rollback transaction
15263
+  (0.0ms) begin transaction
15264
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15265
+  (0.0ms) rollback transaction
15266
+  (0.0ms) begin transaction
15267
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15268
+  (0.0ms) rollback transaction
15269
+  (0.0ms) begin transaction
15270
+  (0.0ms) rollback transaction
15271
+  (0.0ms) begin transaction
15272
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15273
+  (0.1ms) rollback transaction
15274
+  (0.1ms) begin transaction
15275
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15276
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15277
+ Completed 500 Internal Server Error in 1.3ms
15278
+  (0.1ms) rollback transaction
15279
+  (0.0ms) begin transaction
15280
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15281
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15282
+ Completed 500 Internal Server Error in 0.5ms
15283
+  (0.0ms) rollback transaction
15284
+  (0.0ms) begin transaction
15285
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15286
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15287
+ Completed 500 Internal Server Error in 0.5ms
15288
+  (0.0ms) rollback transaction
15289
+  (0.0ms) begin transaction
15290
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15291
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15292
+ Completed 500 Internal Server Error in 0.5ms
15293
+  (0.0ms) rollback transaction
15294
+  (0.0ms) begin transaction
15295
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15296
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15297
+ Completed 500 Internal Server Error in 0.5ms
15298
+  (0.0ms) rollback transaction
15299
+  (0.0ms) begin transaction
15300
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15301
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15302
+ Completed 500 Internal Server Error in 0.4ms
15303
+  (0.0ms) rollback transaction
15304
+  (0.0ms) begin transaction
15305
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15306
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15307
+ Completed 500 Internal Server Error in 0.5ms
15308
+  (0.0ms) rollback transaction
15309
+  (0.0ms) begin transaction
15310
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15311
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15312
+ Completed 500 Internal Server Error in 0.4ms
15313
+  (0.0ms) rollback transaction
15314
+  (0.0ms) begin transaction
15315
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15316
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15317
+ Completed 500 Internal Server Error in 0.5ms
15318
+  (0.0ms) rollback transaction
15319
+  (0.0ms) begin transaction
15320
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15321
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15322
+ Completed 500 Internal Server Error in 0.5ms
15323
+  (0.0ms) rollback transaction
15324
+  (0.0ms) begin transaction
15325
+  (0.0ms) rollback transaction
15326
+  (0.1ms) begin transaction
15327
+  (0.0ms) rollback transaction
15328
+ Connecting to database specified by database.yml
15329
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15330
+ Migrating to CreatePhotos (20131102002336)
15331
+  (0.1ms) begin transaction
15332
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15333
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 18:59:41', '2013-11-04 18:59:41')
15334
+  (0.8ms) commit transaction
15335
+  (0.0ms) begin transaction
15336
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15337
+  (0.1ms) rollback transaction
15338
+  (0.0ms) begin transaction
15339
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15340
+  (0.0ms) rollback transaction
15341
+  (0.0ms) begin transaction
15342
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15343
+  (0.0ms) rollback transaction
15344
+  (0.0ms) begin transaction
15345
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15346
+  (0.1ms) rollback transaction
15347
+  (0.0ms) begin transaction
15348
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15349
+  (0.1ms) rollback transaction
15350
+  (0.0ms) begin transaction
15351
+  (0.0ms) rollback transaction
15352
+  (0.0ms) begin transaction
15353
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15354
+  (0.0ms) rollback transaction
15355
+  (0.1ms) begin transaction
15356
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15357
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15358
+ Completed 500 Internal Server Error in 1.4ms
15359
+  (0.1ms) rollback transaction
15360
+  (0.0ms) begin transaction
15361
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15362
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15363
+ Completed 500 Internal Server Error in 0.6ms
15364
+  (0.1ms) rollback transaction
15365
+  (0.0ms) begin transaction
15366
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15367
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15368
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15369
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
15370
+  (0.1ms) rollback transaction
15371
+  (0.1ms) begin transaction
15372
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15373
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15374
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15375
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15376
+  (0.1ms) rollback transaction
15377
+  (0.0ms) begin transaction
15378
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15379
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15380
+ Completed 500 Internal Server Error in 0.5ms
15381
+  (0.1ms) rollback transaction
15382
+  (0.0ms) begin transaction
15383
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15384
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15385
+ Completed 500 Internal Server Error in 0.6ms
15386
+  (0.1ms) rollback transaction
15387
+  (0.0ms) begin transaction
15388
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15389
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15390
+ Completed 500 Internal Server Error in 0.5ms
15391
+  (0.1ms) rollback transaction
15392
+  (0.0ms) begin transaction
15393
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15394
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15395
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15396
+ Completed 200 OK in 0.7ms (ActiveRecord: 0.0ms)
15397
+  (0.1ms) rollback transaction
15398
+  (0.0ms) begin transaction
15399
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15400
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15401
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
15402
+  (0.1ms) rollback transaction
15403
+  (0.0ms) begin transaction
15404
+  (0.0ms) rollback transaction
15405
+  (0.1ms) begin transaction
15406
+  (0.1ms) rollback transaction
15407
+ Connecting to database specified by database.yml
15408
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15409
+ Migrating to CreatePhotos (20131102002336)
15410
+  (0.1ms) begin transaction
15411
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15412
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:02:05', '2013-11-04 19:02:05')
15413
+  (0.5ms) commit transaction
15414
+  (0.0ms) begin transaction
15415
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15416
+  (0.1ms) rollback transaction
15417
+  (0.0ms) begin transaction
15418
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15419
+  (0.1ms) rollback transaction
15420
+  (0.0ms) begin transaction
15421
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15422
+  (0.0ms) rollback transaction
15423
+  (0.0ms) begin transaction
15424
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15425
+  (0.1ms) rollback transaction
15426
+  (0.0ms) begin transaction
15427
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15428
+  (0.0ms) rollback transaction
15429
+  (0.0ms) begin transaction
15430
+  (0.0ms) rollback transaction
15431
+  (0.0ms) begin transaction
15432
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15433
+  (0.0ms) rollback transaction
15434
+  (0.1ms) begin transaction
15435
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15436
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15437
+ Completed 500 Internal Server Error in 1.3ms
15438
+  (0.0ms) rollback transaction
15439
+  (0.0ms) begin transaction
15440
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15441
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15442
+ Completed 500 Internal Server Error in 0.5ms
15443
+  (0.0ms) rollback transaction
15444
+  (0.0ms) begin transaction
15445
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15446
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15447
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15448
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15449
+  (0.0ms) rollback transaction
15450
+  (0.0ms) begin transaction
15451
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15452
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15453
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15454
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15455
+  (0.0ms) rollback transaction
15456
+  (0.0ms) begin transaction
15457
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15458
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15459
+ Completed 500 Internal Server Error in 0.4ms
15460
+  (0.0ms) rollback transaction
15461
+  (0.0ms) begin transaction
15462
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15463
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15464
+ Completed 500 Internal Server Error in 0.5ms
15465
+  (0.0ms) rollback transaction
15466
+  (0.0ms) begin transaction
15467
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15468
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15469
+ Completed 500 Internal Server Error in 0.4ms
15470
+  (0.0ms) rollback transaction
15471
+  (0.0ms) begin transaction
15472
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15473
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15474
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15475
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15476
+  (0.0ms) rollback transaction
15477
+  (0.0ms) begin transaction
15478
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15479
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15480
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
15481
+  (0.0ms) rollback transaction
15482
+  (0.0ms) begin transaction
15483
+  (0.0ms) rollback transaction
15484
+  (0.0ms) begin transaction
15485
+  (0.1ms) rollback transaction
15486
+ Connecting to database specified by database.yml
15487
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15488
+ Migrating to CreatePhotos (20131102002336)
15489
+  (0.1ms) begin transaction
15490
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15491
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:02:42', '2013-11-04 19:02:42')
15492
+  (0.8ms) commit transaction
15493
+  (0.0ms) begin transaction
15494
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15495
+  (0.1ms) rollback transaction
15496
+  (0.0ms) begin transaction
15497
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15498
+  (0.0ms) rollback transaction
15499
+  (0.0ms) begin transaction
15500
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15501
+  (0.0ms) rollback transaction
15502
+  (0.0ms) begin transaction
15503
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15504
+  (0.0ms) rollback transaction
15505
+  (0.0ms) begin transaction
15506
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15507
+  (0.0ms) rollback transaction
15508
+  (0.0ms) begin transaction
15509
+  (0.0ms) rollback transaction
15510
+  (0.0ms) begin transaction
15511
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15512
+  (0.0ms) rollback transaction
15513
+  (0.1ms) begin transaction
15514
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15515
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15516
+ Completed 500 Internal Server Error in 1.3ms
15517
+  (0.0ms) rollback transaction
15518
+  (0.0ms) begin transaction
15519
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15520
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15521
+ Completed 500 Internal Server Error in 0.5ms
15522
+  (0.0ms) rollback transaction
15523
+  (0.0ms) begin transaction
15524
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15525
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15526
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15527
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15528
+  (0.0ms) rollback transaction
15529
+  (0.0ms) begin transaction
15530
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15531
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15532
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15533
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15534
+  (0.0ms) rollback transaction
15535
+  (0.0ms) begin transaction
15536
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15537
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15538
+ Completed 500 Internal Server Error in 0.4ms
15539
+  (0.0ms) rollback transaction
15540
+  (0.0ms) begin transaction
15541
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15542
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15543
+ Completed 500 Internal Server Error in 0.5ms
15544
+  (0.0ms) rollback transaction
15545
+  (0.0ms) begin transaction
15546
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15547
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15548
+ Completed 500 Internal Server Error in 0.4ms
15549
+  (0.0ms) rollback transaction
15550
+  (0.0ms) begin transaction
15551
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15552
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15553
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15554
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15555
+  (0.0ms) rollback transaction
15556
+  (0.0ms) begin transaction
15557
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15558
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15559
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
15560
+  (0.0ms) rollback transaction
15561
+  (0.0ms) begin transaction
15562
+  (0.0ms) rollback transaction
15563
+  (0.0ms) begin transaction
15564
+  (0.1ms) rollback transaction
15565
+ Connecting to database specified by database.yml
15566
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15567
+ Migrating to CreatePhotos (20131102002336)
15568
+  (0.1ms) begin transaction
15569
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15570
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:03:00', '2013-11-04 19:03:00')
15571
+  (0.8ms) commit transaction
15572
+  (0.0ms) begin transaction
15573
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15574
+  (0.1ms) rollback transaction
15575
+  (0.0ms) begin transaction
15576
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15577
+  (0.0ms) rollback transaction
15578
+  (0.0ms) begin transaction
15579
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15580
+  (0.0ms) rollback transaction
15581
+  (0.0ms) begin transaction
15582
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15583
+  (0.0ms) rollback transaction
15584
+  (0.0ms) begin transaction
15585
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15586
+  (0.0ms) rollback transaction
15587
+  (0.0ms) begin transaction
15588
+  (0.0ms) rollback transaction
15589
+  (0.0ms) begin transaction
15590
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15591
+  (0.0ms) rollback transaction
15592
+  (0.1ms) begin transaction
15593
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15594
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15595
+ Completed 500 Internal Server Error in 1.4ms
15596
+  (0.1ms) rollback transaction
15597
+  (0.0ms) begin transaction
15598
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15599
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15600
+ Completed 500 Internal Server Error in 0.6ms
15601
+  (0.0ms) rollback transaction
15602
+  (0.0ms) begin transaction
15603
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15604
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15605
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15606
+ Completed 200 OK in 0.7ms (ActiveRecord: 0.0ms)
15607
+  (0.0ms) rollback transaction
15608
+  (0.0ms) begin transaction
15609
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15610
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15611
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15612
+ Completed 200 OK in 0.7ms (ActiveRecord: 0.0ms)
15613
+  (0.1ms) rollback transaction
15614
+  (0.0ms) begin transaction
15615
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15616
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15617
+ Completed 500 Internal Server Error in 0.5ms
15618
+  (0.1ms) rollback transaction
15619
+  (0.0ms) begin transaction
15620
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15621
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15622
+ Completed 500 Internal Server Error in 0.5ms
15623
+  (0.1ms) rollback transaction
15624
+  (0.0ms) begin transaction
15625
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15626
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15627
+ Completed 500 Internal Server Error in 0.4ms
15628
+  (0.0ms) rollback transaction
15629
+  (0.0ms) begin transaction
15630
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15631
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15632
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15633
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15634
+  (0.0ms) rollback transaction
15635
+  (0.0ms) begin transaction
15636
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15637
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15638
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
15639
+  (0.0ms) rollback transaction
15640
+  (0.0ms) begin transaction
15641
+  (0.0ms) rollback transaction
15642
+  (0.0ms) begin transaction
15643
+  (0.1ms) rollback transaction
15644
+ Connecting to database specified by database.yml
15645
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15646
+ Migrating to CreatePhotos (20131102002336)
15647
+  (0.1ms) begin transaction
15648
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15649
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:03:10', '2013-11-04 19:03:10')
15650
+  (0.8ms) commit transaction
15651
+  (0.0ms) begin transaction
15652
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15653
+  (0.1ms) rollback transaction
15654
+  (0.0ms) begin transaction
15655
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15656
+  (0.0ms) rollback transaction
15657
+  (0.0ms) begin transaction
15658
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15659
+  (0.0ms) rollback transaction
15660
+  (0.0ms) begin transaction
15661
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15662
+  (0.1ms) rollback transaction
15663
+  (0.0ms) begin transaction
15664
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15665
+  (0.0ms) rollback transaction
15666
+  (0.0ms) begin transaction
15667
+  (0.0ms) rollback transaction
15668
+  (0.0ms) begin transaction
15669
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15670
+  (0.1ms) rollback transaction
15671
+  (0.1ms) begin transaction
15672
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15673
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
15674
+ Completed 500 Internal Server Error in 1.3ms
15675
+  (0.0ms) rollback transaction
15676
+  (0.0ms) begin transaction
15677
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15678
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
15679
+ Completed 500 Internal Server Error in 0.5ms
15680
+  (0.0ms) rollback transaction
15681
+  (0.0ms) begin transaction
15682
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15683
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15684
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15685
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15686
+  (0.0ms) rollback transaction
15687
+  (0.0ms) begin transaction
15688
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15689
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15690
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15691
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
15692
+  (0.0ms) rollback transaction
15693
+  (0.0ms) begin transaction
15694
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15695
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15696
+ Completed 500 Internal Server Error in 0.4ms
15697
+  (0.0ms) rollback transaction
15698
+  (0.0ms) begin transaction
15699
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15700
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15701
+ Completed 500 Internal Server Error in 0.5ms
15702
+  (0.0ms) rollback transaction
15703
+  (0.0ms) begin transaction
15704
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15705
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15706
+ Completed 500 Internal Server Error in 0.4ms
15707
+  (0.0ms) rollback transaction
15708
+  (0.0ms) begin transaction
15709
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15710
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15711
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15712
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
15713
+  (0.0ms) rollback transaction
15714
+  (0.0ms) begin transaction
15715
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15716
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15717
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
15718
+  (0.0ms) rollback transaction
15719
+  (0.0ms) begin transaction
15720
+  (0.0ms) rollback transaction
15721
+  (0.0ms) begin transaction
15722
+  (0.1ms) rollback transaction
15723
+ Connecting to database specified by database.yml
15724
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15725
+ Migrating to CreatePhotos (20131102002336)
15726
+  (0.1ms) begin transaction
15727
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15728
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:05:34', '2013-11-04 19:05:34')
15729
+  (0.8ms) commit transaction
15730
+  (0.0ms) begin transaction
15731
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15732
+  (0.1ms) rollback transaction
15733
+  (0.0ms) begin transaction
15734
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15735
+  (0.0ms) rollback transaction
15736
+  (0.0ms) begin transaction
15737
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15738
+  (0.0ms) rollback transaction
15739
+  (0.0ms) begin transaction
15740
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15741
+  (0.0ms) rollback transaction
15742
+  (0.0ms) begin transaction
15743
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15744
+  (0.0ms) rollback transaction
15745
+  (0.0ms) begin transaction
15746
+  (0.0ms) rollback transaction
15747
+  (0.0ms) begin transaction
15748
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15749
+  (0.0ms) rollback transaction
15750
+  (0.1ms) begin transaction
15751
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15752
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file"}
15753
+ Completed 500 Internal Server Error in 1.4ms
15754
+  (0.1ms) rollback transaction
15755
+  (0.0ms) begin transaction
15756
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15757
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file"}
15758
+ Completed 500 Internal Server Error in 0.6ms
15759
+  (0.1ms) rollback transaction
15760
+  (0.0ms) begin transaction
15761
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15762
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15763
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15764
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15765
+  (0.1ms) rollback transaction
15766
+  (0.0ms) begin transaction
15767
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15768
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15769
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15770
+ Completed 200 OK in 0.7ms (ActiveRecord: 0.0ms)
15771
+  (0.1ms) rollback transaction
15772
+  (0.0ms) begin transaction
15773
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15774
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15775
+ Completed 500 Internal Server Error in 0.4ms
15776
+  (0.0ms) rollback transaction
15777
+  (0.0ms) begin transaction
15778
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15779
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15780
+ Completed 500 Internal Server Error in 0.5ms
15781
+  (0.0ms) rollback transaction
15782
+  (0.0ms) begin transaction
15783
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15784
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15785
+ Completed 500 Internal Server Error in 0.5ms
15786
+  (0.1ms) rollback transaction
15787
+  (0.0ms) begin transaction
15788
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15789
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15790
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15791
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15792
+  (0.1ms) rollback transaction
15793
+  (0.0ms) begin transaction
15794
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15795
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15796
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
15797
+  (0.0ms) rollback transaction
15798
+  (0.0ms) begin transaction
15799
+  (0.0ms) rollback transaction
15800
+  (0.1ms) begin transaction
15801
+  (0.1ms) rollback transaction
15802
+ Connecting to database specified by database.yml
15803
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15804
+ Migrating to CreatePhotos (20131102002336)
15805
+  (0.1ms) begin transaction
15806
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15807
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:05:40', '2013-11-04 19:05:40')
15808
+  (0.8ms) commit transaction
15809
+  (0.0ms) begin transaction
15810
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15811
+  (0.1ms) rollback transaction
15812
+  (0.0ms) begin transaction
15813
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15814
+  (0.1ms) rollback transaction
15815
+  (0.0ms) begin transaction
15816
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15817
+  (0.1ms) rollback transaction
15818
+  (0.0ms) begin transaction
15819
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15820
+  (0.0ms) rollback transaction
15821
+  (0.0ms) begin transaction
15822
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15823
+  (0.0ms) rollback transaction
15824
+  (0.0ms) begin transaction
15825
+  (0.0ms) rollback transaction
15826
+  (0.0ms) begin transaction
15827
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15828
+  (0.1ms) rollback transaction
15829
+  (0.1ms) begin transaction
15830
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15831
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file"}
15832
+ Completed 500 Internal Server Error in 1.3ms
15833
+  (0.1ms) rollback transaction
15834
+  (0.0ms) begin transaction
15835
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15836
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file"}
15837
+ Completed 500 Internal Server Error in 0.5ms
15838
+  (0.0ms) rollback transaction
15839
+  (0.0ms) begin transaction
15840
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15841
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15842
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15843
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15844
+  (0.0ms) rollback transaction
15845
+  (0.0ms) begin transaction
15846
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15847
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15848
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15849
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15850
+  (0.0ms) rollback transaction
15851
+  (0.0ms) begin transaction
15852
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15853
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15854
+ Completed 500 Internal Server Error in 0.4ms
15855
+  (0.1ms) rollback transaction
15856
+  (0.0ms) begin transaction
15857
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15858
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15859
+ Completed 500 Internal Server Error in 0.5ms
15860
+  (0.0ms) rollback transaction
15861
+  (0.0ms) begin transaction
15862
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15863
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15864
+ Completed 500 Internal Server Error in 0.4ms
15865
+  (0.0ms) rollback transaction
15866
+  (0.0ms) begin transaction
15867
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15868
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15869
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15870
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
15871
+  (0.0ms) rollback transaction
15872
+  (0.0ms) begin transaction
15873
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15874
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15875
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
15876
+  (0.0ms) rollback transaction
15877
+  (0.0ms) begin transaction
15878
+  (0.0ms) rollback transaction
15879
+  (0.0ms) begin transaction
15880
+  (0.1ms) rollback transaction
15881
+ Connecting to database specified by database.yml
15882
+  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15883
+ Migrating to CreatePhotos (20131102002336)
15884
+  (0.1ms) begin transaction
15885
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15886
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:06:25', '2013-11-04 19:06:25')
15887
+  (0.5ms) commit transaction
15888
+  (0.0ms) begin transaction
15889
+ Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15890
+  (0.1ms) rollback transaction
15891
+  (0.0ms) begin transaction
15892
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15893
+  (0.0ms) rollback transaction
15894
+  (0.0ms) begin transaction
15895
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15896
+  (0.0ms) rollback transaction
15897
+  (0.0ms) begin transaction
15898
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15899
+  (0.0ms) rollback transaction
15900
+  (0.0ms) begin transaction
15901
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15902
+  (0.1ms) rollback transaction
15903
+  (0.0ms) begin transaction
15904
+  (0.0ms) rollback transaction
15905
+  (0.0ms) begin transaction
15906
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15907
+  (0.0ms) rollback transaction
15908
+  (0.1ms) begin transaction
15909
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15910
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15911
+ Completed 500 Internal Server Error in 2.3ms
15912
+  (0.1ms) rollback transaction
15913
+  (0.0ms) begin transaction
15914
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15915
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15916
+ Completed 500 Internal Server Error in 1.0ms
15917
+  (0.0ms) rollback transaction
15918
+  (0.0ms) begin transaction
15919
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15920
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15921
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15922
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15923
+  (0.0ms) rollback transaction
15924
+  (0.0ms) begin transaction
15925
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15926
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15927
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15928
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15929
+  (0.0ms) rollback transaction
15930
+  (0.0ms) begin transaction
15931
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15932
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
15933
+ Completed 500 Internal Server Error in 0.4ms
15934
+  (0.0ms) rollback transaction
15935
+  (0.0ms) begin transaction
15936
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15937
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
15938
+ Completed 500 Internal Server Error in 0.5ms
15939
+  (0.0ms) rollback transaction
15940
+  (0.0ms) begin transaction
15941
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15942
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
15943
+ Completed 500 Internal Server Error in 0.4ms
15944
+  (0.0ms) rollback transaction
15945
+  (0.0ms) begin transaction
15946
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15947
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15948
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15949
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15950
+  (0.0ms) rollback transaction
15951
+  (0.0ms) begin transaction
15952
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15953
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15954
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
15955
+  (0.0ms) rollback transaction
15956
+  (0.0ms) begin transaction
15957
+  (0.0ms) rollback transaction
15958
+  (0.0ms) begin transaction
15959
+  (0.1ms) rollback transaction
15960
+ Connecting to database specified by database.yml
15961
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15962
+ Migrating to CreatePhotos (20131102002336)
15963
+  (0.1ms) begin transaction
15964
+ Fixture Delete (0.3ms) DELETE FROM "photos"
15965
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:07:22', '2013-11-04 19:07:22')
15966
+  (0.5ms) commit transaction
15967
+  (0.0ms) begin transaction
15968
+ Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15969
+  (0.1ms) rollback transaction
15970
+  (0.0ms) begin transaction
15971
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15972
+  (0.0ms) rollback transaction
15973
+  (0.0ms) begin transaction
15974
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15975
+  (0.0ms) rollback transaction
15976
+  (0.0ms) begin transaction
15977
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15978
+  (0.1ms) rollback transaction
15979
+  (0.0ms) begin transaction
15980
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15981
+  (0.1ms) rollback transaction
15982
+  (0.0ms) begin transaction
15983
+  (0.0ms) rollback transaction
15984
+  (0.0ms) begin transaction
15985
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
15986
+  (0.0ms) rollback transaction
15987
+  (0.1ms) begin transaction
15988
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15989
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15990
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15991
+ Completed 200 OK in 1.4ms (ActiveRecord: 0.0ms)
15992
+  (0.0ms) rollback transaction
15993
+  (0.0ms) begin transaction
15994
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
15995
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
15996
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
15997
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
15998
+  (0.0ms) rollback transaction
15999
+  (0.0ms) begin transaction
16000
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16001
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16002
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16003
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16004
+  (0.0ms) rollback transaction
16005
+  (0.0ms) begin transaction
16006
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16007
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16008
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16009
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16010
+  (0.0ms) rollback transaction
16011
+  (0.0ms) begin transaction
16012
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16013
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16014
+ Completed 500 Internal Server Error in 0.4ms
16015
+  (0.0ms) rollback transaction
16016
+  (0.0ms) begin transaction
16017
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16018
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16019
+ Completed 500 Internal Server Error in 0.5ms
16020
+  (0.0ms) rollback transaction
16021
+  (0.0ms) begin transaction
16022
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16023
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16024
+ Completed 500 Internal Server Error in 0.4ms
16025
+  (0.0ms) rollback transaction
16026
+  (0.0ms) begin transaction
16027
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16028
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16029
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16030
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16031
+  (0.1ms) rollback transaction
16032
+  (0.0ms) begin transaction
16033
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16034
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16035
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16036
+  (0.0ms) rollback transaction
16037
+  (0.0ms) begin transaction
16038
+  (0.0ms) rollback transaction
16039
+  (0.0ms) begin transaction
16040
+  (0.1ms) rollback transaction
16041
+ Connecting to database specified by database.yml
16042
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16043
+ Migrating to CreatePhotos (20131102002336)
16044
+  (0.1ms) begin transaction
16045
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16046
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:08:11', '2013-11-04 19:08:11')
16047
+  (0.5ms) commit transaction
16048
+  (0.0ms) begin transaction
16049
+ Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16050
+  (0.1ms) rollback transaction
16051
+  (0.0ms) begin transaction
16052
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16053
+  (0.1ms) rollback transaction
16054
+  (0.0ms) begin transaction
16055
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16056
+  (0.1ms) rollback transaction
16057
+  (0.0ms) begin transaction
16058
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16059
+  (0.0ms) rollback transaction
16060
+  (0.0ms) begin transaction
16061
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16062
+  (0.0ms) rollback transaction
16063
+  (0.0ms) begin transaction
16064
+  (0.0ms) rollback transaction
16065
+  (0.0ms) begin transaction
16066
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16067
+  (0.1ms) rollback transaction
16068
+  (0.1ms) begin transaction
16069
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16070
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16071
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16072
+ Completed 200 OK in 1.4ms (ActiveRecord: 0.0ms)
16073
+  (0.0ms) rollback transaction
16074
+  (0.0ms) begin transaction
16075
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16076
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16077
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16078
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16079
+  (0.0ms) rollback transaction
16080
+  (0.0ms) begin transaction
16081
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16082
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16083
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16084
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16085
+  (0.0ms) rollback transaction
16086
+  (0.0ms) begin transaction
16087
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16088
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16089
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16090
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16091
+  (0.0ms) rollback transaction
16092
+  (0.0ms) begin transaction
16093
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16094
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16095
+ Completed 500 Internal Server Error in 0.4ms
16096
+  (0.0ms) rollback transaction
16097
+  (0.0ms) begin transaction
16098
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16099
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16100
+ Completed 500 Internal Server Error in 0.5ms
16101
+  (0.0ms) rollback transaction
16102
+  (0.0ms) begin transaction
16103
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16104
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16105
+ Completed 500 Internal Server Error in 0.4ms
16106
+  (0.0ms) rollback transaction
16107
+  (0.0ms) begin transaction
16108
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16109
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16110
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16111
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16112
+  (0.0ms) rollback transaction
16113
+  (0.0ms) begin transaction
16114
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16115
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16116
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16117
+  (0.0ms) rollback transaction
16118
+  (0.0ms) begin transaction
16119
+  (0.0ms) rollback transaction
16120
+  (0.0ms) begin transaction
16121
+  (0.1ms) rollback transaction
16122
+ Connecting to database specified by database.yml
16123
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16124
+ Migrating to CreatePhotos (20131102002336)
16125
+  (0.1ms) begin transaction
16126
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16127
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:08:30', '2013-11-04 19:08:30')
16128
+  (0.5ms) commit transaction
16129
+  (0.0ms) begin transaction
16130
+ Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16131
+  (0.1ms) rollback transaction
16132
+  (0.0ms) begin transaction
16133
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16134
+  (0.0ms) rollback transaction
16135
+  (0.0ms) begin transaction
16136
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16137
+  (0.1ms) rollback transaction
16138
+  (0.0ms) begin transaction
16139
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16140
+  (0.0ms) rollback transaction
16141
+  (0.0ms) begin transaction
16142
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16143
+  (0.1ms) rollback transaction
16144
+  (0.0ms) begin transaction
16145
+  (0.0ms) rollback transaction
16146
+  (0.0ms) begin transaction
16147
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16148
+  (0.1ms) rollback transaction
16149
+  (0.1ms) begin transaction
16150
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16151
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16152
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16153
+ Completed 200 OK in 1.4ms (ActiveRecord: 0.0ms)
16154
+  (0.1ms) rollback transaction
16155
+  (0.0ms) begin transaction
16156
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16157
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16158
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16159
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16160
+  (0.0ms) rollback transaction
16161
+  (0.0ms) begin transaction
16162
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16163
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16164
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16165
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16166
+  (0.0ms) rollback transaction
16167
+  (0.0ms) begin transaction
16168
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16169
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16170
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16171
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16172
+  (0.0ms) rollback transaction
16173
+  (0.0ms) begin transaction
16174
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16175
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16176
+ Completed 500 Internal Server Error in 0.4ms
16177
+  (0.0ms) rollback transaction
16178
+  (0.0ms) begin transaction
16179
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16180
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16181
+ Completed 500 Internal Server Error in 0.5ms
16182
+  (0.0ms) rollback transaction
16183
+  (0.1ms) begin transaction
16184
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16185
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16186
+ Completed 500 Internal Server Error in 0.4ms
16187
+  (0.0ms) rollback transaction
16188
+  (0.0ms) begin transaction
16189
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16190
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16191
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16192
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16193
+  (0.0ms) rollback transaction
16194
+  (0.0ms) begin transaction
16195
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16196
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16197
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16198
+  (0.0ms) rollback transaction
16199
+  (0.0ms) begin transaction
16200
+  (0.0ms) rollback transaction
16201
+  (0.0ms) begin transaction
16202
+  (0.1ms) rollback transaction
16203
+ Connecting to database specified by database.yml
16204
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16205
+ Migrating to CreatePhotos (20131102002336)
16206
+  (0.1ms) begin transaction
16207
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16208
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:08:48', '2013-11-04 19:08:48')
16209
+  (0.8ms) commit transaction
16210
+  (0.0ms) begin transaction
16211
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16212
+  (0.1ms) rollback transaction
16213
+  (0.0ms) begin transaction
16214
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16215
+  (0.0ms) rollback transaction
16216
+  (0.0ms) begin transaction
16217
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16218
+  (0.0ms) rollback transaction
16219
+  (0.0ms) begin transaction
16220
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16221
+  (0.0ms) rollback transaction
16222
+  (0.0ms) begin transaction
16223
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16224
+  (0.1ms) rollback transaction
16225
+  (0.0ms) begin transaction
16226
+  (0.0ms) rollback transaction
16227
+  (0.0ms) begin transaction
16228
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16229
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:08:48 -0500
16230
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
16231
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
16232
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16233
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v.png[0]'
16234
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v.png[0]'
16235
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v.png[0]'
16236
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v.png[0]'
16237
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v20131104-8678-sejgy5'
16238
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8678-2e7s2v20131104-8678-sejgy5'
16239
+  (0.1ms) SAVEPOINT active_record_1
16240
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:08:48.681721', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:08:48.865920' WHERE "photos"."id" = 1
16241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16242
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.2ms)
16243
+ Completed 200 OK in 196.3ms (ActiveRecord: 0.5ms)
16244
+  (0.4ms) rollback transaction
16245
+  (0.1ms) begin transaction
16246
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16247
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16248
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16249
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
16250
+  (0.0ms) rollback transaction
16251
+  (0.0ms) begin transaction
16252
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16253
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16254
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16255
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16256
+  (0.0ms) rollback transaction
16257
+  (0.0ms) begin transaction
16258
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16259
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16260
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16261
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16262
+  (0.0ms) rollback transaction
16263
+  (0.0ms) begin transaction
16264
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16265
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16266
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16267
+ Completed 200 OK in 0.8ms (ActiveRecord: 0.0ms)
16268
+  (0.1ms) rollback transaction
16269
+  (0.0ms) begin transaction
16270
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16271
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16272
+ Completed 500 Internal Server Error in 0.4ms
16273
+  (0.0ms) rollback transaction
16274
+  (0.0ms) begin transaction
16275
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16276
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16277
+ Completed 500 Internal Server Error in 0.5ms
16278
+  (0.0ms) rollback transaction
16279
+  (0.0ms) begin transaction
16280
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16281
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16282
+ Completed 500 Internal Server Error in 0.4ms
16283
+  (0.0ms) rollback transaction
16284
+  (0.0ms) begin transaction
16285
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16286
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16287
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16288
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16289
+  (0.0ms) rollback transaction
16290
+  (0.0ms) begin transaction
16291
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16292
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16293
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16294
+  (0.0ms) rollback transaction
16295
+  (0.0ms) begin transaction
16296
+  (0.0ms) rollback transaction
16297
+  (0.0ms) begin transaction
16298
+  (0.0ms) rollback transaction
16299
+ Connecting to database specified by database.yml
16300
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16301
+ Migrating to CreatePhotos (20131102002336)
16302
+  (0.1ms) begin transaction
16303
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16304
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:08:53', '2013-11-04 19:08:53')
16305
+  (0.8ms) commit transaction
16306
+  (0.0ms) begin transaction
16307
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16308
+  (0.1ms) rollback transaction
16309
+  (0.0ms) begin transaction
16310
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16311
+  (0.0ms) rollback transaction
16312
+  (0.0ms) begin transaction
16313
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16314
+  (0.0ms) rollback transaction
16315
+  (0.0ms) begin transaction
16316
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16317
+  (0.1ms) rollback transaction
16318
+  (0.0ms) begin transaction
16319
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16320
+  (0.1ms) rollback transaction
16321
+  (0.0ms) begin transaction
16322
+  (0.0ms) rollback transaction
16323
+  (0.0ms) begin transaction
16324
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16325
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:08:53 -0500
16326
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
16327
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
16328
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16329
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic8.png[0]'
16330
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic8.png[0]'
16331
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic8.png[0]'
16332
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic8.png[0]'
16333
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic8.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic820131104-8738-d98ou'
16334
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8738-18a0ic820131104-8738-d98ou'
16335
+  (0.1ms) SAVEPOINT active_record_1
16336
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:08:53.723155', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:08:53.833551' WHERE "photos"."id" = 1
16337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16338
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.1ms)
16339
+ Completed 200 OK in 121.6ms (ActiveRecord: 0.5ms)
16340
+  (0.4ms) rollback transaction
16341
+  (0.1ms) begin transaction
16342
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16343
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16344
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16345
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
16346
+  (0.0ms) rollback transaction
16347
+  (0.0ms) begin transaction
16348
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16349
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16350
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16351
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16352
+  (0.0ms) rollback transaction
16353
+  (0.0ms) begin transaction
16354
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16355
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16356
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16357
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16358
+  (0.0ms) rollback transaction
16359
+  (0.0ms) begin transaction
16360
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16361
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16362
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16363
+ Completed 200 OK in 0.8ms (ActiveRecord: 0.0ms)
16364
+  (0.1ms) rollback transaction
16365
+  (0.0ms) begin transaction
16366
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16367
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16368
+ Completed 500 Internal Server Error in 0.4ms
16369
+  (0.0ms) rollback transaction
16370
+  (0.0ms) begin transaction
16371
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16372
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16373
+ Completed 500 Internal Server Error in 0.5ms
16374
+  (0.0ms) rollback transaction
16375
+  (0.0ms) begin transaction
16376
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16377
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16378
+ Completed 500 Internal Server Error in 0.4ms
16379
+  (0.0ms) rollback transaction
16380
+  (0.0ms) begin transaction
16381
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16382
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16383
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16384
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16385
+  (0.0ms) rollback transaction
16386
+  (0.0ms) begin transaction
16387
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16388
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16389
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16390
+  (0.0ms) rollback transaction
16391
+  (0.0ms) begin transaction
16392
+  (0.0ms) rollback transaction
16393
+  (0.0ms) begin transaction
16394
+  (0.0ms) rollback transaction
16395
+ Connecting to database specified by database.yml
16396
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16397
+ Migrating to CreatePhotos (20131102002336)
16398
+  (0.1ms) begin transaction
16399
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16400
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:09:04', '2013-11-04 19:09:04')
16401
+  (0.8ms) commit transaction
16402
+  (0.0ms) begin transaction
16403
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16404
+  (0.1ms) rollback transaction
16405
+  (0.0ms) begin transaction
16406
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16407
+  (0.0ms) rollback transaction
16408
+  (0.0ms) begin transaction
16409
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16410
+  (0.0ms) rollback transaction
16411
+  (0.0ms) begin transaction
16412
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16413
+  (0.0ms) rollback transaction
16414
+  (0.0ms) begin transaction
16415
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16416
+  (0.0ms) rollback transaction
16417
+  (0.0ms) begin transaction
16418
+  (0.0ms) rollback transaction
16419
+  (0.0ms) begin transaction
16420
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16421
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:09:04 -0500
16422
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
16423
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
16424
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16425
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w.png[0]'
16426
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w.png[0]'
16427
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w.png[0]'
16428
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w.png[0]'
16429
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w20131104-8801-19muocc'
16430
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8801-1un2z1w20131104-8801-19muocc'
16431
+  (0.1ms) SAVEPOINT active_record_1
16432
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:09:04.826482', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:09:04.935945' WHERE "photos"."id" = 1
16433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16434
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.2ms)
16435
+ Completed 200 OK in 120.1ms (ActiveRecord: 0.6ms)
16436
+  (0.4ms) rollback transaction
16437
+  (0.1ms) begin transaction
16438
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16439
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16440
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16441
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
16442
+  (0.0ms) rollback transaction
16443
+  (0.0ms) begin transaction
16444
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16445
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16446
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16447
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16448
+  (0.0ms) rollback transaction
16449
+  (0.0ms) begin transaction
16450
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16451
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16452
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16453
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16454
+  (0.1ms) rollback transaction
16455
+  (0.0ms) begin transaction
16456
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16457
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16458
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16459
+ Completed 200 OK in 0.8ms (ActiveRecord: 0.0ms)
16460
+  (0.1ms) rollback transaction
16461
+  (0.0ms) begin transaction
16462
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16463
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16464
+ Completed 500 Internal Server Error in 0.4ms
16465
+  (0.0ms) rollback transaction
16466
+  (0.0ms) begin transaction
16467
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16468
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16469
+ Completed 500 Internal Server Error in 0.5ms
16470
+  (0.0ms) rollback transaction
16471
+  (0.0ms) begin transaction
16472
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16473
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16474
+ Completed 500 Internal Server Error in 0.4ms
16475
+  (0.0ms) rollback transaction
16476
+  (0.0ms) begin transaction
16477
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16478
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16479
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16480
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16481
+  (0.0ms) rollback transaction
16482
+  (0.0ms) begin transaction
16483
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16484
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16485
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16486
+  (0.0ms) rollback transaction
16487
+  (0.0ms) begin transaction
16488
+  (0.0ms) rollback transaction
16489
+  (0.0ms) begin transaction
16490
+  (0.0ms) rollback transaction
16491
+ Connecting to database specified by database.yml
16492
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16493
+ Migrating to CreatePhotos (20131102002336)
16494
+  (0.1ms) begin transaction
16495
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16496
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:09:57', '2013-11-04 19:09:57')
16497
+  (0.8ms) commit transaction
16498
+  (0.0ms) begin transaction
16499
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16500
+  (0.1ms) rollback transaction
16501
+  (0.0ms) begin transaction
16502
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16503
+  (0.1ms) rollback transaction
16504
+  (0.0ms) begin transaction
16505
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16506
+  (0.1ms) rollback transaction
16507
+  (0.0ms) begin transaction
16508
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16509
+  (0.0ms) rollback transaction
16510
+  (0.0ms) begin transaction
16511
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16512
+  (0.0ms) rollback transaction
16513
+  (0.0ms) begin transaction
16514
+  (0.0ms) rollback transaction
16515
+  (0.0ms) begin transaction
16516
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16517
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:09:57 -0500
16518
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
16519
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
16520
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16521
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq.png[0]'
16522
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq.png[0]'
16523
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq.png[0]'
16524
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq.png[0]'
16525
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq20131104-8937-1wt1hdo'
16526
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-8937-f06mbq20131104-8937-1wt1hdo'
16527
+  (0.2ms) SAVEPOINT active_record_1
16528
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:09:57.471629', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:09:57.580525' WHERE "photos"."id" = 1
16529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16530
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.1ms)
16531
+ Completed 200 OK in 119.3ms (ActiveRecord: 0.6ms)
16532
+  (0.4ms) rollback transaction
16533
+  (0.1ms) begin transaction
16534
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16535
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16536
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16537
+ Completed 200 OK in 1.0ms (ActiveRecord: 0.0ms)
16538
+  (0.0ms) rollback transaction
16539
+  (0.0ms) begin transaction
16540
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16541
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16542
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16543
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16544
+  (0.0ms) rollback transaction
16545
+  (0.0ms) begin transaction
16546
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16547
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16548
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16549
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16550
+  (0.0ms) rollback transaction
16551
+  (0.0ms) begin transaction
16552
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16553
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16554
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16555
+ Completed 200 OK in 0.8ms (ActiveRecord: 0.0ms)
16556
+  (0.1ms) rollback transaction
16557
+  (0.0ms) begin transaction
16558
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16559
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16560
+ Completed 500 Internal Server Error in 0.4ms
16561
+  (0.0ms) rollback transaction
16562
+  (0.0ms) begin transaction
16563
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16564
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16565
+ Completed 500 Internal Server Error in 0.4ms
16566
+  (0.0ms) rollback transaction
16567
+  (0.0ms) begin transaction
16568
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16569
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16570
+ Completed 500 Internal Server Error in 0.4ms
16571
+  (0.0ms) rollback transaction
16572
+  (0.0ms) begin transaction
16573
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16574
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16575
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16576
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16577
+  (0.0ms) rollback transaction
16578
+  (0.0ms) begin transaction
16579
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16580
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16581
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16582
+  (0.0ms) rollback transaction
16583
+  (0.0ms) begin transaction
16584
+  (0.0ms) rollback transaction
16585
+  (0.0ms) begin transaction
16586
+  (0.0ms) rollback transaction
16587
+ Connecting to database specified by database.yml
16588
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16589
+ Migrating to CreatePhotos (20131102002336)
16590
+  (0.1ms) begin transaction
16591
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16592
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:15:48', '2013-11-04 19:15:48')
16593
+  (0.8ms) commit transaction
16594
+  (0.0ms) begin transaction
16595
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16596
+  (0.1ms) rollback transaction
16597
+  (0.0ms) begin transaction
16598
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16599
+  (0.0ms) rollback transaction
16600
+  (0.0ms) begin transaction
16601
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16602
+  (0.0ms) rollback transaction
16603
+  (0.0ms) begin transaction
16604
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16605
+  (0.0ms) rollback transaction
16606
+  (0.0ms) begin transaction
16607
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16608
+  (0.0ms) rollback transaction
16609
+  (0.0ms) begin transaction
16610
+  (0.0ms) rollback transaction
16611
+  (0.0ms) begin transaction
16612
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16613
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:15:49 -0500
16614
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
16615
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
16616
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16617
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj.png[0]'
16618
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj.png[0]'
16619
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj.png[0]'
16620
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj.png[0]'
16621
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj20131104-11981-1bzhg8m'
16622
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-11981-4cpntj20131104-11981-1bzhg8m'
16623
+  (0.1ms) SAVEPOINT active_record_1
16624
+  (0.4ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:15:49.241694', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:15:49.355889' WHERE "photos"."id" = 1
16625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16626
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.2ms)
16627
+ Completed 200 OK in 126.3ms (ActiveRecord: 0.6ms)
16628
+  (0.3ms) rollback transaction
16629
+  (0.1ms) begin transaction
16630
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16631
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16632
+ Completed 500 Internal Server Error in 2.2ms
16633
+  (0.0ms) rollback transaction
16634
+  (0.0ms) begin transaction
16635
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16636
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16637
+ Completed 500 Internal Server Error in 1.1ms
16638
+  (0.0ms) rollback transaction
16639
+  (0.0ms) begin transaction
16640
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16641
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16642
+ Completed 500 Internal Server Error in 27.5ms
16643
+  (0.1ms) rollback transaction
16644
+  (0.0ms) begin transaction
16645
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16646
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16647
+ Completed 500 Internal Server Error in 1.2ms
16648
+  (0.1ms) rollback transaction
16649
+  (0.0ms) begin transaction
16650
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16651
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16652
+ Completed 500 Internal Server Error in 0.4ms
16653
+  (0.0ms) rollback transaction
16654
+  (0.0ms) begin transaction
16655
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16656
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16657
+ Completed 500 Internal Server Error in 1.0ms
16658
+  (0.0ms) rollback transaction
16659
+  (0.0ms) begin transaction
16660
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16661
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16662
+ Completed 500 Internal Server Error in 0.4ms
16663
+  (0.0ms) rollback transaction
16664
+  (0.0ms) begin transaction
16665
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16666
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16667
+ Completed 500 Internal Server Error in 1.0ms
16668
+  (0.1ms) rollback transaction
16669
+  (0.0ms) begin transaction
16670
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16671
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16672
+ Completed 500 Internal Server Error in 2.4ms
16673
+  (0.1ms) rollback transaction
16674
+  (0.0ms) begin transaction
16675
+  (0.0ms) rollback transaction
16676
+  (0.0ms) begin transaction
16677
+  (0.0ms) rollback transaction
16678
+ Connecting to database specified by database.yml
16679
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16680
+ Migrating to CreatePhotos (20131102002336)
16681
+  (0.1ms) begin transaction
16682
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16683
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:17:30', '2013-11-04 19:17:30')
16684
+  (0.8ms) commit transaction
16685
+  (0.0ms) begin transaction
16686
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16687
+  (0.1ms) rollback transaction
16688
+  (0.0ms) begin transaction
16689
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16690
+  (0.0ms) rollback transaction
16691
+  (0.0ms) begin transaction
16692
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16693
+  (0.0ms) rollback transaction
16694
+  (0.0ms) begin transaction
16695
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16696
+  (0.0ms) rollback transaction
16697
+  (0.0ms) begin transaction
16698
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16699
+  (0.0ms) rollback transaction
16700
+  (0.0ms) begin transaction
16701
+  (0.0ms) rollback transaction
16702
+  (0.0ms) begin transaction
16703
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16704
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:17:30 -0500
16705
+  (0.1ms) rollback transaction
16706
+  (0.1ms) begin transaction
16707
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16708
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"thumb", "filename"=>"file"}
16709
+ Completed 500 Internal Server Error in 1.3ms
16710
+  (0.0ms) rollback transaction
16711
+  (0.0ms) begin transaction
16712
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16713
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"thumb", "filename"=>"file"}
16714
+ Completed 500 Internal Server Error in 0.5ms
16715
+  (0.1ms) rollback transaction
16716
+  (0.0ms) begin transaction
16717
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16718
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16719
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16720
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16721
+  (0.0ms) rollback transaction
16722
+  (0.0ms) begin transaction
16723
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16724
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16725
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16726
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16727
+  (0.0ms) rollback transaction
16728
+  (0.0ms) begin transaction
16729
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16730
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16731
+ Completed 500 Internal Server Error in 0.5ms
16732
+  (0.0ms) rollback transaction
16733
+  (0.0ms) begin transaction
16734
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16735
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16736
+ Completed 500 Internal Server Error in 0.5ms
16737
+  (0.0ms) rollback transaction
16738
+  (0.0ms) begin transaction
16739
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16740
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16741
+ Completed 500 Internal Server Error in 0.4ms
16742
+  (0.0ms) rollback transaction
16743
+  (0.0ms) begin transaction
16744
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16745
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16746
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16747
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16748
+  (0.0ms) rollback transaction
16749
+  (0.0ms) begin transaction
16750
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16751
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16752
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16753
+  (0.0ms) rollback transaction
16754
+  (0.0ms) begin transaction
16755
+  (0.0ms) rollback transaction
16756
+  (0.0ms) begin transaction
16757
+  (0.0ms) rollback transaction
16758
+ Connecting to database specified by database.yml
16759
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16760
+ Migrating to CreatePhotos (20131102002336)
16761
+  (0.1ms) begin transaction
16762
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16763
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:18:21', '2013-11-04 19:18:21')
16764
+  (1.4ms) commit transaction
16765
+  (0.0ms) begin transaction
16766
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16767
+  (0.1ms) rollback transaction
16768
+  (0.0ms) begin transaction
16769
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16770
+  (0.0ms) rollback transaction
16771
+  (0.0ms) begin transaction
16772
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16773
+  (0.0ms) rollback transaction
16774
+  (0.0ms) begin transaction
16775
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16776
+  (0.0ms) rollback transaction
16777
+  (0.0ms) begin transaction
16778
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16779
+  (0.1ms) rollback transaction
16780
+  (0.0ms) begin transaction
16781
+  (0.0ms) rollback transaction
16782
+  (0.0ms) begin transaction
16783
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16784
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:18:21 -0500
16785
+  (0.1ms) rollback transaction
16786
+  (0.0ms) begin transaction
16787
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16788
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16789
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16790
+ Completed 200 OK in 1.4ms (ActiveRecord: 0.0ms)
16791
+  (0.0ms) rollback transaction
16792
+  (0.0ms) begin transaction
16793
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16794
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16795
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16796
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16797
+  (0.0ms) rollback transaction
16798
+  (0.0ms) begin transaction
16799
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16800
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16801
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16802
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16803
+  (0.0ms) rollback transaction
16804
+  (0.0ms) begin transaction
16805
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16806
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16807
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16808
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16809
+  (0.0ms) rollback transaction
16810
+  (0.0ms) begin transaction
16811
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16812
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16813
+ Completed 500 Internal Server Error in 0.4ms
16814
+  (0.0ms) rollback transaction
16815
+  (0.0ms) begin transaction
16816
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16817
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16818
+ Completed 500 Internal Server Error in 0.5ms
16819
+  (0.0ms) rollback transaction
16820
+  (0.0ms) begin transaction
16821
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16822
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16823
+ Completed 500 Internal Server Error in 0.4ms
16824
+  (0.0ms) rollback transaction
16825
+  (0.0ms) begin transaction
16826
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16827
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16828
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16829
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16830
+  (0.0ms) rollback transaction
16831
+  (0.0ms) begin transaction
16832
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16833
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16834
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16835
+  (0.0ms) rollback transaction
16836
+  (0.0ms) begin transaction
16837
+  (0.0ms) rollback transaction
16838
+  (0.0ms) begin transaction
16839
+  (0.0ms) rollback transaction
16840
+ Connecting to database specified by database.yml
16841
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16842
+ Migrating to CreatePhotos (20131102002336)
16843
+  (0.1ms) begin transaction
16844
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16845
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:18:42', '2013-11-04 19:18:42')
16846
+  (0.8ms) commit transaction
16847
+  (0.0ms) begin transaction
16848
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16849
+  (0.1ms) rollback transaction
16850
+  (0.0ms) begin transaction
16851
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16852
+  (0.0ms) rollback transaction
16853
+  (0.0ms) begin transaction
16854
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16855
+  (0.0ms) rollback transaction
16856
+  (0.0ms) begin transaction
16857
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16858
+  (0.1ms) rollback transaction
16859
+  (0.0ms) begin transaction
16860
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16861
+  (0.1ms) rollback transaction
16862
+  (0.0ms) begin transaction
16863
+  (0.0ms) rollback transaction
16864
+  (0.0ms) begin transaction
16865
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16866
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:18:42 -0500
16867
+  (0.1ms) rollback transaction
16868
+  (0.0ms) begin transaction
16869
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16870
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16871
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16872
+ Completed 200 OK in 1.3ms (ActiveRecord: 0.0ms)
16873
+  (0.0ms) rollback transaction
16874
+  (0.0ms) begin transaction
16875
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16876
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16877
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16878
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16879
+  (0.0ms) rollback transaction
16880
+  (0.0ms) begin transaction
16881
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16882
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16883
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16884
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16885
+  (0.0ms) rollback transaction
16886
+  (0.0ms) begin transaction
16887
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16888
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16889
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16890
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16891
+  (0.0ms) rollback transaction
16892
+  (0.0ms) begin transaction
16893
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16894
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16895
+ Completed 500 Internal Server Error in 0.4ms
16896
+  (0.0ms) rollback transaction
16897
+  (0.0ms) begin transaction
16898
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16899
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16900
+ Completed 500 Internal Server Error in 0.5ms
16901
+  (0.0ms) rollback transaction
16902
+  (0.0ms) begin transaction
16903
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16904
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16905
+ Completed 500 Internal Server Error in 0.4ms
16906
+  (0.0ms) rollback transaction
16907
+  (0.0ms) begin transaction
16908
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16909
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16910
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16911
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16912
+  (0.0ms) rollback transaction
16913
+  (0.0ms) begin transaction
16914
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16915
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16916
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
16917
+  (0.0ms) rollback transaction
16918
+  (0.0ms) begin transaction
16919
+  (0.0ms) rollback transaction
16920
+  (0.0ms) begin transaction
16921
+  (0.0ms) rollback transaction
16922
+ Connecting to database specified by database.yml
16923
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16924
+ Migrating to CreatePhotos (20131102002336)
16925
+  (0.1ms) begin transaction
16926
+ Fixture Delete (0.3ms) DELETE FROM "photos"
16927
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:19:14', '2013-11-04 19:19:14')
16928
+  (0.8ms) commit transaction
16929
+  (0.0ms) begin transaction
16930
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16931
+  (0.1ms) rollback transaction
16932
+  (0.0ms) begin transaction
16933
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16934
+  (0.1ms) rollback transaction
16935
+  (0.0ms) begin transaction
16936
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16937
+  (0.1ms) rollback transaction
16938
+  (0.0ms) begin transaction
16939
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16940
+  (0.1ms) rollback transaction
16941
+  (0.0ms) begin transaction
16942
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16943
+  (0.1ms) rollback transaction
16944
+  (0.0ms) begin transaction
16945
+  (0.0ms) rollback transaction
16946
+  (0.0ms) begin transaction
16947
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
16948
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:19:14 -0500
16949
+  (0.1ms) rollback transaction
16950
+  (0.0ms) begin transaction
16951
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16952
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16953
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16954
+ Completed 200 OK in 1.3ms (ActiveRecord: 0.0ms)
16955
+  (0.0ms) rollback transaction
16956
+  (0.0ms) begin transaction
16957
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16958
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16959
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16960
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16961
+  (0.0ms) rollback transaction
16962
+  (0.0ms) begin transaction
16963
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16964
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16965
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16966
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
16967
+  (0.0ms) rollback transaction
16968
+  (0.0ms) begin transaction
16969
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16970
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16971
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16972
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16973
+  (0.0ms) rollback transaction
16974
+  (0.0ms) begin transaction
16975
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16976
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
16977
+ Completed 500 Internal Server Error in 0.5ms
16978
+  (0.0ms) rollback transaction
16979
+  (0.0ms) begin transaction
16980
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16981
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
16982
+ Completed 500 Internal Server Error in 0.5ms
16983
+  (0.1ms) rollback transaction
16984
+  (0.0ms) begin transaction
16985
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16986
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
16987
+ Completed 500 Internal Server Error in 0.4ms
16988
+  (0.0ms) rollback transaction
16989
+  (0.0ms) begin transaction
16990
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16991
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16992
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
16993
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16994
+  (0.1ms) rollback transaction
16995
+  (0.0ms) begin transaction
16996
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
16997
+ Parameters: {"attachment"=>"images", "id"=>"1", "style"=>"dynamic_42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
16998
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
16999
+  (0.0ms) rollback transaction
17000
+  (0.0ms) begin transaction
17001
+  (0.0ms) rollback transaction
17002
+  (0.0ms) begin transaction
17003
+  (0.0ms) rollback transaction
17004
+ Connecting to database specified by database.yml
17005
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17006
+ Migrating to CreatePhotos (20131102002336)
17007
+  (0.1ms) begin transaction
17008
+ Fixture Delete (0.3ms) DELETE FROM "photos"
17009
+ Fixture Insert (0.2ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:24:14', '2013-11-04 19:24:14')
17010
+  (0.8ms) commit transaction
17011
+  (0.0ms) begin transaction
17012
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17013
+  (0.1ms) rollback transaction
17014
+  (0.0ms) begin transaction
17015
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17016
+  (0.0ms) rollback transaction
17017
+  (0.0ms) begin transaction
17018
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17019
+  (0.1ms) rollback transaction
17020
+  (0.0ms) begin transaction
17021
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17022
+  (0.0ms) rollback transaction
17023
+  (0.0ms) begin transaction
17024
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17025
+  (0.0ms) rollback transaction
17026
+  (0.0ms) begin transaction
17027
+  (0.0ms) rollback transaction
17028
+  (0.0ms) begin transaction
17029
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17030
+  (0.1ms) rollback transaction
17031
+  (0.1ms) begin transaction
17032
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17033
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17034
+ Completed 500 Internal Server Error in 2.3ms
17035
+  (0.0ms) rollback transaction
17036
+  (0.0ms) begin transaction
17037
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17038
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17039
+ Completed 500 Internal Server Error in 1.5ms
17040
+  (0.0ms) rollback transaction
17041
+  (0.0ms) begin transaction
17042
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17043
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17044
+ Completed 500 Internal Server Error in 1.5ms
17045
+  (0.0ms) rollback transaction
17046
+  (0.0ms) begin transaction
17047
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17048
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17049
+ Completed 500 Internal Server Error in 1.4ms
17050
+  (0.0ms) rollback transaction
17051
+  (0.0ms) begin transaction
17052
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17053
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
17054
+ Completed 500 Internal Server Error in 0.4ms
17055
+  (0.0ms) rollback transaction
17056
+  (0.0ms) begin transaction
17057
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17058
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
17059
+ Completed 500 Internal Server Error in 1.5ms
17060
+  (0.0ms) rollback transaction
17061
+  (0.0ms) begin transaction
17062
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17063
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
17064
+ Completed 500 Internal Server Error in 0.4ms
17065
+  (0.0ms) rollback transaction
17066
+  (0.0ms) begin transaction
17067
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17068
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17069
+ Completed 500 Internal Server Error in 1.5ms
17070
+  (0.0ms) rollback transaction
17071
+  (0.0ms) begin transaction
17072
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17073
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17074
+ Completed 500 Internal Server Error in 1.5ms
17075
+  (0.0ms) rollback transaction
17076
+  (0.0ms) begin transaction
17077
+  (0.0ms) rollback transaction
17078
+  (0.0ms) begin transaction
17079
+  (0.1ms) rollback transaction
17080
+ Connecting to database specified by database.yml
17081
+  (16.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17082
+ Migrating to CreatePhotos (20131102002336)
17083
+  (0.1ms) begin transaction
17084
+ Fixture Delete (0.3ms) DELETE FROM "photos"
17085
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:24:31', '2013-11-04 19:24:31')
17086
+  (0.8ms) commit transaction
17087
+  (0.0ms) begin transaction
17088
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17089
+  (0.1ms) rollback transaction
17090
+  (0.0ms) begin transaction
17091
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17092
+  (0.0ms) rollback transaction
17093
+  (0.0ms) begin transaction
17094
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17095
+  (0.1ms) rollback transaction
17096
+  (0.0ms) begin transaction
17097
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17098
+  (0.0ms) rollback transaction
17099
+  (0.0ms) begin transaction
17100
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17101
+  (0.0ms) rollback transaction
17102
+  (0.0ms) begin transaction
17103
+  (0.0ms) rollback transaction
17104
+  (0.0ms) begin transaction
17105
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17106
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:24:31 -0500
17107
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
17108
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
17109
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17110
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt.png[0]'
17111
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt.png[0]'
17112
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt.png[0]'
17113
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt.png[0]'
17114
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt20131104-13939-us8oqt'
17115
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-13939-1ntkwpt20131104-13939-us8oqt'
17116
+  (0.1ms) SAVEPOINT active_record_1
17117
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:24:31.911672', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:24:32.030103' WHERE "photos"."id" = 1
17118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17119
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.1ms)
17120
+ Completed 200 OK in 129.9ms (ActiveRecord: 0.5ms)
17121
+  (0.4ms) rollback transaction
17122
+  (0.1ms) begin transaction
17123
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17124
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17125
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17126
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
17127
+  (0.0ms) rollback transaction
17128
+  (0.0ms) begin transaction
17129
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17130
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17131
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17132
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17133
+  (0.0ms) rollback transaction
17134
+  (0.0ms) begin transaction
17135
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17136
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17137
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17138
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17139
+  (0.1ms) rollback transaction
17140
+  (0.0ms) begin transaction
17141
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17142
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17143
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17144
+ Completed 200 OK in 0.7ms (ActiveRecord: 0.0ms)
17145
+  (0.1ms) rollback transaction
17146
+  (0.0ms) begin transaction
17147
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17148
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
17149
+ Completed 500 Internal Server Error in 0.4ms
17150
+  (0.0ms) rollback transaction
17151
+  (0.0ms) begin transaction
17152
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17153
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
17154
+ Completed 500 Internal Server Error in 0.5ms
17155
+  (0.0ms) rollback transaction
17156
+  (0.0ms) begin transaction
17157
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17158
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
17159
+ Completed 500 Internal Server Error in 0.4ms
17160
+  (0.0ms) rollback transaction
17161
+  (0.0ms) begin transaction
17162
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17163
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17164
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17165
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17166
+  (0.0ms) rollback transaction
17167
+  (0.0ms) begin transaction
17168
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17169
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17170
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
17171
+  (0.0ms) rollback transaction
17172
+  (0.0ms) begin transaction
17173
+  (0.0ms) rollback transaction
17174
+  (0.0ms) begin transaction
17175
+  (0.0ms) rollback transaction
17176
+ Connecting to database specified by database.yml
17177
+  (15.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17178
+ Migrating to CreatePhotos (20131102002336)
17179
+  (0.1ms) begin transaction
17180
+ Fixture Delete (0.3ms) DELETE FROM "photos"
17181
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:25:31', '2013-11-04 19:25:31')
17182
+  (0.8ms) commit transaction
17183
+  (0.0ms) begin transaction
17184
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17185
+  (0.1ms) rollback transaction
17186
+  (0.0ms) begin transaction
17187
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17188
+  (0.0ms) rollback transaction
17189
+  (0.0ms) begin transaction
17190
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17191
+  (0.1ms) rollback transaction
17192
+  (0.0ms) begin transaction
17193
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17194
+  (0.0ms) rollback transaction
17195
+  (0.0ms) begin transaction
17196
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17197
+  (0.0ms) rollback transaction
17198
+  (0.0ms) begin transaction
17199
+  (0.0ms) rollback transaction
17200
+  (0.0ms) begin transaction
17201
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17202
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:25:32 -0500
17203
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
17204
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
17205
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17206
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w.png[0]'
17207
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w.png[0]'
17208
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w.png[0]'
17209
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w.png[0]'
17210
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w20131104-14029-le47bd'
17211
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14029-dg7k5w20131104-14029-le47bd'
17212
+  (0.2ms) SAVEPOINT active_record_1
17213
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:25:32.210712', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:25:32.319084' WHERE "photos"."id" = 1
17214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17215
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.1ms)
17216
+ Completed 200 OK in 119.0ms (ActiveRecord: 0.5ms)
17217
+  (0.4ms) rollback transaction
17218
+  (0.1ms) begin transaction
17219
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17220
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17221
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17222
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
17223
+  (0.0ms) rollback transaction
17224
+  (0.0ms) begin transaction
17225
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17226
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17227
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17228
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17229
+  (0.0ms) rollback transaction
17230
+  (0.0ms) begin transaction
17231
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17232
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17233
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17234
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17235
+  (0.0ms) rollback transaction
17236
+  (0.0ms) begin transaction
17237
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17238
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17239
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17240
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17241
+  (0.1ms) rollback transaction
17242
+  (0.0ms) begin transaction
17243
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17244
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
17245
+ Completed 500 Internal Server Error in 0.4ms
17246
+  (0.0ms) rollback transaction
17247
+  (0.0ms) begin transaction
17248
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17249
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
17250
+ Completed 500 Internal Server Error in 0.5ms
17251
+  (0.0ms) rollback transaction
17252
+  (0.0ms) begin transaction
17253
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17254
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
17255
+ Completed 500 Internal Server Error in 0.4ms
17256
+  (0.0ms) rollback transaction
17257
+  (0.0ms) begin transaction
17258
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17259
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17260
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17261
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17262
+  (0.0ms) rollback transaction
17263
+  (0.0ms) begin transaction
17264
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17265
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17266
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
17267
+  (0.0ms) rollback transaction
17268
+  (0.0ms) begin transaction
17269
+  (0.0ms) rollback transaction
17270
+  (0.0ms) begin transaction
17271
+  (0.0ms) rollback transaction
17272
+ Connecting to database specified by database.yml
17273
+  (20.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17274
+ Migrating to CreatePhotos (20131102002336)
17275
+  (0.1ms) begin transaction
17276
+ Fixture Delete (0.3ms) DELETE FROM "photos"
17277
+ Fixture Insert (0.2ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:29:48', '2013-11-04 19:29:48')
17278
+  (0.5ms) commit transaction
17279
+  (0.0ms) begin transaction
17280
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17281
+  (0.1ms) rollback transaction
17282
+  (0.0ms) begin transaction
17283
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17284
+  (0.1ms) rollback transaction
17285
+  (0.0ms) begin transaction
17286
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17287
+  (0.1ms) rollback transaction
17288
+  (0.0ms) begin transaction
17289
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17290
+  (0.1ms) rollback transaction
17291
+  (0.0ms) begin transaction
17292
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17293
+  (0.1ms) rollback transaction
17294
+  (0.0ms) begin transaction
17295
+  (0.0ms) rollback transaction
17296
+  (0.0ms) begin transaction
17297
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17298
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:29:48 -0500
17299
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
17300
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
17301
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17302
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d7.png[0]'
17303
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d7.png[0]'
17304
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d7.png[0]'
17305
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d7.png[0]'
17306
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d7.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d720131104-14541-s8f3zl'
17307
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-14541-1jri1d720131104-14541-s8f3zl'
17308
+  (0.1ms) SAVEPOINT active_record_1
17309
+  (0.4ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:29:48.482668', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:29:48.638663' WHERE "photos"."id" = 1
17310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17311
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.2ms)
17312
+ Completed 200 OK in 169.2ms (ActiveRecord: 0.6ms)
17313
+  (0.4ms) rollback transaction
17314
+  (0.1ms) begin transaction
17315
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17316
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17317
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17318
+ Completed 200 OK in 1.2ms (ActiveRecord: 0.0ms)
17319
+  (0.1ms) rollback transaction
17320
+  (0.0ms) begin transaction
17321
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17322
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17323
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17324
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17325
+  (0.0ms) rollback transaction
17326
+  (0.0ms) begin transaction
17327
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17328
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17329
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17330
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17331
+  (0.0ms) rollback transaction
17332
+  (0.0ms) begin transaction
17333
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17334
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17335
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17336
+ Completed 200 OK in 0.7ms (ActiveRecord: 0.0ms)
17337
+  (0.1ms) rollback transaction
17338
+  (0.0ms) begin transaction
17339
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17340
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
17341
+ Completed 500 Internal Server Error in 0.5ms
17342
+  (0.1ms) rollback transaction
17343
+  (0.0ms) begin transaction
17344
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17345
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
17346
+ Completed 500 Internal Server Error in 0.5ms
17347
+  (0.0ms) rollback transaction
17348
+  (0.0ms) begin transaction
17349
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17350
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
17351
+ Completed 500 Internal Server Error in 0.4ms
17352
+  (0.0ms) rollback transaction
17353
+  (0.0ms) begin transaction
17354
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17355
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17356
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17357
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17358
+  (0.0ms) rollback transaction
17359
+  (0.0ms) begin transaction
17360
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17361
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17362
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
17363
+  (0.1ms) rollback transaction
17364
+  (0.0ms) begin transaction
17365
+  (0.0ms) rollback transaction
17366
+  (0.0ms) begin transaction
17367
+  (0.1ms) rollback transaction
17368
+ Connecting to database specified by database.yml
17369
+  (17.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17370
+ Migrating to CreatePhotos (20131102002336)
17371
+  (0.1ms) begin transaction
17372
+ Fixture Delete (0.3ms) DELETE FROM "photos"
17373
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:35:23', '2013-11-04 19:35:23')
17374
+  (0.5ms) commit transaction
17375
+  (0.0ms) begin transaction
17376
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17377
+  (0.1ms) rollback transaction
17378
+  (0.0ms) begin transaction
17379
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17380
+  (0.0ms) rollback transaction
17381
+  (0.0ms) begin transaction
17382
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17383
+  (0.0ms) rollback transaction
17384
+  (0.0ms) begin transaction
17385
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17386
+  (0.0ms) rollback transaction
17387
+  (0.0ms) begin transaction
17388
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17389
+  (0.0ms) rollback transaction
17390
+  (0.0ms) begin transaction
17391
+  (0.0ms) rollback transaction
17392
+  (0.0ms) begin transaction
17393
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17394
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:35:23 -0500
17395
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
17396
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
17397
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17398
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw.png[0]'
17399
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw.png[0]'
17400
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw.png[0]'
17401
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw.png[0]'
17402
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw20131104-15191-8t3ecq'
17403
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15191-hw04qw20131104-15191-8t3ecq'
17404
+  (0.1ms) SAVEPOINT active_record_1
17405
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:35:23.924377', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:35:24.090749' WHERE "photos"."id" = 1
17406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17407
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.1ms)
17408
+ Completed 200 OK in 178.3ms (ActiveRecord: 0.5ms)
17409
+  (0.4ms) rollback transaction
17410
+  (0.1ms) begin transaction
17411
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17412
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17413
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17414
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
17415
+  (0.0ms) rollback transaction
17416
+  (0.0ms) begin transaction
17417
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17418
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17419
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17420
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17421
+  (0.0ms) rollback transaction
17422
+  (0.0ms) begin transaction
17423
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17424
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17425
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17426
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17427
+  (0.0ms) rollback transaction
17428
+  (0.0ms) begin transaction
17429
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17430
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17431
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17432
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17433
+  (0.1ms) rollback transaction
17434
+  (0.0ms) begin transaction
17435
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17436
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
17437
+ Completed 500 Internal Server Error in 0.4ms
17438
+  (0.0ms) rollback transaction
17439
+  (0.0ms) begin transaction
17440
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17441
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
17442
+ Completed 500 Internal Server Error in 0.5ms
17443
+  (0.0ms) rollback transaction
17444
+  (0.0ms) begin transaction
17445
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17446
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
17447
+ Completed 500 Internal Server Error in 0.4ms
17448
+  (0.0ms) rollback transaction
17449
+  (0.0ms) begin transaction
17450
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17451
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17452
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17453
+ Completed 200 OK in 0.5ms (ActiveRecord: 0.0ms)
17454
+  (0.0ms) rollback transaction
17455
+  (0.0ms) begin transaction
17456
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17457
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17458
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
17459
+  (0.0ms) rollback transaction
17460
+  (0.0ms) begin transaction
17461
+  (0.0ms) rollback transaction
17462
+  (0.0ms) begin transaction
17463
+  (0.0ms) rollback transaction
17464
+ Connecting to database specified by database.yml
17465
+  (15.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17466
+ Migrating to CreatePhotos (20131102002336)
17467
+  (0.1ms) begin transaction
17468
+ Fixture Delete (0.3ms) DELETE FROM "photos"
17469
+ Fixture Insert (0.1ms) INSERT INTO "photos" ("id", "image_file_name", "image_content_type", "created_at", "updated_at") VALUES (1, 'rails.png', 'image/png', '2013-11-04 19:37:15', '2013-11-04 19:37:15')
17470
+  (0.8ms) commit transaction
17471
+  (0.0ms) begin transaction
17472
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17473
+  (0.1ms) rollback transaction
17474
+  (0.0ms) begin transaction
17475
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17476
+  (0.1ms) rollback transaction
17477
+  (0.0ms) begin transaction
17478
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17479
+  (0.1ms) rollback transaction
17480
+  (0.0ms) begin transaction
17481
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17482
+  (0.0ms) rollback transaction
17483
+  (0.0ms) begin transaction
17484
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17485
+  (0.0ms) rollback transaction
17486
+  (0.0ms) begin transaction
17487
+  (0.0ms) rollback transaction
17488
+  (0.0ms) begin transaction
17489
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17490
+ Started GET "/system/photos/images/000/000/001/dynamic_100x100/rails.png?s=d2dcb69d514d1030ce01404ebc422423eccf1b02" for 127.0.0.1 at 2013-11-04 14:37:15 -0500
17491
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_photo as PNG
17492
+ Parameters: {"s"=>"d2dcb69d514d1030ce01404ebc422423eccf1b02", "attachment"=>"images", "id_partition"=>"000/000/001", "definition"=>"100x100", "filename"=>"rails"}
17493
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
17494
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f.png[0]'
17495
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f.png[0]'
17496
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f.png[0]'
17497
+ Command :: identify -format %m '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f.png[0]'
17498
+ Command :: convert '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f.png[0]' -auto-orient -resize "100x100" '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f20131104-15272-1g9h98t'
17499
+ Command :: file -b --mime '/var/folders/sd/669fr45168q7jsmsp132kqfr0000gn/T/rails20131104-15272-16y0l0f20131104-15272-1g9h98t'
17500
+  (0.1ms) SAVEPOINT active_record_1
17501
+  (0.3ms) UPDATE "photos" SET "image_file_size" = 6646, "image_updated_at" = '2013-11-04 19:37:15.598584', "image_file_name" = 'rails.png', "updated_at" = '2013-11-04 19:37:15.706223' WHERE "photos"."id" = 1
17502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17503
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/dummy/public/system/photos/images/000/000/001/dynamic_100x100/rails.png (0.1ms)
17504
+ Completed 200 OK in 118.1ms (ActiveRecord: 0.5ms)
17505
+  (0.4ms) rollback transaction
17506
+  (0.1ms) begin transaction
17507
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17508
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17509
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17510
+ Completed 200 OK in 1.1ms (ActiveRecord: 0.0ms)
17511
+  (0.0ms) rollback transaction
17512
+  (0.0ms) begin transaction
17513
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17514
+ Parameters: {"attachment"=>"image_with_id_partition_in_urls", "id_partition"=>"000/010/042", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17515
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17516
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17517
+  (0.0ms) rollback transaction
17518
+  (0.0ms) begin transaction
17519
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17520
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17521
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17522
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17523
+  (0.0ms) rollback transaction
17524
+  (0.0ms) begin transaction
17525
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17526
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17527
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17528
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17529
+  (0.1ms) rollback transaction
17530
+  (0.0ms) begin transaction
17531
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17532
+ Parameters: {"attachment"=>"bars", "id"=>"1", "style"=>"style", "filename"=>"file"}
17533
+ Completed 500 Internal Server Error in 0.4ms
17534
+  (0.0ms) rollback transaction
17535
+  (0.0ms) begin transaction
17536
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17537
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"this is an invalid hash"}
17538
+ Completed 500 Internal Server Error in 0.5ms
17539
+  (0.0ms) rollback transaction
17540
+  (0.0ms) begin transaction
17541
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17542
+ Parameters: {"attachment"=>"images", "style"=>"style", "filename"=>"file"}
17543
+ Completed 500 Internal Server Error in 0.4ms
17544
+  (0.0ms) rollback transaction
17545
+  (0.0ms) begin transaction
17546
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17547
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17548
+ Sent file /Users/jimbo/OSS/dynamic_paperclip/test/fixtures/rails.png (0.1ms)
17549
+ Completed 200 OK in 0.6ms (ActiveRecord: 0.0ms)
17550
+  (0.0ms) rollback transaction
17551
+  (0.0ms) begin transaction
17552
+ Processing by DynamicPaperclip::AttachmentStylesController#generate_foo as HTML
17553
+ Parameters: {"attachment"=>"images", "id"=>"1", "definition"=>"42x42", "filename"=>"file", "s"=>"a9009b02490c94166d05d0df83e572e8e0bacc92"}
17554
+ Completed 200 OK in 0.4ms (ActiveRecord: 0.0ms)
17555
+  (0.0ms) rollback transaction
17556
+  (0.0ms) begin transaction
17557
+  (0.0ms) rollback transaction
17558
+  (0.0ms) begin transaction
17559
+  (0.0ms) rollback transaction