daengine 0.6.14 → 0.6.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1af6873d4a2ed4f440172001ba0c30367a90bf6
4
- data.tar.gz: 9f9dc3e8122aeb4836560070cba76042238ebfb8
3
+ metadata.gz: 977f021988feeec950efcb6383feb0a3d649f4d2
4
+ data.tar.gz: f52112af435bc767996c10196d424785dab1ca68
5
5
  SHA512:
6
- metadata.gz: 24b9bf0934ef19c4571c7b45143bc31b487f3b0c5745767242e99375f04305f43d1865434d073f408f0fccbdb0b38097d39da4171211344e34d62eeff823af38
7
- data.tar.gz: a89635116ad583d0d32049529f4f8844bc9c22030e009501abf4f653cec6b606c2ec9195797c84b67f2d66f5989d8e5650c71324ac6615e961a27afb9d353b40
6
+ metadata.gz: 7b66fdfcc28faafcd0fc20fa48a0fb805e1425e3cdaa864970cf7165f7e21eaec346a6231511f29b8c6f4ca789ac08b8da1dd5729458e3c9094b474db4bb809f
7
+ data.tar.gz: bc655e7cfaa0461817dfefb1fa87fd75601f498f7fe92c0e50b145309b8361b70c5f49990b74a205c03ac32eddd55550444b5eb01e81f436a31f9933b0754ba3
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ source "http://rubygems.org"
4
4
  # Bundler will treat runtime dependencies like base dependencies, and
5
5
  # development dependencies will be added by default to the :development group.
6
6
  gemspec
7
-
7
+ # gem 'rspec_api_documentation', :git => 'https://github.com/tazsingh/rspec_api_documentation.git'
8
8
  # jquery-rails is used by the dummy application
9
9
  # gem "jquery-rails"
10
10
 
@@ -64,6 +64,7 @@ class DigitalAsset
64
64
  scope :audience_in, ->(audience) {where(:audiences.in => audience)}
65
65
  scope :alphabetical, order_by(:title => :asc)
66
66
  scope :not_xbrl, -> {excludes(:'content_type' => ContentType::XBRL_DOCUMENT)}
67
+ scope :fund_docs, -> {where(:'content_type'.in => ContentType::FUND_DOC_TYPES)}
67
68
 
68
69
  # validations
69
70
  validates_presence_of :digital_asset_id, :title, :changed_at, :published_at,
data/bin/process_assets CHANGED
File without changes
@@ -1,3 +1,3 @@
1
1
  module Daengine
2
- VERSION = "0.6.14"
2
+ VERSION = "0.6.15"
3
3
  end
@@ -61,6 +61,21 @@ resource "Digital Assets", :api => true do
61
61
  status.should == 404
62
62
  end
63
63
  end
64
+ post "/digital_assets/updated_time" do
65
+ parameter :ids, :require => true
66
+ before {
67
+ FactoryGirl.create :digital_asset, digital_asset_id: 'id-1'
68
+ FactoryGirl.create :digital_asset, digital_asset_id: 'id-3'
69
+ FactoryGirl.create :digital_asset, digital_asset_id: 'id-4'
70
+ }
71
+ let(:ids) {['id-1','id-2','id-3','id-4']}
72
+ example "retrieve the updated_time for a list of id " do
73
+ do_request()
74
+ status.should eq(200)
75
+ body_updated_time = JSON.parse(response_body)
76
+ expect(body_updated_time.length).to eq(3)
77
+ end
78
+ end
64
79
  put "/digital_assets/:id" do
65
80
  parameter :digital_asset, :require => true
66
81
  parameter :digital_asset_id, "the ID of the digital asset to get, equivalent to the digital_asset_id or Accent doc-id", :require => true
@@ -78,7 +93,6 @@ resource "Digital Assets", :api => true do
78
93
  end
79
94
  post "/digital_assets" do
80
95
  parameter :digital_asset, :require => true
81
-
82
96
  let(:da) {FactoryGirl.build :digital_asset, digital_asset_id: 'new-digital-asset-id'}
83
97
  let(:digital_asset) {da.attributes}
84
98
  example "insert a digital_asset if not found" do
@@ -98,19 +112,9 @@ resource "Digital Assets", :api => true do
98
112
  expect { DigitalAsset.find(id) }.to raise_error
99
113
  end
100
114
  end
101
- post "/digital_assets/updated_time" do
102
- parameter :ids, :require => true
103
- before {
104
- FactoryGirl.create :digital_asset, digital_asset_id: 'id-1'
105
- FactoryGirl.create :digital_asset, digital_asset_id: 'id-3'
106
- FactoryGirl.create :digital_asset, digital_asset_id: 'id-4'
107
- }
108
- let(:ids) {['id-1','id-2','id-3','id-4']}
109
- example "retrieve the updated_time for a list of id " do
110
- do_request()
111
- status.should eq(200)
112
- body_updated_time = JSON.parse(response_body)
113
- expect(body_updated_time.length).to eq(3)
114
- end
115
- end
115
+ get "/" do
116
+ example_request "no-op" do
117
+ true.should eq(true)
118
+ end
119
+ end
116
120
  end
@@ -10400,3 +10400,1540 @@ Completed 200 OK in 62.0ms (Views: 61.0ms)
10400
10400
  Processing by DigitalAssetsController#search as HTML
10401
10401
  Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
10402
10402
  Completed 200 OK in 3.0ms (Views: 2.0ms)
