randomuser-local-rails 0.4.0.2 → 0.4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e309cfe5256e830359af0c7ab96b585178195338
4
- data.tar.gz: 252c32a3d43c40361dab084aae7ab4a7762cd6da
3
+ metadata.gz: b57f6c30991de00ea8c50a160a8e9b468e825c0b
4
+ data.tar.gz: 63cd98c1fdd16bbda9804fe62e66804d8a64de28
5
5
  SHA512:
6
- metadata.gz: da35bf3949e21345b1c32b0f514f2bee7c06d8af6cc44fb96cf4383b258ffdc14dfb3862e41e9efd1bd8c9dccd9d034616d39ec18520daca16193b3ca01099f3
7
- data.tar.gz: 65e6949793d67a089366229851f68ef81def1f34aa8f9c5eccb54c5b16b540601298ea300602070675256951dfaa6efb40643b2f25c408ba30c0842a12dbd908
6
+ metadata.gz: b4af19f25e3ccd6c0f22fc54c721f1fee21b75a55d51dfc38b30ef6002f0b31ff55206ba28769507db29847c32abeebb342e62381b51e7ca8a952ea888ca5c5c
7
+ data.tar.gz: ab9aa7203dab40a4994ee0dd08a86c600bc38844cfd70e91d60f980286321e6e601994e4ab908b7821098818143f5d06bc58aac6a4de63058a4c468d93fa6e76
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/db/*.sqlite3
5
+ test/dummy/db/*.sqlite3-journal
6
+ test/dummy/log/*.log
7
+ test/dummy/tmp/
8
+ test/dummy/.sass-cache
9
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Declare your gem's dependencies in randomuser_local.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # Declare any dependencies that are still in development here instead of in
9
+ # your gemspec. These might include edge Rails or gems from your path or
10
+ # Git. Remember to move these dependencies to your gemspec before releasing
11
+ # your gem to rubygems.org.
12
+
13
+ # To use debugger
14
+ # gem 'debugger'
data/Gemfile.lock ADDED
@@ -0,0 +1,92 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ randomuser-local-rails (0.4.0.3)
5
+ rails (~> 4.1.4)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.1.4)
11
+ actionpack (= 4.1.4)
12
+ actionview (= 4.1.4)
13
+ mail (~> 2.5.4)
14
+ actionpack (4.1.4)
15
+ actionview (= 4.1.4)
16
+ activesupport (= 4.1.4)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ actionview (4.1.4)
20
+ activesupport (= 4.1.4)
21
+ builder (~> 3.1)
22
+ erubis (~> 2.7.0)
23
+ activemodel (4.1.4)
24
+ activesupport (= 4.1.4)
25
+ builder (~> 3.1)
26
+ activerecord (4.1.4)
27
+ activemodel (= 4.1.4)
28
+ activesupport (= 4.1.4)
29
+ arel (~> 5.0.0)
30
+ activesupport (4.1.4)
31
+ i18n (~> 0.6, >= 0.6.9)
32
+ json (~> 1.7, >= 1.7.7)
33
+ minitest (~> 5.1)
34
+ thread_safe (~> 0.1)
35
+ tzinfo (~> 1.1)
36
+ arel (5.0.1.20140414130214)
37
+ builder (3.2.2)
38
+ erubis (2.7.0)
39
+ hike (1.2.3)
40
+ i18n (0.6.11)
41
+ json (1.8.1)
42
+ mail (2.5.4)
43
+ mime-types (~> 1.16)
44
+ treetop (~> 1.4.8)
45
+ mime-types (1.25.1)
46
+ minitest (5.4.0)
47
+ multi_json (1.10.1)
48
+ polyglot (0.3.5)
49
+ rack (1.5.2)
50
+ rack-test (0.6.2)
51
+ rack (>= 1.0)
52
+ rails (4.1.4)
53
+ actionmailer (= 4.1.4)
54
+ actionpack (= 4.1.4)
55
+ actionview (= 4.1.4)
56
+ activemodel (= 4.1.4)
57
+ activerecord (= 4.1.4)
58
+ activesupport (= 4.1.4)
59
+ bundler (>= 1.3.0, < 2.0)
60
+ railties (= 4.1.4)
61
+ sprockets-rails (~> 2.0)
62
+ railties (4.1.4)
63
+ actionpack (= 4.1.4)
64
+ activesupport (= 4.1.4)
65
+ rake (>= 0.8.7)
66
+ thor (>= 0.18.1, < 2.0)
67
+ rake (10.3.2)
68
+ sprockets (2.12.1)
69
+ hike (~> 1.2)
70
+ multi_json (~> 1.0)
71
+ rack (~> 1.0)
72
+ tilt (~> 1.1, != 1.3.0)
73
+ sprockets-rails (2.1.3)
74
+ actionpack (>= 3.0)
75
+ activesupport (>= 3.0)
76
+ sprockets (~> 2.8)
77
+ sqlite3 (1.3.9)
78
+ thor (0.19.1)
79
+ thread_safe (0.3.4)
80
+ tilt (1.4.1)
81
+ treetop (1.4.15)
82
+ polyglot
83
+ polyglot (>= 0.3.1)
84
+ tzinfo (1.2.1)
85
+ thread_safe (~> 0.1)
86
+
87
+ PLATFORMS
88
+ ruby
89
+
90
+ DEPENDENCIES
91
+ randomuser-local-rails!
92
+ sqlite3
data/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # Random User / Local
2
+
3
+ I love the API at http://api.randomuser.me. However for some offline demos in some Rails apps I needed a local cache. This Rails plugin provides a local version of some of the data (basic US male and female profiles) generated by external calls to the API.
4
+
5
+ Uses the US data here: https://github.com/RandomAPI/Randomuser.me-Data
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'randomuser-local'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install randomuser-local
20
+
21
+ ## Usage
22
+
23
+ Grab a single random user, returned as a hash:
24
+
25
+ RandomuserLocal.generate
26
+
27
+ Multiple random users:
28
+
29
+ RandomuserLocal.generate(5)
30
+
31
+ A single female random user:
32
+
33
+ RandomuserLocal.generate_female
34
+
35
+ Multiple female random users:
36
+
37
+ RandomuserLocal.generate_female(5)
38
+
39
+ A single male random user:
40
+
41
+ RandomuserLocal.generate_male
42
+
43
+ Multiple male random users:
44
+
45
+ RandomuserLocal.generate_male(5)
46
+
47
+ ## Contributing
48
+
49
+ 1. Fork it ( https://github.com/hpoydar/randomuser-local-rails/fork )
50
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
51
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
52
+ 4. Push to the branch (`git push origin my-new-feature`)
53
+ 5. Create a new Pull Request
54
+
55
+ ## License
56
+
57
+ * Random API copyright notice: http://randomuser.me/copyright.html
58
+ * All randomly generated photos are copyrighted under a [Creative Commons BY-NC-SA 2.0 license](http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en). These photos were picked by the Random API team from [Greg Peverill-Conti's 1,000 faces project](http://www.flickr.com/photos/gregpc/).
59
+ * This gem is licensed under the
60
+ [MIT License](http://opensource.org/licenses/mit-license.html).
data/bin/rails ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
+
4
+ ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/randomuser_local/engine', __FILE__)
6
+
7
+ # Set up gems listed in the Gemfile.
8
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
+
11
+ require 'rails/all'
12
+ require 'rails/engine/commands'
@@ -1,4 +1,5 @@
1
- require "randomuser_local/engine"
1
+ require "randomuser_local/version"
2
+ require "randomuser_local/engine" if defined?(::Rails)
2
3
 
3
4
  module RandomuserLocal
4
5
 
@@ -28,11 +29,11 @@ private
28
29
  gender = %w(female male).shuffle.first if gender.nil?
29
30
  user[:gender] = gender
30
31
  if gender == 'female'
31
- user[:picture] = "portraits/women/#{rand(0..95)}.jpg"
32
+ user[:picture] = "randomuser_local/portraits/women/#{rand(0..95)}.jpg"
32
33
  user[:name][:first] = random_user_element('female_first_names')
33
34
  user[:name][:title] = %w(ms mrs).shuffle.first
34
35
  else
35
- user[:picture] = "portraits/men/#{rand(0..99)}.jpg"
36
+ user[:picture] = "randomuser_local/portraits/men/#{rand(0..99)}.jpg"
36
37
  user[:name][:first] = random_user_element('male_first_names')
37
38
  user[:name][:title] = 'mr'
38
39
  end
@@ -1,3 +1,3 @@
1
1
  module RandomuserLocal
2
- VERSION = "0.4.0.2"
2
+ VERSION = "0.4.0.3"
3
3
  end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "randomuser_local/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = "randomuser-local-rails"
9
+ s.version = RandomuserLocal::VERSION
10
+ s.authors = ["Henry Poydar"]
11
+ s.email = ["hpoydar@gmail.com"]
12
+ s.homepage = "https://github.com/hpoydar/randomuser-local-rails"
13
+ s.summary = "Provides most of the functionality of http://api.randomuser.me without an external API call for Rails applications"
14
+ s.license = "MIT"
15
+
16
+ s.files = `git ls-files -z`.split("\x0")
17
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
19
+ s.require_paths = ["lib"]
20
+
21
+ s.add_dependency "rails", "~> 4.1.4"
22
+
23
+ s.add_development_dependency "sqlite3"
24
+
25
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: randomuser-local-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.2
4
+ version: 0.4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henry Poydar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-28 00:00:00.000000000 Z
11
+ date: 2014-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -41,13 +41,19 @@ dependencies:
41
41
  description:
42
42
  email:
43
43
  - hpoydar@gmail.com
44
- executables: []
44
+ executables:
45
+ - rails
45
46
  extensions: []
46
47
  extra_rdoc_files: []
47
48
  files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - Gemfile.lock
48
52
  - MIT-LICENSE
53
+ - README.md
49
54
  - Rakefile
50
- - app/assets/images/74.jpg
55
+ - app/assets/images/randomuser_local/.keep
56
+ - app/assets/images/randomuser_local/portraits/.DS_Store
51
57
  - app/assets/images/randomuser_local/portraits/men/0.jpg
52
58
  - app/assets/images/randomuser_local/portraits/men/1.jpg
53
59
  - app/assets/images/randomuser_local/portraits/men/10.jpg
@@ -244,7 +250,7 @@ files:
244
250
  - app/assets/images/randomuser_local/portraits/women/93.jpg
245
251
  - app/assets/images/randomuser_local/portraits/women/94.jpg
246
252
  - app/assets/images/randomuser_local/portraits/women/95.jpg
247
- - config/routes.rb
253
+ - bin/rails
248
254
  - lib/randomuser_local.rb
249
255
  - lib/randomuser_local/data/US/city_names.txt
250
256
  - lib/randomuser_local/data/US/female_first_names.txt
@@ -260,12 +266,18 @@ files:
260
266
  - lib/randomuser_local/engine.rb
261
267
  - lib/randomuser_local/version.rb
262
268
  - lib/tasks/randomuser_local_tasks.rake
269
+ - randomuser_local.gemspec
263
270
  - test/dummy/README.rdoc
264
271
  - test/dummy/Rakefile
272
+ - test/dummy/app/assets/images/.keep
265
273
  - test/dummy/app/assets/javascripts/application.js
266
274
  - test/dummy/app/assets/stylesheets/application.css
267
275
  - test/dummy/app/controllers/application_controller.rb
276
+ - test/dummy/app/controllers/concerns/.keep
268
277
  - test/dummy/app/helpers/application_helper.rb
278
+ - test/dummy/app/mailers/.keep
279
+ - test/dummy/app/models/.keep
280
+ - test/dummy/app/models/concerns/.keep
269
281
  - test/dummy/app/views/layouts/application.html.erb
270
282
  - test/dummy/bin/bundle
271
283
  - test/dummy/bin/rails
@@ -289,16 +301,12 @@ files:
289
301
  - test/dummy/config/locales/en.yml
290
302
  - test/dummy/config/routes.rb
291
303
  - test/dummy/config/secrets.yml
292
- - test/dummy/db/test.sqlite3
293
- - test/dummy/log/test.log
304
+ - test/dummy/lib/assets/.keep
305
+ - test/dummy/log/.keep
294
306
  - test/dummy/public/404.html
295
307
  - test/dummy/public/422.html
296
308
  - test/dummy/public/500.html
297
309
  - test/dummy/public/favicon.ico
298
- - test/dummy/tmp/cache/assets/test/sprockets/093a242df49c18f4101cce9c2506aba9
299
- - test/dummy/tmp/cache/assets/test/sprockets/c28925e476eb0b661548aea1e645a495
300
- - test/dummy/tmp/cache/assets/test/sprockets/c7d1bdfc4a81f56f39e08eb800015cd2
301
- - test/dummy/tmp/cache/assets/test/sprockets/dc8c2fe7cf7ca4544c171d92532a34e0
302
310
  - test/integration/navigation_test.rb
303
311
  - test/randomuser_local_test.rb
304
312
  - test/test_helper.rb
@@ -328,14 +336,22 @@ specification_version: 4
328
336
  summary: Provides most of the functionality of http://api.randomuser.me without an
329
337
  external API call for Rails applications
330
338
  test_files:
339
+ - test/dummy/README.rdoc
340
+ - test/dummy/Rakefile
341
+ - test/dummy/app/assets/images/.keep
331
342
  - test/dummy/app/assets/javascripts/application.js
332
343
  - test/dummy/app/assets/stylesheets/application.css
333
344
  - test/dummy/app/controllers/application_controller.rb
345
+ - test/dummy/app/controllers/concerns/.keep
334
346
  - test/dummy/app/helpers/application_helper.rb
347
+ - test/dummy/app/mailers/.keep
348
+ - test/dummy/app/models/.keep
349
+ - test/dummy/app/models/concerns/.keep
335
350
  - test/dummy/app/views/layouts/application.html.erb
336
351
  - test/dummy/bin/bundle
337
352
  - test/dummy/bin/rails
338
353
  - test/dummy/bin/rake
354
+ - test/dummy/config.ru
339
355
  - test/dummy/config/application.rb
340
356
  - test/dummy/config/boot.rb
341
357
  - test/dummy/config/database.yml
@@ -354,19 +370,12 @@ test_files:
354
370
  - test/dummy/config/locales/en.yml
355
371
  - test/dummy/config/routes.rb
356
372
  - test/dummy/config/secrets.yml
357
- - test/dummy/config.ru
358
- - test/dummy/db/test.sqlite3
359
- - test/dummy/log/test.log
373
+ - test/dummy/lib/assets/.keep
374
+ - test/dummy/log/.keep
360
375
  - test/dummy/public/404.html
361
376
  - test/dummy/public/422.html
362
377
  - test/dummy/public/500.html
363
378
  - test/dummy/public/favicon.ico
364
- - test/dummy/Rakefile
365
- - test/dummy/README.rdoc
366
- - test/dummy/tmp/cache/assets/test/sprockets/093a242df49c18f4101cce9c2506aba9
367
- - test/dummy/tmp/cache/assets/test/sprockets/c28925e476eb0b661548aea1e645a495
368
- - test/dummy/tmp/cache/assets/test/sprockets/c7d1bdfc4a81f56f39e08eb800015cd2
369
- - test/dummy/tmp/cache/assets/test/sprockets/dc8c2fe7cf7ca4544c171d92532a34e0
370
379
  - test/integration/navigation_test.rb
371
380
  - test/randomuser_local_test.rb
372
381
  - test/test_helper.rb
Binary file
data/config/routes.rb DELETED
@@ -1,2 +0,0 @@
1
- Rails.application.routes.draw do
2
- end
@@ -1,646 +0,0 @@
1
-  (0.1ms) begin transaction
2
- -------------------------------
3
- RandomuserLocalTest: test_truth
4
- -------------------------------
5
-  (0.0ms) rollback transaction
6
-  (0.0ms) begin transaction
7
- -----------------------------------------------------------------
8
- NavigationTest: test_headshots_are_served_with_the_asset_pipeline
9
- -----------------------------------------------------------------
10
- Started GET "/assets/9.jpg" for 127.0.0.1 at 2014-07-28 16:36:50 -0400
11
-  (0.1ms) rollback transaction
12
-  (0.1ms) begin transaction
13
- -----------------------------------------------------------------
14
- NavigationTest: test_headshots_are_served_with_the_asset_pipeline
15
- -----------------------------------------------------------------
16
- Started GET "/assets/randomuser_local/9.jpg" for 127.0.0.1 at 2014-07-28 16:37:23 -0400
17
-  (0.1ms) rollback transaction
18
-  (0.1ms) begin transaction
19
- -------------------------------
20
- RandomuserLocalTest: test_truth
21
- -------------------------------
22
-  (0.0ms) rollback transaction
23
-  (0.1ms) begin transaction
24
- -------------------------------
25
- RandomuserLocalTest: test_truth
26
- -------------------------------
27
-  (0.0ms) rollback transaction
28
-  (0.0ms) begin transaction
29
- -----------------------------------------------------------------
30
- NavigationTest: test_headshots_are_served_with_the_asset_pipeline
31
- -----------------------------------------------------------------
32
-  (0.0ms) rollback transaction
33
-  (0.1ms) begin transaction
34
- -----------------------------------------------------------------
35
- NavigationTest: test_headshots_are_served_with_the_asset_pipeline
36
- -----------------------------------------------------------------
37
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:38:34 -0400
38
-  (0.1ms) rollback transaction
39
-  (0.1ms) begin transaction
40
- -------------------------------
41
- RandomuserLocalTest: test_truth
42
- -------------------------------
43
-  (0.0ms) rollback transaction
44
-  (0.1ms) begin transaction
45
- ------------------------------------------------------------------------
46
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
47
- ------------------------------------------------------------------------
48
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:04 -0400
49
-  (0.1ms) rollback transaction
50
-  (0.0ms) begin transaction
51
- ----------------------------------------------------------------------
52
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
53
- ----------------------------------------------------------------------
54
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:04 -0400
55
-  (0.0ms) rollback transaction
56
-  (0.0ms) begin transaction
57
- -------------------------------
58
- RandomuserLocalTest: test_truth
59
- -------------------------------
60
-  (0.0ms) rollback transaction
61
-  (0.1ms) begin transaction
62
- -------------------------------
63
- RandomuserLocalTest: test_truth
64
- -------------------------------
65
-  (0.0ms) rollback transaction
66
-  (0.0ms) begin transaction
67
- ------------------------------------------------------------------------
68
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
69
- ------------------------------------------------------------------------
70
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:12 -0400
71
-  (0.1ms) rollback transaction
72
-  (0.1ms) begin transaction
73
- ----------------------------------------------------------------------
74
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
75
- ----------------------------------------------------------------------
76
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:39:12 -0400
77
-  (0.1ms) rollback transaction
78
-  (0.1ms) begin transaction
79
- ------------------------------------------------------------------------
80
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
81
- ------------------------------------------------------------------------
82
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:40:22 -0400
83
-  (0.1ms) rollback transaction
84
-  (0.1ms) begin transaction
85
- ----------------------------------------------------------------------
86
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
87
- ----------------------------------------------------------------------
88
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:40:22 -0400
89
-  (0.0ms) rollback transaction
90
-  (0.1ms) begin transaction
91
- -------------------------------
92
- RandomuserLocalTest: test_truth
93
- -------------------------------
94
-  (0.0ms) rollback transaction
95
-  (0.1ms) begin transaction
96
- ------------------------------------------------------------------------
97
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
98
- ------------------------------------------------------------------------
99
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:43:46 -0400
100
-  (0.1ms) rollback transaction
101
-  (0.0ms) begin transaction
102
- ----------------------------------------------------------------------
103
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
104
- ----------------------------------------------------------------------
105
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:43:46 -0400
106
-  (0.0ms) rollback transaction
107
-  (0.1ms) begin transaction
108
- ------------------------------------------------------------------------
109
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
110
- ------------------------------------------------------------------------
111
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:46:41 -0400
112
-  (0.1ms) rollback transaction
113
-  (0.0ms) begin transaction
114
- ----------------------------------------------------------------------
115
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
116
- ----------------------------------------------------------------------
117
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:46:41 -0400
118
-  (0.1ms) rollback transaction
119
-  (0.1ms) begin transaction
120
- ------------------------------------------------------------------------
121
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
122
- ------------------------------------------------------------------------
123
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:48:55 -0400
124
-  (0.1ms) rollback transaction
125
-  (0.1ms) begin transaction
126
- ----------------------------------------------------------------------
127
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
128
- ----------------------------------------------------------------------
129
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:48:55 -0400
130
-  (0.1ms) rollback transaction
131
-  (0.1ms) begin transaction
132
- ------------------------------------------------------------------------
133
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
134
- ------------------------------------------------------------------------
135
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:49:34 -0400
136
-  (0.1ms) rollback transaction
137
-  (0.0ms) begin transaction
138
- ----------------------------------------------------------------------
139
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
140
- ----------------------------------------------------------------------
141
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:49:34 -0400
142
-  (0.1ms) rollback transaction
143
-  (0.1ms) begin transaction
144
- ------------------------------------------------------------------------
145
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
146
- ------------------------------------------------------------------------
147
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:21 -0400
148
-  (0.1ms) rollback transaction
149
-  (0.0ms) begin transaction
150
- ----------------------------------------------------------------------
151
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
152
- ----------------------------------------------------------------------
153
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:21 -0400
154
-  (24.1ms) rollback transaction
155
-  (0.1ms) begin transaction
156
- ------------------------------------------------------------------------
157
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
158
- ------------------------------------------------------------------------
159
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:33 -0400
160
-  (0.1ms) rollback transaction
161
-  (0.0ms) begin transaction
162
- ----------------------------------------------------------------------
163
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
164
- ----------------------------------------------------------------------
165
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:33 -0400
166
-  (0.0ms) rollback transaction
167
-  (0.1ms) begin transaction
168
- ------------------------------------------------------------------------
169
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
170
- ------------------------------------------------------------------------
171
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:54 -0400
172
-  (0.1ms) rollback transaction
173
-  (0.1ms) begin transaction
174
- ----------------------------------------------------------------------
175
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
176
- ----------------------------------------------------------------------
177
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:50:54 -0400
178
-  (0.1ms) rollback transaction
179
-  (0.1ms) begin transaction
180
- ------------------------------------------------------------------------
181
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
182
- ------------------------------------------------------------------------
183
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:16 -0400
184
-  (0.1ms) rollback transaction
185
-  (0.0ms) begin transaction
186
- ----------------------------------------------------------------------
187
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
188
- ----------------------------------------------------------------------
189
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:16 -0400
190
-  (0.0ms) rollback transaction
191
-  (0.1ms) begin transaction
192
- ------------------------------------------------------------------------
193
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
194
- ------------------------------------------------------------------------
195
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:55 -0400
196
-  (0.1ms) rollback transaction
197
-  (0.0ms) begin transaction
198
- ----------------------------------------------------------------------
199
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
200
- ----------------------------------------------------------------------
201
- Started GET "/images/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:51:55 -0400
202
-  (0.0ms) rollback transaction
203
-  (0.1ms) begin transaction
204
- ------------------------------------------------------------------------
205
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
206
- ------------------------------------------------------------------------
207
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:52:58 -0400
208
-  (0.1ms) rollback transaction
209
-  (0.1ms) begin transaction
210
- ----------------------------------------------------------------------
211
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
212
- ----------------------------------------------------------------------
213
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:52:58 -0400
214
-  (0.2ms) rollback transaction
215
-  (0.1ms) begin transaction
216
- ------------------------------------------------------------------------
217
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
218
- ------------------------------------------------------------------------
219
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:23 -0400
220
-  (0.1ms) rollback transaction
221
-  (0.1ms) begin transaction
222
- ----------------------------------------------------------------------
223
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
224
- ----------------------------------------------------------------------
225
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:23 -0400
226
-  (0.1ms) rollback transaction
227
-  (0.1ms) begin transaction
228
- ------------------------------------------------------------------------
229
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
230
- ------------------------------------------------------------------------
231
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:34 -0400
232
-  (0.1ms) rollback transaction
233
-  (0.0ms) begin transaction
234
- ----------------------------------------------------------------------
235
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
236
- ----------------------------------------------------------------------
237
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:53:34 -0400
238
-  (0.0ms) rollback transaction
239
-  (0.1ms) begin transaction
240
- ------------------------------------------------------------------------
241
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
242
- ------------------------------------------------------------------------
243
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:10 -0400
244
-  (0.1ms) rollback transaction
245
-  (0.1ms) begin transaction
246
- ----------------------------------------------------------------------
247
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
248
- ----------------------------------------------------------------------
249
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:10 -0400
250
-  (0.0ms) rollback transaction
251
-  (0.1ms) begin transaction
252
- ------------------------------------------------------------------------
253
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
254
- ------------------------------------------------------------------------
255
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:42 -0400
256
-  (0.1ms) rollback transaction
257
-  (0.0ms) begin transaction
258
- ----------------------------------------------------------------------
259
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
260
- ----------------------------------------------------------------------
261
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:55:42 -0400
262
-  (0.1ms) rollback transaction
263
-  (0.1ms) begin transaction
264
- ------------------------------------------------------------------------
265
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
266
- ------------------------------------------------------------------------
267
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:56:08 -0400
268
-  (0.1ms) rollback transaction
269
-  (0.0ms) begin transaction
270
- ----------------------------------------------------------------------
271
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
272
- ----------------------------------------------------------------------
273
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:56:08 -0400
274
-  (0.1ms) rollback transaction
275
-  (0.1ms) begin transaction
276
- ------------------------------------------------------------------------
277
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
278
- ------------------------------------------------------------------------
279
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:06 -0400
280
-  (0.1ms) rollback transaction
281
-  (0.1ms) begin transaction
282
- ----------------------------------------------------------------------
283
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
284
- ----------------------------------------------------------------------
285
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:06 -0400
286
-  (0.1ms) rollback transaction
287
-  (0.1ms) begin transaction
288
- ------------------------------------------------------------------------
289
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
290
- ------------------------------------------------------------------------
291
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:42 -0400
292
-  (0.1ms) rollback transaction
293
-  (0.1ms) begin transaction
294
- ----------------------------------------------------------------------
295
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
296
- ----------------------------------------------------------------------
297
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:58:42 -0400
298
-  (0.1ms) rollback transaction
299
-  (0.1ms) begin transaction
300
- ------------------------------------------------------------------------
301
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
302
- ------------------------------------------------------------------------
303
- Started GET "/images/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 16:59:07 -0400
304
-  (0.1ms) rollback transaction
305
-  (0.0ms) begin transaction
306
- ----------------------------------------------------------------------
307
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
308
- ----------------------------------------------------------------------
309
- Started GET "/images/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 16:59:07 -0400
310
-  (0.0ms) rollback transaction
311
-  (0.1ms) begin transaction
312
- ------------------------------------------------------------------------
313
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
314
- ------------------------------------------------------------------------
315
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:02:53 -0400
316
-  (0.1ms) rollback transaction
317
-  (0.0ms) begin transaction
318
- ----------------------------------------------------------------------
319
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
320
- ----------------------------------------------------------------------
321
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:02:53 -0400
322
-  (0.0ms) rollback transaction
323
-  (0.1ms) begin transaction
324
- ------------------------------------------------------------------------
325
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
326
- ------------------------------------------------------------------------
327
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:36 -0400
328
-  (0.1ms) rollback transaction
329
-  (0.0ms) begin transaction
330
- ----------------------------------------------------------------------
331
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
332
- ----------------------------------------------------------------------
333
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:36 -0400
334
-  (0.1ms) rollback transaction
335
-  (0.1ms) begin transaction
336
- ------------------------------------------------------------------------
337
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
338
- ------------------------------------------------------------------------
339
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:57 -0400
340
-  (0.1ms) rollback transaction
341
-  (0.0ms) begin transaction
342
- ----------------------------------------------------------------------
343
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
344
- ----------------------------------------------------------------------
345
- Started GET "/images/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:03:57 -0400
346
-  (0.0ms) rollback transaction
347
-  (0.1ms) begin transaction
348
- ------------------------------------------------------------------------
349
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
350
- ------------------------------------------------------------------------
351
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:05 -0400
352
-  (0.1ms) rollback transaction
353
-  (0.0ms) begin transaction
354
- ----------------------------------------------------------------------
355
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
356
- ----------------------------------------------------------------------
357
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:05 -0400
358
-  (0.0ms) rollback transaction
359
-  (0.1ms) begin transaction
360
- ------------------------------------------------------------------------
361
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
362
- ------------------------------------------------------------------------
363
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:30 -0400
364
-  (0.1ms) rollback transaction
365
-  (0.1ms) begin transaction
366
- ----------------------------------------------------------------------
367
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
368
- ----------------------------------------------------------------------
369
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:07:30 -0400
370
-  (0.0ms) rollback transaction
371
-  (0.1ms) begin transaction
372
- ------------------------------------------------------------------------
373
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
374
- ------------------------------------------------------------------------
375
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:14:06 -0400
376
-  (0.1ms) rollback transaction
377
-  (0.0ms) begin transaction
378
- ----------------------------------------------------------------------
379
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
380
- ----------------------------------------------------------------------
381
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:14:06 -0400
382
-  (0.1ms) rollback transaction
383
-  (0.1ms) begin transaction
384
- ------------------------------------------------------------------------
385
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
386
- ------------------------------------------------------------------------
387
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:15:03 -0400
388
-  (0.1ms) rollback transaction
389
-  (0.0ms) begin transaction
390
- ----------------------------------------------------------------------
391
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
392
- ----------------------------------------------------------------------
393
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:15:03 -0400
394
-  (0.1ms) rollback transaction
395
-  (0.1ms) begin transaction
396
- ------------------------------------------------------------------------
397
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
398
- ------------------------------------------------------------------------
399
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:16:36 -0400
400
-  (0.2ms) rollback transaction
401
-  (0.0ms) begin transaction
402
- ----------------------------------------------------------------------
403
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
404
- ----------------------------------------------------------------------
405
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:16:36 -0400
406
-  (0.1ms) rollback transaction
407
-  (0.1ms) begin transaction
408
- ------------------------------------------------------------------------
409
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
410
- ------------------------------------------------------------------------
411
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:18:10 -0400
412
-  (0.3ms) rollback transaction
413
-  (0.1ms) begin transaction
414
- ----------------------------------------------------------------------
415
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
416
- ----------------------------------------------------------------------
417
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:18:10 -0400
418
-  (0.1ms) rollback transaction
419
-  (0.1ms) begin transaction
420
- ------------------------------------------------------------------------
421
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
422
- ------------------------------------------------------------------------
423
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:34:28 -0400
424
-  (0.1ms) rollback transaction
425
-  (0.1ms) begin transaction
426
- ----------------------------------------------------------------------
427
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
428
- ----------------------------------------------------------------------
429
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:34:28 -0400
430
-  (0.1ms) rollback transaction
431
-  (0.1ms) begin transaction
432
- ------------------------------------------------------------------------
433
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
434
- ------------------------------------------------------------------------
435
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:36:45 -0400
436
-  (0.1ms) rollback transaction
437
-  (0.0ms) begin transaction
438
- ----------------------------------------------------------------------
439
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
440
- ----------------------------------------------------------------------
441
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:36:45 -0400
442
-  (0.0ms) rollback transaction
443
-  (0.1ms) begin transaction
444
- ------------------------------------------------------------------------
445
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
446
- ------------------------------------------------------------------------
447
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:37:06 -0400
448
-  (0.1ms) rollback transaction
449
-  (0.0ms) begin transaction
450
- ----------------------------------------------------------------------
451
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
452
- ----------------------------------------------------------------------
453
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:37:06 -0400
454
-  (0.1ms) rollback transaction
455
-  (0.1ms) begin transaction
456
- ------------------------------------------------------------------------
457
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
458
- ------------------------------------------------------------------------
459
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:19 -0400
460
-  (0.1ms) rollback transaction
461
-  (0.1ms) begin transaction
462
- ----------------------------------------------------------------------
463
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
464
- ----------------------------------------------------------------------
465
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:19 -0400
466
-  (0.0ms) rollback transaction
467
-  (0.1ms) begin transaction
468
- ------------------------------------------------------------------------
469
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
470
- ------------------------------------------------------------------------
471
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:32 -0400
472
-  (0.1ms) rollback transaction
473
-  (0.0ms) begin transaction
474
- ----------------------------------------------------------------------
475
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
476
- ----------------------------------------------------------------------
477
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:40:32 -0400
478
-  (0.0ms) rollback transaction
479
-  (0.1ms) begin transaction
480
- ------------------------------------------------------------------------
481
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
482
- ------------------------------------------------------------------------
483
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:14 -0400
484
-  (0.1ms) rollback transaction
485
-  (0.0ms) begin transaction
486
- ----------------------------------------------------------------------
487
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
488
- ----------------------------------------------------------------------
489
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:14 -0400
490
-  (0.0ms) rollback transaction
491
-  (0.1ms) begin transaction
492
- ------------------------------------------------------------------------
493
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
494
- ------------------------------------------------------------------------
495
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:40 -0400
496
-  (0.1ms) rollback transaction
497
-  (0.1ms) begin transaction
498
- ----------------------------------------------------------------------
499
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
500
- ----------------------------------------------------------------------
501
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:57:40 -0400
502
-  (0.0ms) rollback transaction
503
-  (0.1ms) begin transaction
504
- ------------------------------------------------------------------------
505
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
506
- ------------------------------------------------------------------------
507
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:00 -0400
508
-  (0.1ms) rollback transaction
509
-  (0.0ms) begin transaction
510
- ----------------------------------------------------------------------
511
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
512
- ----------------------------------------------------------------------
513
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:00 -0400
514
-  (0.0ms) rollback transaction
515
-  (0.1ms) begin transaction
516
- ------------------------------------------------------------------------
517
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
518
- ------------------------------------------------------------------------
519
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:17 -0400
520
-  (0.1ms) rollback transaction
521
-  (0.0ms) begin transaction
522
- ----------------------------------------------------------------------
523
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
524
- ----------------------------------------------------------------------
525
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:17 -0400
526
-  (0.0ms) rollback transaction
527
-  (0.1ms) begin transaction
528
- ------------------------------------------------------------------------
529
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
530
- ------------------------------------------------------------------------
531
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:27 -0400
532
-  (0.1ms) rollback transaction
533
-  (0.1ms) begin transaction
534
- ----------------------------------------------------------------------
535
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
536
- ----------------------------------------------------------------------
537
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:58:27 -0400
538
-  (0.1ms) rollback transaction
539
-  (0.1ms) begin transaction
540
- ------------------------------------------------------------------------
541
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
542
- ------------------------------------------------------------------------
543
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 17:59:08 -0400
544
-  (0.1ms) rollback transaction
545
-  (0.1ms) begin transaction
546
- ----------------------------------------------------------------------
547
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
548
- ----------------------------------------------------------------------
549
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 17:59:08 -0400
550
-  (0.0ms) rollback transaction
551
-  (0.2ms) begin transaction
552
- ------------------------------------------------------------------------
553
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
554
- ------------------------------------------------------------------------
555
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 18:09:16 -0400
556
-  (0.1ms) rollback transaction
557
-  (0.0ms) begin transaction
558
- ----------------------------------------------------------------------
559
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
560
- ----------------------------------------------------------------------
561
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 18:09:16 -0400
562
-  (0.1ms) rollback transaction
563
-  (0.1ms) begin transaction
564
- ------------------------------------------------------------------------
565
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
566
- ------------------------------------------------------------------------
567
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:40:39 -0400
568
-  (0.1ms) rollback transaction
569
-  (0.0ms) begin transaction
570
- ----------------------------------------------------------------------
571
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
572
- ----------------------------------------------------------------------
573
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:40:39 -0400
574
-  (0.1ms) rollback transaction
575
-  (0.1ms) begin transaction
576
- ------------------------------------------------------------------------
577
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
578
- ------------------------------------------------------------------------
579
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:50:45 -0400
580
-  (0.1ms) rollback transaction
581
-  (0.0ms) begin transaction
582
- ----------------------------------------------------------------------
583
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
584
- ----------------------------------------------------------------------
585
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:50:45 -0400
586
-  (0.1ms) rollback transaction
587
-  (0.1ms) begin transaction
588
- ------------------------------------------------------------------------
589
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
590
- ------------------------------------------------------------------------
591
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:51:58 -0400
592
-  (0.1ms) rollback transaction
593
-  (0.0ms) begin transaction
594
- ----------------------------------------------------------------------
595
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
596
- ----------------------------------------------------------------------
597
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:51:58 -0400
598
-  (0.0ms) rollback transaction
599
-  (0.1ms) begin transaction
600
- ------------------------------------------------------------------------
601
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
602
- ------------------------------------------------------------------------
603
- Started GET "/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:29 -0400
604
-  (0.1ms) rollback transaction
605
-  (0.0ms) begin transaction
606
- ----------------------------------------------------------------------
607
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
608
- ----------------------------------------------------------------------
609
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:29 -0400
610
-  (0.0ms) rollback transaction
611
-  (0.1ms) begin transaction
612
- ------------------------------------------------------------------------
613
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
614
- ------------------------------------------------------------------------
615
- Started GET "/assets/randomuser_local/portraits/women/191.jpg" for 127.0.0.1 at 2014-07-28 19:52:48 -0400
616
-  (0.1ms) rollback transaction
617
-  (0.0ms) begin transaction
618
- ----------------------------------------------------------------------
619
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
620
- ----------------------------------------------------------------------
621
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:48 -0400
622
-  (0.0ms) rollback transaction
623
-  (0.1ms) begin transaction
624
- ------------------------------------------------------------------------
625
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
626
- ------------------------------------------------------------------------
627
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:56 -0400
628
-  (0.1ms) rollback transaction
629
-  (0.1ms) begin transaction
630
- ----------------------------------------------------------------------
631
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
632
- ----------------------------------------------------------------------
633
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:52:56 -0400
634
-  (0.0ms) rollback transaction
635
-  (0.1ms) begin transaction
636
- ------------------------------------------------------------------------
637
- NavigationTest: test_female_headshots_are_served_with_the_asset_pipeline
638
- ------------------------------------------------------------------------
639
- Started GET "/assets/randomuser_local/portraits/women/9.jpg" for 127.0.0.1 at 2014-07-28 19:53:42 -0400
640
-  (0.2ms) rollback transaction
641
-  (0.2ms) begin transaction
642
- ----------------------------------------------------------------------
643
- NavigationTest: test_male_headshots_are_served_with_the_asset_pipeline
644
- ----------------------------------------------------------------------
645
- Started GET "/assets/randomuser_local/portraits/men/9.jpg" for 127.0.0.1 at 2014-07-28 19:53:42 -0400
646
-  (0.1ms) rollback transaction