10403
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 06:56:22 -0700
10404
+ Processing by DigitalAssetsController#index as JSON
10405
+ Completed 200 OK in 5.0ms (Views: 4.0ms)
10406
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 06:56:22 -0700
10407
+ Processing by DigitalAssetsController#index as JSON
10408
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10409
+ Completed 200 OK in 46.0ms (Views: 44.0ms)
10410
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10411
+ Processing by DigitalAssetsController#index as JSON
10412
+ Parameters: {"fund"=>"00200"}
10413
+ Completed 200 OK in 56.0ms (Views: 54.0ms)
10414
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10415
+ Processing by DigitalAssetsController#index as JSON
10416
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10417
+ Completed 200 OK in 20.0ms (Views: 16.0ms)
10418
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10419
+ Processing by DigitalAssetsController#index as JSON
10420
+ Parameters: {"path"=>"/some/other/path.pdf"}
10421
+ Completed 200 OK in 19.0ms (Views: 18.0ms)
10422
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10423
+ Processing by DigitalAssetsController#index as JSON
10424
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10425
+ Completed 200 OK in 22.0ms (Views: 21.0ms)
10426
+ Started GET "/digital_assets?published=2014-02-20+11%3A56%3A23+UTC" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10427
+ Processing by DigitalAssetsController#index as JSON
10428
+ Parameters: {"published"=>"2014-02-20 11:56:23 UTC"}
10429
+ Completed 200 OK in 42.0ms (Views: 15.0ms)
10430
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10431
+ Processing by DigitalAssetsController#show as JSON
10432
+ Parameters: {"id"=>"foo-bar-id"}
10433
+ Completed 200 OK in 44.0ms (Views: 12.0ms)
10434
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10435
+ Processing by DigitalAssetsController#show as JSON
10436
+ Parameters: {"id"=>"not-found-doc"}
10437
+ Completed 404 Not Found in 58.0ms (Views: 1.0ms)
10438
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10439
+ Processing by DigitalAssetsController#update as JSON
10440
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 13:56:22 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 13:56:22 UTC", "expires_at"=>"2014-04-20 13:56:22 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/9/foo/bar.txt", "finra_path"=>"/path/finradoc/10/foo/bar.txt", "legacy_path"=>"/oldpath/10/foo/bar.txt", "doc_changed_at"=>"2014-02-18 13:56:22 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 13:56:23 UTC", "created_at"=>"2014-02-20 13:56:23 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10441
+ Completed 200 OK in 21.0ms
10442
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10443
+ Processing by DigitalAssetsController#create as JSON
10444
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060987bed437b1619b373d", "title"=>"Doc Title", "changed_at"=>"2014-02-18 13:56:22 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 13:56:22 UTC", "expires_at"=>"2014-04-20 13:56:22 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/10/foo/bar.txt", "finra_path"=>"/path/finradoc/11/foo/bar.txt", "legacy_path"=>"/oldpath/11/foo/bar.txt", "doc_changed_at"=>"2014-02-18 13:56:22 UTC", "content_type"=>"fact_sheet"}}
10445
+ Completed 201 Created in 35.0ms
10446
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10447
+ Processing by DigitalAssetsController#destroy as JSON
10448
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10449
+ Completed 200 OK in 6.0ms
10450
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 06:56:23 -0700
10451
+ Processing by DigitalAssetsController#updated_time as JSON
10452
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10453
+ Completed 200 OK in 49.0ms (Views: 1.0ms)
10454
+ Processing by DigitalAssetsController#index as HTML
10455
+ Completed 200 OK in 3.0ms (Views: 2.0ms)
10456
+ Processing by DigitalAssetsController#show as HTML
10457
+ Parameters: {"id"=>"id-foobar-permanent-9"}
10458
+ Completed 406 Not Acceptable in 5.0ms
10459
+ Processing by DigitalAssetsController#show as HTML
10460
+ Parameters: {"id"=>"IL1111.077"}
10461
+ Completed 406 Not Acceptable in 5.0ms
10462
+ Processing by DigitalAssetsController#show as HTML
10463
+ Parameters: {"id"=>"IL1111.077"}
10464
+ Completed 406 Not Acceptable in 5.0ms
10465
+ Processing by DigitalAssetsController#show as HTML
10466
+ Parameters: {"id"=>"id-foobar-permanent-13"}
10467
+ Completed 406 Not Acceptable in 6.0ms
10468
+ Processing by DigitalAssetsController#search as HTML
10469
+ Completed 200 OK in 3.0ms (Views: 2.0ms)
10470
+ Processing by DigitalAssetsController#search as HTML
10471
+ Parameters: {"path"=>"/one/off.path"}
10472
+ Completed 200 OK in 14.0ms (Views: 12.0ms)
10473
+ Processing by DigitalAssetsController#search as HTML
10474
+ Parameters: {"doctype"=>"fact_sheet"}
10475
+ Completed 200 OK in 4.0ms (Views: 2.0ms)
10476
+ Processing by DigitalAssetsController#search as HTML
10477
+ Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
10478
+ Completed 200 OK in 13.0ms (Views: 12.0ms)
10479
+ Processing by DigitalAssetsController#search as HTML
10480
+ Parameters: {"sami"=>"SOMETHING.001"}
10481
+ Completed 200 OK in 29.0ms (Views: 27.0ms)
10482
+ Processing by DigitalAssetsController#search as HTML
10483
+ Parameters: {"audience"=>"492"}
10484
+ Completed 200 OK in 28.0ms (Views: 27.0ms)
10485
+ Processing by DigitalAssetsController#search as HTML
10486
+ Parameters: {"title"=>"Doc Title"}
10487
+ Completed 200 OK in 4.0ms (Views: 2.0ms)
10488
+ Processing by DigitalAssetsController#search as HTML
10489
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-35"}
10490
+ Completed 200 OK in 14.0ms (Views: 12.0ms)
10491
+ Processing by DigitalAssetsController#search as HTML
10492
+ Parameters: {"business_owner"=>"biz owner"}
10493
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10494
+ Processing by DigitalAssetsController#search as HTML
10495
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-42", "title"=>"Doc Title"}
10496
+ Completed 200 OK in 12.0ms (Views: 11.0ms)
10497
+ Processing by DigitalAssetsController#search as HTML
10498
+ Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
10499
+ Completed 200 OK in 67.0ms (Views: 66.0ms)
10500
+ Processing by DigitalAssetsController#search as HTML
10501
+ Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
10502
+ Completed 200 OK in 4.0ms (Views: 2.0ms)
10503
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10504
+ Processing by DigitalAssetsController#index as JSON
10505
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10506
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10507
+ Processing by DigitalAssetsController#index as JSON
10508
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10509
+ Completed 200 OK in 71.0ms (Views: 70.0ms)
10510
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10511
+ Processing by DigitalAssetsController#index as JSON
10512
+ Parameters: {"fund"=>"00200"}
10513
+ Completed 200 OK in 36.0ms (Views: 35.0ms)
10514
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10515
+ Processing by DigitalAssetsController#index as JSON
10516
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10517
+ Completed 200 OK in 21.0ms (Views: 17.0ms)
10518
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10519
+ Processing by DigitalAssetsController#index as JSON
10520
+ Parameters: {"path"=>"/some/other/path.pdf"}
10521
+ Completed 200 OK in 18.0ms (Views: 17.0ms)
10522
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10523
+ Processing by DigitalAssetsController#index as JSON
10524
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10525
+ Completed 200 OK in 21.0ms (Views: 18.0ms)
10526
+ Started GET "/digital_assets?published=2014-02-20+12%3A04%3A25+UTC" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10527
+ Processing by DigitalAssetsController#index as JSON
10528
+ Parameters: {"published"=>"2014-02-20 12:04:25 UTC"}
10529
+ Completed 200 OK in 45.0ms (Views: 16.0ms)
10530
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:04:25 -0700
10531
+ Processing by DigitalAssetsController#show as JSON
10532
+ Parameters: {"id"=>"foo-bar-id"}
10533
+ Completed 200 OK in 44.0ms (Views: 12.0ms)
10534
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:04:26 -0700
10535
+ Processing by DigitalAssetsController#show as JSON
10536
+ Parameters: {"id"=>"not-found-doc"}
10537
+ Completed 404 Not Found in 77.0ms (Views: 2.0ms)
10538
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:04:26 -0700
10539
+ Processing by DigitalAssetsController#update as JSON
10540
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:04:25 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:04:25 UTC", "expires_at"=>"2014-04-20 14:04:25 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/9/foo/bar.txt", "finra_path"=>"/path/finradoc/10/foo/bar.txt", "legacy_path"=>"/oldpath/10/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:04:25 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:04:26 UTC", "created_at"=>"2014-02-20 14:04:26 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10541
+ Completed 200 OK in 23.0ms
10542
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:04:26 -0700
10543
+ Processing by DigitalAssetsController#create as JSON
10544
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060b6abed407f2fb8a52ff", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:04:25 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:04:25 UTC", "expires_at"=>"2014-04-20 14:04:25 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/10/foo/bar.txt", "finra_path"=>"/path/finradoc/11/foo/bar.txt", "legacy_path"=>"/oldpath/11/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:04:25 UTC", "content_type"=>"fact_sheet"}}
10545
+ Completed 201 Created in 35.0ms
10546
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:04:26 -0700
10547
+ Processing by DigitalAssetsController#destroy as JSON
10548
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10549
+ Completed 200 OK in 6.0ms
10550
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:04:26 -0700
10551
+ Processing by DigitalAssetsController#updated_time as JSON
10552
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10553
+ Completed 200 OK in 52.0ms (Views: 0.0ms)
10554
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:08:56 -0700
10555
+ Processing by DigitalAssetsController#index as JSON
10556
+ Completed 200 OK in 5.0ms (Views: 2.0ms)
10557
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:08:56 -0700
10558
+ Processing by DigitalAssetsController#index as JSON
10559
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10560
+ Completed 200 OK in 56.0ms (Views: 52.0ms)
10561
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:08:56 -0700
10562
+ Processing by DigitalAssetsController#index as JSON
10563
+ Parameters: {"fund"=>"00200"}
10564
+ Completed 200 OK in 48.0ms (Views: 47.0ms)
10565
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:08:56 -0700
10566
+ Processing by DigitalAssetsController#index as JSON
10567
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10568
+ Completed 200 OK in 28.0ms (Views: 24.0ms)
10569
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:08:56 -0700
10570
+ Processing by DigitalAssetsController#index as JSON
10571
+ Parameters: {"path"=>"/some/other/path.pdf"}
10572
+ Completed 200 OK in 52.0ms (Views: 51.0ms)
10573
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:08:56 -0700
10574
+ Processing by DigitalAssetsController#index as JSON
10575
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10576
+ Completed 200 OK in 45.0ms (Views: 27.0ms)
10577
+ Started GET "/digital_assets?published=2014-02-20+12%3A08%3A57+UTC" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10578
+ Processing by DigitalAssetsController#index as JSON
10579
+ Parameters: {"published"=>"2014-02-20 12:08:57 UTC"}
10580
+ Completed 200 OK in 33.0ms (Views: 14.0ms)
10581
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10582
+ Processing by DigitalAssetsController#show as JSON
10583
+ Parameters: {"id"=>"foo-bar-id"}
10584
+ Completed 200 OK in 92.0ms (Views: 31.0ms)
10585
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10586
+ Processing by DigitalAssetsController#show as JSON
10587
+ Parameters: {"id"=>"not-found-doc"}
10588
+ Completed 404 Not Found in 66.0ms (Views: 1.0ms)
10589
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10590
+ Processing by DigitalAssetsController#update as JSON
10591
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:08:56 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:08:56 UTC", "expires_at"=>"2014-04-20 14:08:56 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/9/foo/bar.txt", "finra_path"=>"/path/finradoc/10/foo/bar.txt", "legacy_path"=>"/oldpath/10/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:08:56 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:08:57 UTC", "created_at"=>"2014-02-20 14:08:57 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10592
+ Completed 200 OK in 27.0ms
10593
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10594
+ Processing by DigitalAssetsController#create as JSON
10595
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060c79bed4736e3e37f0e6", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:08:56 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:08:56 UTC", "expires_at"=>"2014-04-20 14:08:56 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/10/foo/bar.txt", "finra_path"=>"/path/finradoc/11/foo/bar.txt", "legacy_path"=>"/oldpath/11/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:08:56 UTC", "content_type"=>"fact_sheet"}}
10596
+ Completed 201 Created in 57.0ms
10597
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10598
+ Processing by DigitalAssetsController#destroy as JSON
10599
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10600
+ Completed 200 OK in 9.0ms
10601
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:08:57 -0700
10602
+ Processing by DigitalAssetsController#updated_time as JSON
10603
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10604
+ Completed 200 OK in 29.0ms (Views: 1.0ms)
10605
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10606
+ Processing by DigitalAssetsController#index as JSON
10607
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10608
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10609
+ Processing by DigitalAssetsController#index as JSON
10610
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10611
+ Completed 200 OK in 53.0ms (Views: 50.0ms)
10612
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10613
+ Processing by DigitalAssetsController#index as JSON
10614
+ Parameters: {"fund"=>"00200"}
10615
+ Completed 200 OK in 43.0ms (Views: 42.0ms)
10616
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10617
+ Processing by DigitalAssetsController#index as JSON
10618
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10619
+ Completed 200 OK in 27.0ms (Views: 23.0ms)
10620
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10621
+ Processing by DigitalAssetsController#index as JSON
10622
+ Parameters: {"path"=>"/some/other/path.pdf"}
10623
+ Completed 200 OK in 52.0ms (Views: 50.0ms)
10624
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10625
+ Processing by DigitalAssetsController#index as JSON
10626
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10627
+ Completed 200 OK in 46.0ms (Views: 27.0ms)
10628
+ Started GET "/digital_assets?published=2014-02-20+12%3A10%3A37+UTC" for 127.0.0.1 at 2014-02-20 07:10:37 -0700
10629
+ Processing by DigitalAssetsController#index as JSON
10630
+ Parameters: {"published"=>"2014-02-20 12:10:37 UTC"}
10631
+ Completed 200 OK in 32.0ms (Views: 13.0ms)
10632
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:10:38 -0700
10633
+ Processing by DigitalAssetsController#show as JSON
10634
+ Parameters: {"id"=>"foo-bar-id"}
10635
+ Completed 200 OK in 104.0ms (Views: 30.0ms)
10636
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:10:38 -0700
10637
+ Processing by DigitalAssetsController#show as JSON
10638
+ Parameters: {"id"=>"not-found-doc"}
10639
+ Completed 404 Not Found in 75.0ms (Views: 2.0ms)
10640
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:10:38 -0700
10641
+ Processing by DigitalAssetsController#update as JSON
10642
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:10:36 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:10:36 UTC", "expires_at"=>"2014-04-20 14:10:36 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/9/foo/bar.txt", "finra_path"=>"/path/finradoc/10/foo/bar.txt", "legacy_path"=>"/oldpath/10/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:10:36 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:10:38 UTC", "created_at"=>"2014-02-20 14:10:38 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10643
+ Completed 200 OK in 33.0ms
10644
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:10:38 -0700
10645
+ Processing by DigitalAssetsController#create as JSON
10646
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060cdebed4a3e68bb32d52", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:10:36 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:10:36 UTC", "expires_at"=>"2014-04-20 14:10:36 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/10/foo/bar.txt", "finra_path"=>"/path/finradoc/11/foo/bar.txt", "legacy_path"=>"/oldpath/11/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:10:36 UTC", "content_type"=>"fact_sheet"}}
10647
+ Completed 201 Created in 60.0ms
10648
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:10:38 -0700
10649
+ Processing by DigitalAssetsController#destroy as JSON
10650
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10651
+ Completed 200 OK in 7.0ms
10652
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:10:38 -0700
10653
+ Processing by DigitalAssetsController#updated_time as JSON
10654
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10655
+ Completed 200 OK in 30.0ms (Views: 0.0ms)
10656
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:14:35 -0700
10657
+ Processing by DigitalAssetsController#index as JSON
10658
+ Completed 200 OK in 5.0ms (Views: 3.0ms)
10659
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10660
+ Processing by DigitalAssetsController#index as JSON
10661
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10662
+ Completed 200 OK in 49.0ms (Views: 47.0ms)
10663
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10664
+ Processing by DigitalAssetsController#index as JSON
10665
+ Parameters: {"fund"=>"00200"}
10666
+ Completed 200 OK in 33.0ms (Views: 32.0ms)
10667
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10668
+ Processing by DigitalAssetsController#index as JSON
10669
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10670
+ Completed 200 OK in 23.0ms (Views: 18.0ms)
10671
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10672
+ Processing by DigitalAssetsController#index as JSON
10673
+ Parameters: {"path"=>"/some/other/path.pdf"}
10674
+ Completed 200 OK in 18.0ms (Views: 16.0ms)
10675
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10676
+ Processing by DigitalAssetsController#index as JSON
10677
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10678
+ Completed 200 OK in 20.0ms (Views: 19.0ms)
10679
+ Started GET "/digital_assets?published=2014-02-20+12%3A14%3A36+UTC" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10680
+ Processing by DigitalAssetsController#index as JSON
10681
+ Parameters: {"published"=>"2014-02-20 12:14:36 UTC"}
10682
+ Completed 200 OK in 44.0ms (Views: 16.0ms)
10683
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10684
+ Processing by DigitalAssetsController#show as JSON
10685
+ Parameters: {"id"=>"foo-bar-id"}
10686
+ Completed 200 OK in 40.0ms (Views: 10.0ms)
10687
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10688
+ Processing by DigitalAssetsController#show as JSON
10689
+ Parameters: {"id"=>"not-found-doc"}
10690
+ Completed 404 Not Found in 56.0ms (Views: 1.0ms)
10691
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10692
+ Processing by DigitalAssetsController#update as JSON
10693
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:14:35 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:14:35 UTC", "expires_at"=>"2014-04-20 14:14:35 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/9/foo/bar.txt", "finra_path"=>"/path/finradoc/10/foo/bar.txt", "legacy_path"=>"/oldpath/10/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:14:35 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:14:36 UTC", "created_at"=>"2014-02-20 14:14:36 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10694
+ Completed 200 OK in 24.0ms
10695
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10696
+ Processing by DigitalAssetsController#create as JSON
10697
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060dccbed429ce5ad42fef", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:14:35 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:14:35 UTC", "expires_at"=>"2014-04-20 14:14:35 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/10/foo/bar.txt", "finra_path"=>"/path/finradoc/11/foo/bar.txt", "legacy_path"=>"/oldpath/11/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:14:35 UTC", "content_type"=>"fact_sheet"}}
10698
+ Completed 201 Created in 36.0ms
10699
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10700
+ Processing by DigitalAssetsController#destroy as JSON
10701
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10702
+ Completed 200 OK in 9.0ms
10703
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:14:36 -0700
10704
+ Processing by DigitalAssetsController#updated_time as JSON
10705
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10706
+ Completed 200 OK in 26.0ms (Views: 0.0ms)
10707
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:16:02 -0700
10708
+ Processing by DigitalAssetsController#index as JSON
10709
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10710
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:16:02 -0700
10711
+ Processing by DigitalAssetsController#index as JSON
10712
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10713
+ Completed 200 OK in 48.0ms (Views: 47.0ms)
10714
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:16:02 -0700
10715
+ Processing by DigitalAssetsController#index as JSON
10716
+ Parameters: {"fund"=>"00200"}
10717
+ Completed 200 OK in 36.0ms (Views: 34.0ms)
10718
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:16:02 -0700
10719
+ Processing by DigitalAssetsController#index as JSON
10720
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10721
+ Completed 200 OK in 20.0ms (Views: 16.0ms)
10722
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10723
+ Processing by DigitalAssetsController#index as JSON
10724
+ Parameters: {"path"=>"/some/other/path.pdf"}
10725
+ Completed 200 OK in 19.0ms (Views: 17.0ms)
10726
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10727
+ Processing by DigitalAssetsController#index as JSON
10728
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10729
+ Completed 200 OK in 20.0ms (Views: 18.0ms)
10730
+ Started GET "/digital_assets?published=2014-02-20+12%3A16%3A03+UTC" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10731
+ Processing by DigitalAssetsController#index as JSON
10732
+ Parameters: {"published"=>"2014-02-20 12:16:03 UTC"}
10733
+ Completed 200 OK in 43.0ms (Views: 16.0ms)
10734
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10735
+ Processing by DigitalAssetsController#show as JSON
10736
+ Parameters: {"id"=>"foo-bar-id"}
10737
+ Completed 200 OK in 41.0ms (Views: 11.0ms)
10738
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10739
+ Processing by DigitalAssetsController#show as JSON
10740
+ Parameters: {"id"=>"not-found-doc"}
10741
+ Completed 404 Not Found in 76.0ms (Views: 2.0ms)
10742
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10743
+ Processing by DigitalAssetsController#updated_time as JSON
10744
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10745
+ Completed 200 OK in 34.0ms (Views: 0.0ms)
10746
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10747
+ Processing by DigitalAssetsController#update as JSON
10748
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:16:02 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:16:02 UTC", "expires_at"=>"2014-04-20 14:16:02 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:16:02 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:16:03 UTC", "created_at"=>"2014-02-20 14:16:03 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10749
+ Completed 200 OK in 20.0ms
10750
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10751
+ Processing by DigitalAssetsController#create as JSON
10752
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060e23bed4eb11fc142a6c", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:16:02 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:16:02 UTC", "expires_at"=>"2014-04-20 14:16:02 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:16:02 UTC", "content_type"=>"fact_sheet"}}
10753
+ Completed 201 Created in 27.0ms
10754
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:16:03 -0700
10755
+ Processing by DigitalAssetsController#destroy as JSON
10756
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10757
+ Completed 200 OK in 7.0ms
10758
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10759
+ Processing by DigitalAssetsController#index as JSON
10760
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10761
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10762
+ Processing by DigitalAssetsController#index as JSON
10763
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10764
+ Completed 200 OK in 73.0ms (Views: 71.0ms)
10765
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10766
+ Processing by DigitalAssetsController#index as JSON
10767
+ Parameters: {"fund"=>"00200"}
10768
+ Completed 200 OK in 37.0ms (Views: 34.0ms)
10769
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10770
+ Processing by DigitalAssetsController#index as JSON
10771
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10772
+ Completed 200 OK in 19.0ms (Views: 16.0ms)
10773
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10774
+ Processing by DigitalAssetsController#index as JSON
10775
+ Parameters: {"path"=>"/some/other/path.pdf"}
10776
+ Completed 200 OK in 19.0ms (Views: 18.0ms)
10777
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10778
+ Processing by DigitalAssetsController#index as JSON
10779
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10780
+ Completed 200 OK in 20.0ms (Views: 18.0ms)
10781
+ Started GET "/digital_assets?published=2014-02-20+12%3A17%3A19+UTC" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10782
+ Processing by DigitalAssetsController#index as JSON
10783
+ Parameters: {"published"=>"2014-02-20 12:17:19 UTC"}
10784
+ Completed 200 OK in 45.0ms (Views: 16.0ms)
10785
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10786
+ Processing by DigitalAssetsController#show as JSON
10787
+ Parameters: {"id"=>"foo-bar-id"}
10788
+ Completed 200 OK in 41.0ms (Views: 11.0ms)
10789
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10790
+ Processing by DigitalAssetsController#show as JSON
10791
+ Parameters: {"id"=>"not-found-doc"}
10792
+ Completed 404 Not Found in 76.0ms (Views: 1.0ms)
10793
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10794
+ Processing by DigitalAssetsController#updated_time as JSON
10795
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10796
+ Completed 200 OK in 33.0ms (Views: 0.0ms)
10797
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:17:19 -0700
10798
+ Processing by DigitalAssetsController#update as JSON
10799
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:17:18 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:17:18 UTC", "expires_at"=>"2014-04-20 14:17:18 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:17:18 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:17:19 UTC", "created_at"=>"2014-02-20 14:17:19 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10800
+ Completed 200 OK in 20.0ms
10801
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:17:20 -0700
10802
+ Processing by DigitalAssetsController#create as JSON
10803
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060e70bed47852a976c307", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:17:18 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:17:18 UTC", "expires_at"=>"2014-04-20 14:17:18 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:17:18 UTC", "content_type"=>"fact_sheet"}}
10804
+ Completed 201 Created in 27.0ms
10805
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:17:20 -0700
10806
+ Processing by DigitalAssetsController#destroy as JSON
10807
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10808
+ Completed 200 OK in 6.0ms
10809
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:18:29 -0700
10810
+ Processing by DigitalAssetsController#index as JSON
10811
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10812
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:18:29 -0700
10813
+ Processing by DigitalAssetsController#index as JSON
10814
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10815
+ Completed 200 OK in 70.0ms (Views: 68.0ms)
10816
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:18:29 -0700
10817
+ Processing by DigitalAssetsController#index as JSON
10818
+ Parameters: {"fund"=>"00200"}
10819
+ Completed 200 OK in 36.0ms (Views: 34.0ms)
10820
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:18:29 -0700
10821
+ Processing by DigitalAssetsController#index as JSON
10822
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10823
+ Completed 200 OK in 21.0ms (Views: 17.0ms)
10824
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:18:29 -0700
10825
+ Processing by DigitalAssetsController#index as JSON
10826
+ Parameters: {"path"=>"/some/other/path.pdf"}
10827
+ Completed 200 OK in 19.0ms (Views: 17.0ms)
10828
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:18:29 -0700
10829
+ Processing by DigitalAssetsController#index as JSON
10830
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10831
+ Completed 200 OK in 21.0ms (Views: 19.0ms)
10832
+ Started GET "/digital_assets?published=2014-02-20+12%3A18%3A30+UTC" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10833
+ Processing by DigitalAssetsController#index as JSON
10834
+ Parameters: {"published"=>"2014-02-20 12:18:30 UTC"}
10835
+ Completed 200 OK in 44.0ms (Views: 16.0ms)
10836
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10837
+ Processing by DigitalAssetsController#show as JSON
10838
+ Parameters: {"id"=>"foo-bar-id"}
10839
+ Completed 200 OK in 42.0ms (Views: 11.0ms)
10840
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10841
+ Processing by DigitalAssetsController#show as JSON
10842
+ Parameters: {"id"=>"not-found-doc"}
10843
+ Completed 404 Not Found in 79.0ms (Views: 1.0ms)
10844
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10845
+ Processing by DigitalAssetsController#updated_time as JSON
10846
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10847
+ Completed 200 OK in 33.0ms (Views: 0.0ms)
10848
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10849
+ Processing by DigitalAssetsController#update as JSON
10850
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:18:29 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:18:29 UTC", "expires_at"=>"2014-04-20 14:18:29 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:18:29 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:18:30 UTC", "created_at"=>"2014-02-20 14:18:30 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10851
+ Completed 200 OK in 20.0ms
10852
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10853
+ Processing by DigitalAssetsController#create as JSON
10854
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060eb6bed49e7ba5bf8ed3", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:18:29 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:18:29 UTC", "expires_at"=>"2014-04-20 14:18:29 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:18:29 UTC", "content_type"=>"fact_sheet"}}
10855
+ Completed 201 Created in 27.0ms
10856
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10857
+ Processing by DigitalAssetsController#destroy as JSON
10858
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10859
+ Completed 200 OK in 7.0ms
10860
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:18:30 -0700
10861
+
10862
+ ActionController::RoutingError (No route matches [GET] "/"):
10863
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
10864
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10865
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
10866
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
10867
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
10868
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
10869
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10870
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10871
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10872
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10873
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10874
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
10875
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
10876
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
10877
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
10878
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
10879
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
10880
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
10881
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
10882
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
10883
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
10884
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
10885
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
10886
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
10887
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
10888
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
10889
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
10890
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
10891
+ org/jruby/RubyArray.java:2413:in `map'
10892
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
10893
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
10894
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
10895
+ org/jruby/RubyArray.java:2413:in `map'
10896
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
10897
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
10898
+ org/jruby/RubyArray.java:2413:in `map'
10899
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
10900
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
10901
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
10902
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
10903
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
10904
+
10905
+
10906
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (6.0ms)
10907
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10908
+ Processing by DigitalAssetsController#index as JSON
10909
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
10910
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10911
+ Processing by DigitalAssetsController#index as JSON
10912
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
10913
+ Completed 200 OK in 74.0ms (Views: 71.0ms)
10914
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10915
+ Processing by DigitalAssetsController#index as JSON
10916
+ Parameters: {"fund"=>"00200"}
10917
+ Completed 200 OK in 34.0ms (Views: 32.0ms)
10918
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10919
+ Processing by DigitalAssetsController#index as JSON
10920
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
10921
+ Completed 200 OK in 22.0ms (Views: 17.0ms)
10922
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10923
+ Processing by DigitalAssetsController#index as JSON
10924
+ Parameters: {"path"=>"/some/other/path.pdf"}
10925
+ Completed 200 OK in 19.0ms (Views: 17.0ms)
10926
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10927
+ Processing by DigitalAssetsController#index as JSON
10928
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
10929
+ Completed 200 OK in 22.0ms (Views: 19.0ms)
10930
+ Started GET "/digital_assets?published=2014-02-20+12%3A20%3A33+UTC" for 127.0.0.1 at 2014-02-20 07:20:33 -0700
10931
+ Processing by DigitalAssetsController#index as JSON
10932
+ Parameters: {"published"=>"2014-02-20 12:20:33 UTC"}
10933
+ Completed 200 OK in 44.0ms (Views: 15.0ms)
10934
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10935
+ Processing by DigitalAssetsController#show as JSON
10936
+ Parameters: {"id"=>"foo-bar-id"}
10937
+ Completed 200 OK in 40.0ms (Views: 10.0ms)
10938
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10939
+ Processing by DigitalAssetsController#show as JSON
10940
+ Parameters: {"id"=>"not-found-doc"}
10941
+ Completed 404 Not Found in 75.0ms (Views: 1.0ms)
10942
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10943
+ Processing by DigitalAssetsController#updated_time as JSON
10944
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
10945
+ Completed 200 OK in 36.0ms (Views: 1.0ms)
10946
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10947
+ Processing by DigitalAssetsController#update as JSON
10948
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:20:33 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:20:33 UTC", "expires_at"=>"2014-04-20 14:20:33 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:20:33 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:20:34 UTC", "created_at"=>"2014-02-20 14:20:34 UTC"}, "id"=>"foo-bar-digital-asset-id"}
10949
+ Completed 200 OK in 20.0ms
10950
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10951
+ Processing by DigitalAssetsController#create as JSON
10952
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53060f32bed47b9d5accb06d", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:20:33 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:20:33 UTC", "expires_at"=>"2014-04-20 14:20:33 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:20:33 UTC", "content_type"=>"fact_sheet"}}
10953
+ Completed 201 Created in 27.0ms
10954
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10955
+ Processing by DigitalAssetsController#destroy as JSON
10956
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
10957
+ Completed 200 OK in 7.0ms
10958
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:20:34 -0700
10959
+
10960
+ ActionController::RoutingError (No route matches [GET] "/"):
10961
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
10962
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10963
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
10964
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
10965
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
10966
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
10967
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10968
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10969
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10970
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10971
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10972
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
10973
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
10974
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
10975
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
10976
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
10977
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
10978
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
10979
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
10980
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
10981
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
10982
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
10983
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
10984
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
10985
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
10986
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
10987
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
10988
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
10989
+ org/jruby/RubyArray.java:2413:in `map'
10990
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
10991
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
10992
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
10993
+ org/jruby/RubyArray.java:2413:in `map'
10994
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
10995
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
10996
+ org/jruby/RubyArray.java:2413:in `map'
10997
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
10998
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
10999
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11000
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11001
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11002
+
11003
+
11004
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
11005
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:24:55 -0700
11006
+ Processing by DigitalAssetsController#index as JSON
11007
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11008
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:24:55 -0700
11009
+ Processing by DigitalAssetsController#index as JSON
11010
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11011
+ Completed 200 OK in 45.0ms (Views: 43.0ms)
11012
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:24:55 -0700
11013
+ Processing by DigitalAssetsController#index as JSON
11014
+ Parameters: {"fund"=>"00200"}
11015
+ Completed 200 OK in 35.0ms (Views: 33.0ms)
11016
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:24:55 -0700
11017
+ Processing by DigitalAssetsController#index as JSON
11018
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11019
+ Completed 200 OK in 21.0ms (Views: 16.0ms)
11020
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11021
+ Processing by DigitalAssetsController#index as JSON
11022
+ Parameters: {"path"=>"/some/other/path.pdf"}
11023
+ Completed 200 OK in 19.0ms (Views: 17.0ms)
11024
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11025
+ Processing by DigitalAssetsController#index as JSON
11026
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11027
+ Completed 200 OK in 21.0ms (Views: 19.0ms)
11028
+ Started GET "/digital_assets?published=2014-02-20+12%3A24%3A56+UTC" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11029
+ Processing by DigitalAssetsController#index as JSON
11030
+ Parameters: {"published"=>"2014-02-20 12:24:56 UTC"}
11031
+ Completed 200 OK in 45.0ms (Views: 16.0ms)
11032
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11033
+ Processing by DigitalAssetsController#show as JSON
11034
+ Parameters: {"id"=>"foo-bar-id"}
11035
+ Completed 200 OK in 43.0ms (Views: 11.0ms)
11036
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11037
+ Processing by DigitalAssetsController#show as JSON
11038
+ Parameters: {"id"=>"not-found-doc"}
11039
+ Completed 404 Not Found in 74.0ms (Views: 1.0ms)
11040
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11041
+ Processing by DigitalAssetsController#updated_time as JSON
11042
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11043
+ Completed 200 OK in 35.0ms (Views: 0.0ms)
11044
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11045
+ Processing by DigitalAssetsController#update as JSON
11046
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:24:55 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:24:55 UTC", "expires_at"=>"2014-04-20 14:24:55 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:24:55 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:24:56 UTC", "created_at"=>"2014-02-20 14:24:56 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11047
+ Completed 200 OK in 21.0ms
11048
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11049
+ Processing by DigitalAssetsController#create as JSON
11050
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53061038bed4cab1aef3648d", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:24:55 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:24:55 UTC", "expires_at"=>"2014-04-20 14:24:55 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:24:55 UTC", "content_type"=>"fact_sheet"}}
11051
+ Completed 201 Created in 28.0ms
11052
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11053
+ Processing by DigitalAssetsController#destroy as JSON
11054
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11055
+ Completed 200 OK in 9.0ms
11056
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:24:56 -0700
11057
+
11058
+ ActionController::RoutingError (No route matches [GET] "/"):
11059
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11060
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11061
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11062
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11063
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11064
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11065
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11066
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11067
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11068
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11069
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11070
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11071
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11072
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11073
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11074
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11075
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11076
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11077
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11078
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11079
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11080
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11081
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11082
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11083
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11084
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11085
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11086
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11087
+ org/jruby/RubyArray.java:2413:in `map'
11088
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11089
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11090
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11091
+ org/jruby/RubyArray.java:2413:in `map'
11092
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11093
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11094
+ org/jruby/RubyArray.java:2413:in `map'
11095
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11096
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11097
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11098
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11099
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11100
+
11101
+
11102
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.0ms)
11103
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:37:00 -0700
11104
+ Processing by DigitalAssetsController#index as JSON
11105
+ Completed 200 OK in 5.0ms (Views: 4.0ms)
11106
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:37:00 -0700
11107
+ Processing by DigitalAssetsController#index as JSON
11108
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11109
+ Completed 200 OK in 46.0ms (Views: 44.0ms)
11110
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:37:00 -0700
11111
+ Processing by DigitalAssetsController#index as JSON
11112
+ Parameters: {"fund"=>"00200"}
11113
+ Completed 200 OK in 32.0ms (Views: 31.0ms)
11114
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:37:00 -0700
11115
+ Processing by DigitalAssetsController#index as JSON
11116
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11117
+ Completed 200 OK in 23.0ms (Views: 19.0ms)
11118
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11119
+ Processing by DigitalAssetsController#index as JSON
11120
+ Parameters: {"path"=>"/some/other/path.pdf"}
11121
+ Completed 200 OK in 18.0ms (Views: 17.0ms)
11122
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11123
+ Processing by DigitalAssetsController#index as JSON
11124
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11125
+ Completed 200 OK in 20.0ms (Views: 18.0ms)
11126
+ Started GET "/digital_assets?published=2014-02-20+12%3A37%3A01+UTC" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11127
+ Processing by DigitalAssetsController#index as JSON
11128
+ Parameters: {"published"=>"2014-02-20 12:37:01 UTC"}
11129
+ Completed 200 OK in 46.0ms (Views: 17.0ms)
11130
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11131
+ Processing by DigitalAssetsController#show as JSON
11132
+ Parameters: {"id"=>"foo-bar-id"}
11133
+ Completed 200 OK in 41.0ms (Views: 11.0ms)
11134
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11135
+ Processing by DigitalAssetsController#show as JSON
11136
+ Parameters: {"id"=>"not-found-doc"}
11137
+ Completed 404 Not Found in 57.0ms (Views: 1.0ms)
11138
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11139
+ Processing by DigitalAssetsController#updated_time as JSON
11140
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11141
+ Completed 200 OK in 53.0ms (Views: 0.0ms)
11142
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11143
+ Processing by DigitalAssetsController#update as JSON
11144
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:37:00 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:37:00 UTC", "expires_at"=>"2014-04-20 14:37:00 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:37:00 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:37:01 UTC", "created_at"=>"2014-02-20 14:37:01 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11145
+ Completed 200 OK in 20.0ms
11146
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11147
+ Processing by DigitalAssetsController#create as JSON
11148
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"5306130dbed4ec386ade33dd", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:37:00 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:37:00 UTC", "expires_at"=>"2014-04-20 14:37:00 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:37:00 UTC", "content_type"=>"fact_sheet"}}
11149
+ Completed 201 Created in 26.0ms
11150
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11151
+ Processing by DigitalAssetsController#destroy as JSON
11152
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11153
+ Completed 200 OK in 7.0ms
11154
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:37:01 -0700
11155
+
11156
+ ActionController::RoutingError (No route matches [GET] "/"):
11157
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11158
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11159
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11160
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11161
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11162
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11163
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11164
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11165
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11166
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11167
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11168
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11169
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11170
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11171
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11172
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11173
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11174
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11175
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-f5e83aeeb54c/lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11176
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-f5e83aeeb54c/lib/rspec_api_documentation/client_base.rb:39:in `process'
11177
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-f5e83aeeb54c/lib/rspec_api_documentation/client_base.rb:9:in `get'
11178
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-f5e83aeeb54c/lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11179
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-f5e83aeeb54c/lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11180
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11181
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11182
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11183
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11184
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11185
+ org/jruby/RubyArray.java:2413:in `map'
11186
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11187
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11188
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11189
+ org/jruby/RubyArray.java:2413:in `map'
11190
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11191
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11192
+ org/jruby/RubyArray.java:2413:in `map'
11193
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11194
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11195
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11196
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11197
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11198
+
11199
+
11200
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
11201
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11202
+ Processing by DigitalAssetsController#index as JSON
11203
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11204
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11205
+ Processing by DigitalAssetsController#index as JSON
11206
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11207
+ Completed 200 OK in 83.0ms (Views: 81.0ms)
11208
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11209
+ Processing by DigitalAssetsController#index as JSON
11210
+ Parameters: {"fund"=>"00200"}
11211
+ Completed 200 OK in 34.0ms (Views: 33.0ms)
11212
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11213
+ Processing by DigitalAssetsController#index as JSON
11214
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11215
+ Completed 200 OK in 26.0ms (Views: 22.0ms)
11216
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11217
+ Processing by DigitalAssetsController#index as JSON
11218
+ Parameters: {"path"=>"/some/other/path.pdf"}
11219
+ Completed 200 OK in 20.0ms (Views: 19.0ms)
11220
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11221
+ Processing by DigitalAssetsController#index as JSON
11222
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11223
+ Completed 200 OK in 21.0ms (Views: 20.0ms)
11224
+ Started GET "/digital_assets?published=2014-02-20+12%3A44%3A26+UTC" for 127.0.0.1 at 2014-02-20 07:44:26 -0700
11225
+ Processing by DigitalAssetsController#index as JSON
11226
+ Parameters: {"published"=>"2014-02-20 12:44:26 UTC"}
11227
+ Completed 200 OK in 44.0ms (Views: 16.0ms)
11228
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11229
+ Processing by DigitalAssetsController#show as JSON
11230
+ Parameters: {"id"=>"foo-bar-id"}
11231
+ Completed 200 OK in 47.0ms (Views: 12.0ms)
11232
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11233
+ Processing by DigitalAssetsController#show as JSON
11234
+ Parameters: {"id"=>"not-found-doc"}
11235
+ Completed 404 Not Found in 84.0ms (Views: 2.0ms)
11236
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11237
+ Processing by DigitalAssetsController#updated_time as JSON
11238
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11239
+ Completed 200 OK in 37.0ms (Views: 1.0ms)
11240
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11241
+ Processing by DigitalAssetsController#update as JSON
11242
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:44:26 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:44:26 UTC", "expires_at"=>"2014-04-20 14:44:26 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:44:26 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:44:27 UTC", "created_at"=>"2014-02-20 14:44:27 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11243
+ Completed 200 OK in 19.0ms
11244
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11245
+ Processing by DigitalAssetsController#create as JSON
11246
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"530614cbbed41126ed42c0eb", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:44:26 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:44:26 UTC", "expires_at"=>"2014-04-20 14:44:26 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:44:26 UTC", "content_type"=>"fact_sheet"}}
11247
+ Completed 201 Created in 28.0ms
11248
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11249
+ Processing by DigitalAssetsController#destroy as JSON
11250
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11251
+ Completed 200 OK in 6.0ms
11252
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:44:27 -0700
11253
+
11254
+ ActionController::RoutingError (No route matches [GET] "/"):
11255
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11256
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11257
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11258
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11259
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11260
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11261
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11262
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11263
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11264
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11265
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11266
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11267
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11268
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11269
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11270
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11271
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11272
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11273
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11274
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11275
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11276
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11277
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11278
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11279
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11280
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11281
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11282
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11283
+ org/jruby/RubyArray.java:2413:in `map'
11284
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11285
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11286
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11287
+ org/jruby/RubyArray.java:2413:in `map'
11288
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11289
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11290
+ org/jruby/RubyArray.java:2413:in `map'
11291
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11292
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11293
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11294
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11295
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11296
+
11297
+
11298
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.0ms)
11299
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:48:21 -0700
11300
+ Processing by DigitalAssetsController#index as JSON
11301
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11302
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11303
+ Processing by DigitalAssetsController#index as JSON
11304
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11305
+ Completed 200 OK in 47.0ms (Views: 45.0ms)
11306
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11307
+ Processing by DigitalAssetsController#index as JSON
11308
+ Parameters: {"fund"=>"00200"}
11309
+ Completed 200 OK in 36.0ms (Views: 35.0ms)
11310
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11311
+ Processing by DigitalAssetsController#index as JSON
11312
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11313
+ Completed 200 OK in 20.0ms (Views: 17.0ms)
11314
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11315
+ Processing by DigitalAssetsController#index as JSON
11316
+ Parameters: {"path"=>"/some/other/path.pdf"}
11317
+ Completed 200 OK in 19.0ms (Views: 17.0ms)
11318
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11319
+ Processing by DigitalAssetsController#index as JSON
11320
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11321
+ Completed 200 OK in 21.0ms (Views: 19.0ms)
11322
+ Started GET "/digital_assets?published=2014-02-20+12%3A48%3A22+UTC" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11323
+ Processing by DigitalAssetsController#index as JSON
11324
+ Parameters: {"published"=>"2014-02-20 12:48:22 UTC"}
11325
+ Completed 200 OK in 47.0ms (Views: 16.0ms)
11326
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11327
+ Processing by DigitalAssetsController#show as JSON
11328
+ Parameters: {"id"=>"foo-bar-id"}
11329
+ Completed 200 OK in 49.0ms (Views: 12.0ms)
11330
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11331
+ Processing by DigitalAssetsController#show as JSON
11332
+ Parameters: {"id"=>"not-found-doc"}
11333
+ Completed 404 Not Found in 54.0ms (Views: 1.0ms)
11334
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11335
+ Processing by DigitalAssetsController#updated_time as JSON
11336
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11337
+ Completed 200 OK in 34.0ms (Views: 0.0ms)
11338
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:48:22 -0700
11339
+ Processing by DigitalAssetsController#update as JSON
11340
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:48:21 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:48:21 UTC", "expires_at"=>"2014-04-20 14:48:21 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:48:21 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:48:22 UTC", "created_at"=>"2014-02-20 14:48:22 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11341
+ Completed 200 OK in 20.0ms
11342
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:48:23 -0700
11343
+ Processing by DigitalAssetsController#create as JSON
11344
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"530615b7bed4162241ecf77b", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:48:21 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:48:21 UTC", "expires_at"=>"2014-04-20 14:48:21 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:48:21 UTC", "content_type"=>"fact_sheet"}}
11345
+ Completed 201 Created in 27.0ms
11346
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:48:23 -0700
11347
+ Processing by DigitalAssetsController#destroy as JSON
11348
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11349
+ Completed 200 OK in 8.0ms
11350
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:48:23 -0700
11351
+
11352
+ ActionController::RoutingError (No route matches [GET] "/"):
11353
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11354
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11355
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11356
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11357
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11358
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11359
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11360
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11361
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11362
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11363
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11364
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11365
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11366
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11367
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11368
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11369
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11370
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11371
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11372
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11373
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11374
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11375
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11376
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11377
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11378
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11379
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11380
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11381
+ org/jruby/RubyArray.java:2413:in `map'
11382
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11383
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11384
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11385
+ org/jruby/RubyArray.java:2413:in `map'
11386
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11387
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11388
+ org/jruby/RubyArray.java:2413:in `map'
11389
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11390
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11391
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11392
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11393
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11394
+
11395
+
11396
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
11397
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 07:51:26 -0700
11398
+ Processing by DigitalAssetsController#index as JSON
11399
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11400
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 07:51:26 -0700
11401
+ Processing by DigitalAssetsController#index as JSON
11402
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11403
+ Completed 200 OK in 70.0ms (Views: 68.0ms)
11404
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 07:51:26 -0700
11405
+ Processing by DigitalAssetsController#index as JSON
11406
+ Parameters: {"fund"=>"00200"}
11407
+ Completed 200 OK in 33.0ms (Views: 32.0ms)
11408
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 07:51:26 -0700
11409
+ Processing by DigitalAssetsController#index as JSON
11410
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11411
+ Completed 200 OK in 22.0ms (Views: 18.0ms)
11412
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 07:51:26 -0700
11413
+ Processing by DigitalAssetsController#index as JSON
11414
+ Parameters: {"path"=>"/some/other/path.pdf"}
11415
+ Completed 200 OK in 20.0ms (Views: 18.0ms)
11416
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 07:51:26 -0700
11417
+ Processing by DigitalAssetsController#index as JSON
11418
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11419
+ Completed 200 OK in 20.0ms (Views: 19.0ms)
11420
+ Started GET "/digital_assets?published=2014-02-20+12%3A51%3A27+UTC" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11421
+ Processing by DigitalAssetsController#index as JSON
11422
+ Parameters: {"published"=>"2014-02-20 12:51:27 UTC"}
11423
+ Completed 200 OK in 45.0ms (Views: 16.0ms)
11424
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11425
+ Processing by DigitalAssetsController#show as JSON
11426
+ Parameters: {"id"=>"foo-bar-id"}
11427
+ Completed 200 OK in 42.0ms (Views: 12.0ms)
11428
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11429
+ Processing by DigitalAssetsController#show as JSON
11430
+ Parameters: {"id"=>"not-found-doc"}
11431
+ Completed 404 Not Found in 77.0ms (Views: 1.0ms)
11432
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11433
+ Processing by DigitalAssetsController#updated_time as JSON
11434
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11435
+ Completed 200 OK in 35.0ms (Views: 0.0ms)
11436
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11437
+ Processing by DigitalAssetsController#update as JSON
11438
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 14:51:26 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 14:51:26 UTC", "expires_at"=>"2014-04-20 14:51:26 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:51:26 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 14:51:27 UTC", "created_at"=>"2014-02-20 14:51:27 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11439
+ Completed 200 OK in 20.0ms
11440
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11441
+ Processing by DigitalAssetsController#create as JSON
11442
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"5306166fbed4821dc03c4cbf", "title"=>"Doc Title", "changed_at"=>"2014-02-18 14:51:26 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 14:51:26 UTC", "expires_at"=>"2014-04-20 14:51:26 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 14:51:26 UTC", "content_type"=>"fact_sheet"}}
11443
+ Completed 201 Created in 27.0ms
11444
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11445
+ Processing by DigitalAssetsController#destroy as JSON
11446
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11447
+ Completed 200 OK in 9.0ms
11448
+ Started GET "/" for 127.0.0.1 at 2014-02-20 07:51:27 -0700
11449
+
11450
+ ActionController::RoutingError (No route matches [GET] "/"):
11451
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11452
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11453
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11454
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11455
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11456
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11457
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11458
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11459
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11460
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11461
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11462
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11463
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11464
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11465
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11466
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11467
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11468
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11469
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11470
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11471
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11472
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11473
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11474
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11475
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11476
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11477
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11478
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11479
+ org/jruby/RubyArray.java:2413:in `map'
11480
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11481
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11482
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11483
+ org/jruby/RubyArray.java:2413:in `map'
11484
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11485
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11486
+ org/jruby/RubyArray.java:2413:in `map'
11487
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11488
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11489
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11490
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11491
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11492
+
11493
+
11494
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
11495
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 08:09:43 -0700
11496
+ Processing by DigitalAssetsController#index as JSON
11497
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11498
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 08:09:43 -0700
11499
+ Processing by DigitalAssetsController#index as JSON
11500
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11501
+ Completed 200 OK in 48.0ms (Views: 46.0ms)
11502
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11503
+ Processing by DigitalAssetsController#index as JSON
11504
+ Parameters: {"fund"=>"00200"}
11505
+ Completed 200 OK in 35.0ms (Views: 33.0ms)
11506
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11507
+ Processing by DigitalAssetsController#index as JSON
11508
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11509
+ Completed 200 OK in 20.0ms (Views: 17.0ms)
11510
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11511
+ Processing by DigitalAssetsController#index as JSON
11512
+ Parameters: {"path"=>"/some/other/path.pdf"}
11513
+ Completed 200 OK in 19.0ms (Views: 16.0ms)
11514
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11515
+ Processing by DigitalAssetsController#index as JSON
11516
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11517
+ Completed 200 OK in 20.0ms (Views: 19.0ms)
11518
+ Started GET "/digital_assets?published=2014-02-20+13%3A09%3A44+UTC" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11519
+ Processing by DigitalAssetsController#index as JSON
11520
+ Parameters: {"published"=>"2014-02-20 13:09:44 UTC"}
11521
+ Completed 200 OK in 43.0ms (Views: 15.0ms)
11522
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11523
+ Processing by DigitalAssetsController#show as JSON
11524
+ Parameters: {"id"=>"foo-bar-id"}
11525
+ Completed 200 OK in 46.0ms (Views: 12.0ms)
11526
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11527
+ Processing by DigitalAssetsController#show as JSON
11528
+ Parameters: {"id"=>"not-found-doc"}
11529
+ Completed 404 Not Found in 56.0ms (Views: 1.0ms)
11530
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11531
+ Processing by DigitalAssetsController#updated_time as JSON
11532
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11533
+ Completed 200 OK in 34.0ms (Views: 0.0ms)
11534
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11535
+ Processing by DigitalAssetsController#update as JSON
11536
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 15:09:43 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 15:09:43 UTC", "expires_at"=>"2014-04-20 15:09:43 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:09:43 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 15:09:44 UTC", "created_at"=>"2014-02-20 15:09:44 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11537
+ Completed 200 OK in 19.0ms
11538
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11539
+ Processing by DigitalAssetsController#create as JSON
11540
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53061ab8bed4285df2989901", "title"=>"Doc Title", "changed_at"=>"2014-02-18 15:09:43 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 15:09:43 UTC", "expires_at"=>"2014-04-20 15:09:43 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:09:43 UTC", "content_type"=>"fact_sheet"}}
11541
+ Completed 201 Created in 26.0ms
11542
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11543
+ Processing by DigitalAssetsController#destroy as JSON
11544
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11545
+ Completed 200 OK in 8.0ms
11546
+ Started GET "/" for 127.0.0.1 at 2014-02-20 08:09:44 -0700
11547
+
11548
+ ActionController::RoutingError (No route matches [GET] "/"):
11549
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11550
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11551
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11552
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11553
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11554
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11555
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11556
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11557
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11558
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11559
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11560
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11561
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11562
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11563
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11564
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11565
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11566
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11567
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11568
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11569
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11570
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11571
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11572
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11573
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11574
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11575
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11576
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11577
+ org/jruby/RubyArray.java:2413:in `map'
11578
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11579
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11580
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11581
+ org/jruby/RubyArray.java:2413:in `map'
11582
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11583
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11584
+ org/jruby/RubyArray.java:2413:in `map'
11585
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11586
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11587
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11588
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11589
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11590
+
11591
+
11592
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (6.0ms)
11593
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 08:11:27 -0700
11594
+ Processing by DigitalAssetsController#index as JSON
11595
+ Completed 200 OK in 5.0ms (Views: 3.0ms)
11596
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 08:11:27 -0700
11597
+ Processing by DigitalAssetsController#index as JSON
11598
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11599
+ Completed 200 OK in 72.0ms (Views: 70.0ms)
11600
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 08:11:27 -0700
11601
+ Processing by DigitalAssetsController#index as JSON
11602
+ Parameters: {"fund"=>"00200"}
11603
+ Completed 200 OK in 32.0ms (Views: 31.0ms)
11604
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 08:11:27 -0700
11605
+ Processing by DigitalAssetsController#index as JSON
11606
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11607
+ Completed 200 OK in 19.0ms (Views: 15.0ms)
11608
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11609
+ Processing by DigitalAssetsController#index as JSON
11610
+ Parameters: {"path"=>"/some/other/path.pdf"}
11611
+ Completed 200 OK in 18.0ms (Views: 17.0ms)
11612
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11613
+ Processing by DigitalAssetsController#index as JSON
11614
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11615
+ Completed 200 OK in 20.0ms (Views: 19.0ms)
11616
+ Started GET "/digital_assets?published=2014-02-20+13%3A11%3A28+UTC" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11617
+ Processing by DigitalAssetsController#index as JSON
11618
+ Parameters: {"published"=>"2014-02-20 13:11:28 UTC"}
11619
+ Completed 200 OK in 44.0ms (Views: 16.0ms)
11620
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11621
+ Processing by DigitalAssetsController#show as JSON
11622
+ Parameters: {"id"=>"foo-bar-id"}
11623
+ Completed 200 OK in 49.0ms (Views: 10.0ms)
11624
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11625
+ Processing by DigitalAssetsController#show as JSON
11626
+ Parameters: {"id"=>"not-found-doc"}
11627
+ Completed 404 Not Found in 77.0ms (Views: 1.0ms)
11628
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11629
+ Processing by DigitalAssetsController#updated_time as JSON
11630
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11631
+ Completed 200 OK in 32.0ms (Views: 0.0ms)
11632
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11633
+ Processing by DigitalAssetsController#update as JSON
11634
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 15:11:27 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 15:11:27 UTC", "expires_at"=>"2014-04-20 15:11:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:11:27 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 15:11:28 UTC", "created_at"=>"2014-02-20 15:11:28 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11635
+ Completed 200 OK in 20.0ms
11636
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11637
+ Processing by DigitalAssetsController#create as JSON
11638
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53061b20bed43a9b3e843552", "title"=>"Doc Title", "changed_at"=>"2014-02-18 15:11:27 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 15:11:27 UTC", "expires_at"=>"2014-04-20 15:11:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:11:27 UTC", "content_type"=>"fact_sheet"}}
11639
+ Completed 201 Created in 27.0ms
11640
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11641
+ Processing by DigitalAssetsController#destroy as JSON
11642
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11643
+ Completed 200 OK in 7.0ms
11644
+ Started GET "/" for 127.0.0.1 at 2014-02-20 08:11:28 -0700
11645
+
11646
+ ActionController::RoutingError (No route matches [GET] "/"):
11647
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11648
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11649
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11650
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11651
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11652
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11653
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11654
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11655
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11656
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11657
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11658
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11659
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11660
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11661
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11662
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11663
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11664
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11665
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11666
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11667
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11668
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11669
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11670
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11671
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11672
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11673
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11674
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11675
+ org/jruby/RubyArray.java:2413:in `map'
11676
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11677
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11678
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11679
+ org/jruby/RubyArray.java:2413:in `map'
11680
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11681
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11682
+ org/jruby/RubyArray.java:2413:in `map'
11683
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11684
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11685
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11686
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11687
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11688
+
11689
+
11690
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.0ms)
11691
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 08:14:00 -0700
11692
+ Processing by DigitalAssetsController#index as JSON
11693
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11694
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11695
+ Processing by DigitalAssetsController#index as JSON
11696
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11697
+ Completed 200 OK in 60.0ms (Views: 58.0ms)
11698
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11699
+ Processing by DigitalAssetsController#index as JSON
11700
+ Parameters: {"fund"=>"00200"}
11701
+ Completed 200 OK in 34.0ms (Views: 33.0ms)
11702
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11703
+ Processing by DigitalAssetsController#index as JSON
11704
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11705
+ Completed 200 OK in 20.0ms (Views: 17.0ms)
11706
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11707
+ Processing by DigitalAssetsController#index as JSON
11708
+ Parameters: {"path"=>"/some/other/path.pdf"}
11709
+ Completed 200 OK in 22.0ms (Views: 21.0ms)
11710
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11711
+ Processing by DigitalAssetsController#index as JSON
11712
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11713
+ Completed 200 OK in 20.0ms (Views: 19.0ms)
11714
+ Started GET "/digital_assets?published=2014-02-20+13%3A14%3A01+UTC" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11715
+ Processing by DigitalAssetsController#index as JSON
11716
+ Parameters: {"published"=>"2014-02-20 13:14:01 UTC"}
11717
+ Completed 200 OK in 45.0ms (Views: 16.0ms)
11718
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11719
+ Processing by DigitalAssetsController#show as JSON
11720
+ Parameters: {"id"=>"foo-bar-id"}
11721
+ Completed 200 OK in 42.0ms (Views: 11.0ms)
11722
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11723
+ Processing by DigitalAssetsController#show as JSON
11724
+ Parameters: {"id"=>"not-found-doc"}
11725
+ Completed 404 Not Found in 75.0ms (Views: 1.0ms)
11726
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11727
+ Processing by DigitalAssetsController#updated_time as JSON
11728
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11729
+ Completed 200 OK in 33.0ms (Views: 1.0ms)
11730
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11731
+ Processing by DigitalAssetsController#update as JSON
11732
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 15:14:00 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 15:14:00 UTC", "expires_at"=>"2014-04-20 15:14:00 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:14:00 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 15:14:01 UTC", "created_at"=>"2014-02-20 15:14:01 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11733
+ Completed 200 OK in 20.0ms
11734
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 08:14:01 -0700
11735
+ Processing by DigitalAssetsController#create as JSON
11736
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53061bb9bed436637ba4e044", "title"=>"Doc Title", "changed_at"=>"2014-02-18 15:14:00 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 15:14:00 UTC", "expires_at"=>"2014-04-20 15:14:00 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:14:00 UTC", "content_type"=>"fact_sheet"}}
11737
+ Completed 201 Created in 28.0ms
11738
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:14:02 -0700
11739
+ Processing by DigitalAssetsController#destroy as JSON
11740
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11741
+ Completed 200 OK in 8.0ms
11742
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-20 08:14:58 -0700
11743
+ Processing by DigitalAssetsController#index as JSON
11744
+ Completed 200 OK in 5.0ms (Views: 3.0ms)
11745
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-20 08:14:58 -0700
11746
+ Processing by DigitalAssetsController#index as JSON
11747
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11748
+ Completed 200 OK in 76.0ms (Views: 74.0ms)
11749
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-20 08:14:58 -0700
11750
+ Processing by DigitalAssetsController#index as JSON
11751
+ Parameters: {"fund"=>"00200"}
11752
+ Completed 200 OK in 36.0ms (Views: 33.0ms)
11753
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-20 08:14:58 -0700
11754
+ Processing by DigitalAssetsController#index as JSON
11755
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11756
+ Completed 200 OK in 20.0ms (Views: 16.0ms)
11757
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-20 08:14:58 -0700
11758
+ Processing by DigitalAssetsController#index as JSON
11759
+ Parameters: {"path"=>"/some/other/path.pdf"}
11760
+ Completed 200 OK in 18.0ms (Views: 17.0ms)
11761
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-20 08:14:58 -0700
11762
+ Processing by DigitalAssetsController#index as JSON
11763
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11764
+ Completed 200 OK in 19.0ms (Views: 18.0ms)
11765
+ Started GET "/digital_assets?published=2014-02-20+13%3A14%3A59+UTC" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11766
+ Processing by DigitalAssetsController#index as JSON
11767
+ Parameters: {"published"=>"2014-02-20 13:14:59 UTC"}
11768
+ Completed 200 OK in 44.0ms (Views: 15.0ms)
11769
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11770
+ Processing by DigitalAssetsController#show as JSON
11771
+ Parameters: {"id"=>"foo-bar-id"}
11772
+ Completed 200 OK in 39.0ms (Views: 10.0ms)
11773
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11774
+ Processing by DigitalAssetsController#show as JSON
11775
+ Parameters: {"id"=>"not-found-doc"}
11776
+ Completed 404 Not Found in 77.0ms (Views: 2.0ms)
11777
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11778
+ Processing by DigitalAssetsController#updated_time as JSON
11779
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11780
+ Completed 200 OK in 34.0ms (Views: 0.0ms)
11781
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11782
+ Processing by DigitalAssetsController#update as JSON
11783
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-18 15:14:58 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-10 15:14:58 UTC", "expires_at"=>"2014-04-20 15:14:58 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:14:58 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-20 15:14:59 UTC", "created_at"=>"2014-02-20 15:14:59 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11784
+ Completed 200 OK in 20.0ms
11785
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11786
+ Processing by DigitalAssetsController#create as JSON
11787
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"53061bf3bed4fff6a8a46f75", "title"=>"Doc Title", "changed_at"=>"2014-02-18 15:14:58 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-10 15:14:58 UTC", "expires_at"=>"2014-04-20 15:14:58 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-18 15:14:58 UTC", "content_type"=>"fact_sheet"}}
11788
+ Completed 201 Created in 27.0ms
11789
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-20 08:14:59 -0700
11790
+ Processing by DigitalAssetsController#destroy as JSON
11791
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11792
+ Completed 200 OK in 7.0ms
11793
+ Started GET "/digital_assets" for 127.0.0.1 at 2014-02-25 14:41:37 -0700
11794
+ Processing by DigitalAssetsController#index as JSON
11795
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11796
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-02-25 14:41:37 -0700
11797
+ Processing by DigitalAssetsController#index as JSON
11798
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
11799
+ Completed 200 OK in 69.0ms (Views: 68.0ms)
11800
+ Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-02-25 14:41:37 -0700
11801
+ Processing by DigitalAssetsController#index as JSON
11802
+ Parameters: {"fund"=>"00200"}
11803
+ Completed 200 OK in 35.0ms (Views: 33.0ms)
11804
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11805
+ Processing by DigitalAssetsController#index as JSON
11806
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
11807
+ Completed 200 OK in 20.0ms (Views: 16.0ms)
11808
+ Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11809
+ Processing by DigitalAssetsController#index as JSON
11810
+ Parameters: {"path"=>"/some/other/path.pdf"}
11811
+ Completed 200 OK in 19.0ms (Views: 17.0ms)
11812
+ Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11813
+ Processing by DigitalAssetsController#index as JSON
11814
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
11815
+ Completed 200 OK in 21.0ms (Views: 20.0ms)
11816
+ Started GET "/digital_assets?published=2014-02-25+19%3A41%3A38+UTC" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11817
+ Processing by DigitalAssetsController#index as JSON
11818
+ Parameters: {"published"=>"2014-02-25 19:41:38 UTC"}
11819
+ Completed 200 OK in 42.0ms (Views: 15.0ms)
11820
+ Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11821
+ Processing by DigitalAssetsController#show as JSON
11822
+ Parameters: {"id"=>"foo-bar-id"}
11823
+ Completed 200 OK in 44.0ms (Views: 11.0ms)
11824
+ Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11825
+ Processing by DigitalAssetsController#show as JSON
11826
+ Parameters: {"id"=>"not-found-doc"}
11827
+ Completed 404 Not Found in 79.0ms (Views: 2.0ms)
11828
+ Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11829
+ Processing by DigitalAssetsController#updated_time as JSON
11830
+ Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
11831
+ Completed 200 OK in 45.0ms (Views: 1.0ms)
11832
+ Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11833
+ Processing by DigitalAssetsController#update as JSON
11834
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-02-23 21:41:37 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-02-15 21:41:37 UTC", "expires_at"=>"2014-04-25 21:41:37 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/12/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-02-23 21:41:37 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-02-25 21:41:38 UTC", "created_at"=>"2014-02-25 21:41:38 UTC"}, "id"=>"foo-bar-digital-asset-id"}
11835
+ Completed 200 OK in 20.0ms
11836
+ Started POST "/digital_assets" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11837
+ Processing by DigitalAssetsController#create as JSON
11838
+ Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"530d0e12f2e63ec81a4a1c4e", "title"=>"Doc Title", "changed_at"=>"2014-02-23 21:41:37 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-02-15 21:41:37 UTC", "expires_at"=>"2014-04-25 21:41:37 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/14/foo/bar.txt", "legacy_path"=>"/oldpath/14/foo/bar.txt", "doc_changed_at"=>"2014-02-23 21:41:37 UTC", "content_type"=>"fact_sheet"}}
11839
+ Completed 201 Created in 28.0ms
11840
+ Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11841
+ Processing by DigitalAssetsController#destroy as JSON
11842
+ Parameters: {"id"=>"foo-bar-digital-asset-id"}
11843
+ Completed 200 OK in 6.0ms
11844
+ Started GET "/" for 127.0.0.1 at 2014-02-25 14:41:38 -0700
11845
+
11846
+ ActionController::RoutingError (No route matches [GET] "/"):
11847
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11848
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11849
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
11850
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11851
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
11852
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
11853
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11854
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11855
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11856
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11857
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11858
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
11859
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
11860
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
11861
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
11862
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
11863
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
11864
+ /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/1.9/forwardable.rb:201:in `get'
11865
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
11866
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:39:in `process'
11867
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/client_base.rb:9:in `get'
11868
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
11869
+ rspec_api_documentation (2.0.0) lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
11870
+ org/jruby/RubyBasicObject.java:1536:in `instance_eval'
11871
+ rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `run'
11872
+ rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
11873
+ rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
11874
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `run_examples'
11875
+ org/jruby/RubyArray.java:2413:in `map'
11876
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
11877
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
11878
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11879
+ org/jruby/RubyArray.java:2413:in `map'
11880
+ rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
11881
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11882
+ org/jruby/RubyArray.java:2413:in `map'
11883
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `run'
11884
+ rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
11885
+ rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
11886
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
11887
+ rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `autorun'
11888
+
11889
+
11890
+ Rendered /Users/spjms/.rbenv/versions/jruby-1.7.8/lib/ruby/gems/shared/gems/actionpack-3.2.16/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.0ms)
11891
+ Processing by DigitalAssetsController#index as HTML
11892
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11893
+ Processing by DigitalAssetsController#show as HTML
11894
+ Parameters: {"id"=>"id-foobar-permanent-9"}
11895
+ Completed 406 Not Acceptable in 4.0ms
11896
+ Processing by DigitalAssetsController#show as HTML
11897
+ Parameters: {"id"=>"IL1111.077"}
11898
+ Completed 406 Not Acceptable in 5.0ms
11899
+ Processing by DigitalAssetsController#show as HTML
11900
+ Parameters: {"id"=>"IL1111.077"}
11901
+ Completed 406 Not Acceptable in 6.0ms
11902
+ Processing by DigitalAssetsController#show as HTML
11903
+ Parameters: {"id"=>"id-foobar-permanent-13"}
11904
+ Completed 406 Not Acceptable in 5.0ms
11905
+ Processing by DigitalAssetsController#search as HTML
11906
+ Completed 200 OK in 3.0ms (Views: 2.0ms)
11907
+ Processing by DigitalAssetsController#search as HTML
11908
+ Parameters: {"path"=>"/one/off.path"}
11909
+ Completed 200 OK in 13.0ms (Views: 12.0ms)
11910
+ Processing by DigitalAssetsController#search as HTML
11911
+ Parameters: {"doctype"=>"fact_sheet"}
11912
+ Completed 200 OK in 6.0ms (Views: 2.0ms)
11913
+ Processing by DigitalAssetsController#search as HTML
11914
+ Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
11915
+ Completed 200 OK in 45.0ms (Views: 44.0ms)
11916
+ Processing by DigitalAssetsController#search as HTML
11917
+ Parameters: {"sami"=>"SOMETHING.001"}
11918
+ Completed 200 OK in 27.0ms (Views: 26.0ms)
11919
+ Processing by DigitalAssetsController#search as HTML
11920
+ Parameters: {"audience"=>"492"}
11921
+ Completed 200 OK in 28.0ms (Views: 27.0ms)
11922
+ Processing by DigitalAssetsController#search as HTML
11923
+ Parameters: {"title"=>"Doc Title"}
11924
+ Completed 200 OK in 4.0ms (Views: 2.0ms)
11925
+ Processing by DigitalAssetsController#search as HTML
11926
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-35"}
11927
+ Completed 200 OK in 11.0ms (Views: 10.0ms)
11928
+ Processing by DigitalAssetsController#search as HTML
11929
+ Parameters: {"business_owner"=>"biz owner"}
11930
+ Completed 200 OK in 4.0ms (Views: 3.0ms)
11931
+ Processing by DigitalAssetsController#search as HTML
11932
+ Parameters: {"digital_asset_id"=>"id-foobar-permanent-42", "title"=>"Doc Title"}
11933
+ Completed 200 OK in 12.0ms (Views: 11.0ms)
11934
+ Processing by DigitalAssetsController#search as HTML
11935
+ Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
11936
+ Completed 200 OK in 73.0ms (Views: 72.0ms)
11937
+ Processing by DigitalAssetsController#search as HTML
11938
+ Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
11939
+ Completed 200 OK in 3.0ms (Views: 2.0ms)