daengine 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +17 -17
- data/MIT-LICENSE +20 -20
- data/Rakefile +29 -29
- data/app/assets/javascripts/digital_assets.js +2 -2
- data/app/assets/stylesheets/digital_assets.css +4 -4
- data/app/controllers/digital_assets_controller.rb +76 -76
- data/app/helpers/digital_assets_helper.rb +2 -2
- data/app/views/digital_assets/_form.html.erb +17 -17
- data/app/views/digital_assets/edit.html.erb +6 -6
- data/app/views/digital_assets/index.html.erb +34 -34
- data/app/views/digital_assets/new.html.erb +5 -5
- data/app/views/digital_assets/search.html.erb +46 -46
- data/app/views/digital_assets/show.html.erb +58 -58
- data/config/routes.rb +8 -8
- data/lib/daengine.rb +72 -44
- data/lib/daengine/digital_asset_processor.rb +89 -56
- data/lib/daengine/engine.rb +6 -6
- data/lib/daengine/teamsite_metadata_parser.rb +10 -1
- data/lib/daengine/version.rb +3 -3
- data/lib/tasks/daengine_tasks.rake +4 -4
- data/spec/controllers/digital_assets_controller_spec.rb +202 -202
- data/spec/dummy/README.rdoc +261 -261
- data/spec/dummy/Rakefile +7 -7
- data/spec/dummy/app/assets/javascripts/application.js +15 -15
- data/spec/dummy/app/assets/stylesheets/application.css +13 -13
- data/spec/dummy/app/controllers/application_controller.rb +3 -3
- data/spec/dummy/app/helpers/application_helper.rb +2 -2
- data/spec/dummy/app/views/layouts/application.html.erb +14 -14
- data/spec/dummy/config.ru +4 -4
- data/spec/dummy/config/application.rb +70 -70
- data/spec/dummy/config/boot.rb +9 -9
- data/spec/dummy/config/environment.rb +5 -5
- data/spec/dummy/config/environments/development.rb +37 -37
- data/spec/dummy/config/environments/production.rb +67 -67
- data/spec/dummy/config/environments/test.rb +37 -37
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/dummy/config/initializers/inflections.rb +15 -15
- data/spec/dummy/config/initializers/mime_types.rb +5 -5
- data/spec/dummy/config/initializers/secret_token.rb +7 -7
- data/spec/dummy/config/initializers/session_store.rb +8 -8
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
- data/spec/dummy/config/locales/en.yml +5 -5
- data/spec/dummy/config/mongoid.yml +20 -20
- data/spec/dummy/config/routes.rb +58 -58
- data/spec/dummy/log/development.log +4 -0
- data/spec/dummy/log/test.log +435 -0
- data/spec/dummy/public/404.html +26 -26
- data/spec/dummy/public/422.html +26 -26
- data/spec/dummy/public/500.html +25 -25
- data/spec/dummy/script/rails +6 -6
- data/spec/lib/teamsite_metadata_parser_spec.rb +59 -59
- data/spec/spec_helper.rb +40 -40
- metadata +17 -12
| @@ -1,37 +1,37 @@ | |
| 1 | 
            -
            Dummy::Application.configure do
         | 
| 2 | 
            -
              # Settings specified here will take precedence over those in config/application.rb
         | 
| 3 | 
            -
             | 
| 4 | 
            -
              # The test environment is used exclusively to run your application's
         | 
| 5 | 
            -
              # test suite. You never need to work with it otherwise. Remember that
         | 
| 6 | 
            -
              # your test database is "scratch space" for the test suite and is wiped
         | 
| 7 | 
            -
              # and recreated between test runs. Don't rely on the data there!
         | 
| 8 | 
            -
              config.cache_classes = true
         | 
| 9 | 
            -
             | 
| 10 | 
            -
              # Configure static asset server for tests with Cache-Control for performance
         | 
| 11 | 
            -
              config.serve_static_assets = true
         | 
| 12 | 
            -
              config.static_cache_control = "public, max-age=3600"
         | 
| 13 | 
            -
             | 
| 14 | 
            -
              # Log error messages when you accidentally call methods on nil
         | 
| 15 | 
            -
              config.whiny_nils = true
         | 
| 16 | 
            -
             | 
| 17 | 
            -
              # Show full error reports and disable caching
         | 
| 18 | 
            -
              config.consider_all_requests_local       = true
         | 
| 19 | 
            -
              config.action_controller.perform_caching = false
         | 
| 20 | 
            -
             | 
| 21 | 
            -
              # Raise exceptions instead of rendering exception templates
         | 
| 22 | 
            -
              config.action_dispatch.show_exceptions = false
         | 
| 23 | 
            -
             | 
| 24 | 
            -
              # Disable request forgery protection in test environment
         | 
| 25 | 
            -
              config.action_controller.allow_forgery_protection    = false
         | 
| 26 | 
            -
             | 
| 27 | 
            -
              # Tell Action Mailer not to deliver emails to the real world.
         | 
| 28 | 
            -
              # The :test delivery method accumulates sent emails in the
         | 
| 29 | 
            -
              # ActionMailer::Base.deliveries array.
         | 
| 30 | 
            -
              config.action_mailer.delivery_method = :test
         | 
| 31 | 
            -
             | 
| 32 | 
            -
              # Raise exception on mass assignment protection for Active Record models
         | 
| 33 | 
            -
              # config.active_record.mass_assignment_sanitizer = :strict
         | 
| 34 | 
            -
             | 
| 35 | 
            -
              # Print deprecation notices to the stderr
         | 
| 36 | 
            -
              config.active_support.deprecation = :stderr
         | 
| 37 | 
            -
            end
         | 
| 1 | 
            +
            Dummy::Application.configure do
         | 
| 2 | 
            +
              # Settings specified here will take precedence over those in config/application.rb
         | 
| 3 | 
            +
             | 
| 4 | 
            +
              # The test environment is used exclusively to run your application's
         | 
| 5 | 
            +
              # test suite. You never need to work with it otherwise. Remember that
         | 
| 6 | 
            +
              # your test database is "scratch space" for the test suite and is wiped
         | 
| 7 | 
            +
              # and recreated between test runs. Don't rely on the data there!
         | 
| 8 | 
            +
              config.cache_classes = true
         | 
| 9 | 
            +
             | 
| 10 | 
            +
              # Configure static asset server for tests with Cache-Control for performance
         | 
| 11 | 
            +
              config.serve_static_assets = true
         | 
| 12 | 
            +
              config.static_cache_control = "public, max-age=3600"
         | 
| 13 | 
            +
             | 
| 14 | 
            +
              # Log error messages when you accidentally call methods on nil
         | 
| 15 | 
            +
              config.whiny_nils = true
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              # Show full error reports and disable caching
         | 
| 18 | 
            +
              config.consider_all_requests_local       = true
         | 
| 19 | 
            +
              config.action_controller.perform_caching = false
         | 
| 20 | 
            +
             | 
| 21 | 
            +
              # Raise exceptions instead of rendering exception templates
         | 
| 22 | 
            +
              config.action_dispatch.show_exceptions = false
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              # Disable request forgery protection in test environment
         | 
| 25 | 
            +
              config.action_controller.allow_forgery_protection    = false
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              # Tell Action Mailer not to deliver emails to the real world.
         | 
| 28 | 
            +
              # The :test delivery method accumulates sent emails in the
         | 
| 29 | 
            +
              # ActionMailer::Base.deliveries array.
         | 
| 30 | 
            +
              config.action_mailer.delivery_method = :test
         | 
| 31 | 
            +
             | 
| 32 | 
            +
              # Raise exception on mass assignment protection for Active Record models
         | 
| 33 | 
            +
              # config.active_record.mass_assignment_sanitizer = :strict
         | 
| 34 | 
            +
             | 
| 35 | 
            +
              # Print deprecation notices to the stderr
         | 
| 36 | 
            +
              config.active_support.deprecation = :stderr
         | 
| 37 | 
            +
            end
         | 
| @@ -1,7 +1,7 @@ | |
| 1 | 
            -
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
         | 
| 4 | 
            -
            # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
         | 
| 5 | 
            -
             | 
| 6 | 
            -
            # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
         | 
| 7 | 
            -
            # Rails.backtrace_cleaner.remove_silencers!
         | 
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
         | 
| 4 | 
            +
            # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
         | 
| 7 | 
            +
            # Rails.backtrace_cleaner.remove_silencers!
         | 
| @@ -1,15 +1,15 @@ | |
| 1 | 
            -
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            # Add new inflection rules using the following format
         | 
| 4 | 
            -
            # (all these examples are active by default):
         | 
| 5 | 
            -
            # ActiveSupport::Inflector.inflections do |inflect|
         | 
| 6 | 
            -
            #   inflect.plural /^(ox)$/i, '\1en'
         | 
| 7 | 
            -
            #   inflect.singular /^(ox)en/i, '\1'
         | 
| 8 | 
            -
            #   inflect.irregular 'person', 'people'
         | 
| 9 | 
            -
            #   inflect.uncountable %w( fish sheep )
         | 
| 10 | 
            -
            # end
         | 
| 11 | 
            -
            #
         | 
| 12 | 
            -
            # These inflection rules are supported but not enabled by default:
         | 
| 13 | 
            -
            # ActiveSupport::Inflector.inflections do |inflect|
         | 
| 14 | 
            -
            #   inflect.acronym 'RESTful'
         | 
| 15 | 
            -
            # end
         | 
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Add new inflection rules using the following format
         | 
| 4 | 
            +
            # (all these examples are active by default):
         | 
| 5 | 
            +
            # ActiveSupport::Inflector.inflections do |inflect|
         | 
| 6 | 
            +
            #   inflect.plural /^(ox)$/i, '\1en'
         | 
| 7 | 
            +
            #   inflect.singular /^(ox)en/i, '\1'
         | 
| 8 | 
            +
            #   inflect.irregular 'person', 'people'
         | 
| 9 | 
            +
            #   inflect.uncountable %w( fish sheep )
         | 
| 10 | 
            +
            # end
         | 
| 11 | 
            +
            #
         | 
| 12 | 
            +
            # These inflection rules are supported but not enabled by default:
         | 
| 13 | 
            +
            # ActiveSupport::Inflector.inflections do |inflect|
         | 
| 14 | 
            +
            #   inflect.acronym 'RESTful'
         | 
| 15 | 
            +
            # end
         | 
| @@ -1,5 +1,5 @@ | |
| 1 | 
            -
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            # Add new mime types for use in respond_to blocks:
         | 
| 4 | 
            -
            # Mime::Type.register "text/richtext", :rtf
         | 
| 5 | 
            -
            # Mime::Type.register_alias "text/html", :iphone
         | 
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Add new mime types for use in respond_to blocks:
         | 
| 4 | 
            +
            # Mime::Type.register "text/richtext", :rtf
         | 
| 5 | 
            +
            # Mime::Type.register_alias "text/html", :iphone
         | 
| @@ -1,7 +1,7 @@ | |
| 1 | 
            -
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            # Your secret key for verifying the integrity of signed cookies.
         | 
| 4 | 
            -
            # If you change this key, all old signed cookies will become invalid!
         | 
| 5 | 
            -
            # Make sure the secret is at least 30 characters and all random,
         | 
| 6 | 
            -
            # no regular words or you'll be exposed to dictionary attacks.
         | 
| 7 | 
            -
            Dummy::Application.config.secret_token = '9c442d7e798c0b9822efa5ec07d3e0dc7440c8da008d0ef504de8cdbd7bec44d1023b6068ea81080097e5d778ca28dcc45eaa4677b3c9d2d50177ffb365516fd'
         | 
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Your secret key for verifying the integrity of signed cookies.
         | 
| 4 | 
            +
            # If you change this key, all old signed cookies will become invalid!
         | 
| 5 | 
            +
            # Make sure the secret is at least 30 characters and all random,
         | 
| 6 | 
            +
            # no regular words or you'll be exposed to dictionary attacks.
         | 
| 7 | 
            +
            Dummy::Application.config.secret_token = '9c442d7e798c0b9822efa5ec07d3e0dc7440c8da008d0ef504de8cdbd7bec44d1023b6068ea81080097e5d778ca28dcc45eaa4677b3c9d2d50177ffb365516fd'
         | 
| @@ -1,8 +1,8 @@ | |
| 1 | 
            -
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            # Use the database for sessions instead of the cookie-based default,
         | 
| 6 | 
            -
            # which shouldn't be used to store highly confidential information
         | 
| 7 | 
            -
            # (create the session table with "rails generate session_migration")
         | 
| 8 | 
            -
            # Dummy::Application.config.session_store :active_record_store
         | 
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            # Use the database for sessions instead of the cookie-based default,
         | 
| 6 | 
            +
            # which shouldn't be used to store highly confidential information
         | 
| 7 | 
            +
            # (create the session table with "rails generate session_migration")
         | 
| 8 | 
            +
            # Dummy::Application.config.session_store :active_record_store
         | 
| @@ -1,14 +1,14 @@ | |
| 1 | 
            -
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            -
            #
         | 
| 3 | 
            -
            # This file contains settings for ActionController::ParamsWrapper which
         | 
| 4 | 
            -
            # is enabled by default.
         | 
| 5 | 
            -
             | 
| 6 | 
            -
            # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
         | 
| 7 | 
            -
            ActiveSupport.on_load(:action_controller) do
         | 
| 8 | 
            -
              wrap_parameters format: [:json]
         | 
| 9 | 
            -
            end
         | 
| 10 | 
            -
             | 
| 11 | 
            -
            # Disable root element in JSON by default.
         | 
| 12 | 
            -
            ActiveSupport.on_load(:active_record) do
         | 
| 13 | 
            -
              self.include_root_in_json = false
         | 
| 14 | 
            -
            end
         | 
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
            #
         | 
| 3 | 
            +
            # This file contains settings for ActionController::ParamsWrapper which
         | 
| 4 | 
            +
            # is enabled by default.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
         | 
| 7 | 
            +
            ActiveSupport.on_load(:action_controller) do
         | 
| 8 | 
            +
              wrap_parameters format: [:json]
         | 
| 9 | 
            +
            end
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            # Disable root element in JSON by default.
         | 
| 12 | 
            +
            ActiveSupport.on_load(:active_record) do
         | 
| 13 | 
            +
              self.include_root_in_json = false
         | 
| 14 | 
            +
            end
         | 
| @@ -1,5 +1,5 @@ | |
| 1 | 
            -
            # Sample localization file for English. Add more files in this directory for other locales.
         | 
| 2 | 
            -
            # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
         | 
| 3 | 
            -
             | 
| 4 | 
            -
            en:
         | 
| 5 | 
            -
              hello: "Hello world"
         | 
| 1 | 
            +
            # Sample localization file for English. Add more files in this directory for other locales.
         | 
| 2 | 
            +
            # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            en:
         | 
| 5 | 
            +
              hello: "Hello world"
         | 
| @@ -1,20 +1,20 @@ | |
| 1 | 
            -
            development:
         | 
| 2 | 
            -
              host: localhost
         | 
| 3 | 
            -
              database: dummy_development
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            test:
         | 
| 6 | 
            -
              host: localhost
         | 
| 7 | 
            -
              database: dummy_test
         | 
| 8 | 
            -
             | 
| 9 | 
            -
            # set these environment variables on your prod server
         | 
| 10 | 
            -
            production:
         | 
| 11 | 
            -
              host: <%= ENV['MONGOID_HOST'] %>
         | 
| 12 | 
            -
              port: <%= ENV['MONGOID_PORT'] %>
         | 
| 13 | 
            -
              username: <%= ENV['MONGOID_USERNAME'] %>
         | 
| 14 | 
            -
              password: <%= ENV['MONGOID_PASSWORD'] %>
         | 
| 15 | 
            -
              database: <%= ENV['MONGOID_DATABASE'] %>
         | 
| 16 | 
            -
              # slaves:
         | 
| 17 | 
            -
              #   - host: slave1.local
         | 
| 18 | 
            -
              #     port: 27018
         | 
| 19 | 
            -
              #   - host: slave2.local
         | 
| 20 | 
            -
              #     port: 27019
         | 
| 1 | 
            +
            development:
         | 
| 2 | 
            +
              host: localhost
         | 
| 3 | 
            +
              database: dummy_development
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            test:
         | 
| 6 | 
            +
              host: localhost
         | 
| 7 | 
            +
              database: dummy_test
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            # set these environment variables on your prod server
         | 
| 10 | 
            +
            production:
         | 
| 11 | 
            +
              host: <%= ENV['MONGOID_HOST'] %>
         | 
| 12 | 
            +
              port: <%= ENV['MONGOID_PORT'] %>
         | 
| 13 | 
            +
              username: <%= ENV['MONGOID_USERNAME'] %>
         | 
| 14 | 
            +
              password: <%= ENV['MONGOID_PASSWORD'] %>
         | 
| 15 | 
            +
              database: <%= ENV['MONGOID_DATABASE'] %>
         | 
| 16 | 
            +
              # slaves:
         | 
| 17 | 
            +
              #   - host: slave1.local
         | 
| 18 | 
            +
              #     port: 27018
         | 
| 19 | 
            +
              #   - host: slave2.local
         | 
| 20 | 
            +
              #     port: 27019
         | 
    
        data/spec/dummy/config/routes.rb
    CHANGED
    
    | @@ -1,58 +1,58 @@ | |
| 1 | 
            -
            Dummy::Application.routes.draw do
         | 
| 2 | 
            -
              # The priority is based upon order of creation:
         | 
| 3 | 
            -
              # first created -> highest priority.
         | 
| 4 | 
            -
             | 
| 5 | 
            -
              # Sample of regular route:
         | 
| 6 | 
            -
              #   match 'products/:id' => 'catalog#view'
         | 
| 7 | 
            -
              # Keep in mind you can assign values other than :controller and :action
         | 
| 8 | 
            -
             | 
| 9 | 
            -
              # Sample of named route:
         | 
| 10 | 
            -
              #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
         | 
| 11 | 
            -
              # This route can be invoked with purchase_url(:id => product.id)
         | 
| 12 | 
            -
             | 
| 13 | 
            -
              # Sample resource route (maps HTTP verbs to controller actions automatically):
         | 
| 14 | 
            -
              #   resources :products
         | 
| 15 | 
            -
             | 
| 16 | 
            -
              # Sample resource route with options:
         | 
| 17 | 
            -
              #   resources :products do
         | 
| 18 | 
            -
              #     member do
         | 
| 19 | 
            -
              #       get 'short'
         | 
| 20 | 
            -
              #       post 'toggle'
         | 
| 21 | 
            -
              #     end
         | 
| 22 | 
            -
              #
         | 
| 23 | 
            -
              #     collection do
         | 
| 24 | 
            -
              #       get 'sold'
         | 
| 25 | 
            -
              #     end
         | 
| 26 | 
            -
              #   end
         | 
| 27 | 
            -
             | 
| 28 | 
            -
              # Sample resource route with sub-resources:
         | 
| 29 | 
            -
              #   resources :products do
         | 
| 30 | 
            -
              #     resources :comments, :sales
         | 
| 31 | 
            -
              #     resource :seller
         | 
| 32 | 
            -
              #   end
         | 
| 33 | 
            -
             | 
| 34 | 
            -
              # Sample resource route with more complex sub-resources
         | 
| 35 | 
            -
              #   resources :products do
         | 
| 36 | 
            -
              #     resources :comments
         | 
| 37 | 
            -
              #     resources :sales do
         | 
| 38 | 
            -
              #       get 'recent', :on => :collection
         | 
| 39 | 
            -
              #     end
         | 
| 40 | 
            -
              #   end
         | 
| 41 | 
            -
             | 
| 42 | 
            -
              # Sample resource route within a namespace:
         | 
| 43 | 
            -
              #   namespace :admin do
         | 
| 44 | 
            -
              #     # Directs /admin/products/* to Admin::ProductsController
         | 
| 45 | 
            -
              #     # (app/controllers/admin/products_controller.rb)
         | 
| 46 | 
            -
              #     resources :products
         | 
| 47 | 
            -
              #   end
         | 
| 48 | 
            -
             | 
| 49 | 
            -
              # You can have the root of your site routed with "root"
         | 
| 50 | 
            -
              # just remember to delete public/index.html.
         | 
| 51 | 
            -
              # root :to => 'welcome#index'
         | 
| 52 | 
            -
             | 
| 53 | 
            -
              # See how all your routes lay out with "rake routes"
         | 
| 54 | 
            -
             | 
| 55 | 
            -
              # This is a legacy wild controller route that's not recommended for RESTful applications.
         | 
| 56 | 
            -
              # Note: This route will make all actions in every controller accessible via GET requests.
         | 
| 57 | 
            -
              # match ':controller(/:action(/:id))(.:format)'
         | 
| 58 | 
            -
            end
         | 
| 1 | 
            +
            Dummy::Application.routes.draw do
         | 
| 2 | 
            +
              # The priority is based upon order of creation:
         | 
| 3 | 
            +
              # first created -> highest priority.
         | 
| 4 | 
            +
             | 
| 5 | 
            +
              # Sample of regular route:
         | 
| 6 | 
            +
              #   match 'products/:id' => 'catalog#view'
         | 
| 7 | 
            +
              # Keep in mind you can assign values other than :controller and :action
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              # Sample of named route:
         | 
| 10 | 
            +
              #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
         | 
| 11 | 
            +
              # This route can be invoked with purchase_url(:id => product.id)
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              # Sample resource route (maps HTTP verbs to controller actions automatically):
         | 
| 14 | 
            +
              #   resources :products
         | 
| 15 | 
            +
             | 
| 16 | 
            +
              # Sample resource route with options:
         | 
| 17 | 
            +
              #   resources :products do
         | 
| 18 | 
            +
              #     member do
         | 
| 19 | 
            +
              #       get 'short'
         | 
| 20 | 
            +
              #       post 'toggle'
         | 
| 21 | 
            +
              #     end
         | 
| 22 | 
            +
              #
         | 
| 23 | 
            +
              #     collection do
         | 
| 24 | 
            +
              #       get 'sold'
         | 
| 25 | 
            +
              #     end
         | 
| 26 | 
            +
              #   end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              # Sample resource route with sub-resources:
         | 
| 29 | 
            +
              #   resources :products do
         | 
| 30 | 
            +
              #     resources :comments, :sales
         | 
| 31 | 
            +
              #     resource :seller
         | 
| 32 | 
            +
              #   end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              # Sample resource route with more complex sub-resources
         | 
| 35 | 
            +
              #   resources :products do
         | 
| 36 | 
            +
              #     resources :comments
         | 
| 37 | 
            +
              #     resources :sales do
         | 
| 38 | 
            +
              #       get 'recent', :on => :collection
         | 
| 39 | 
            +
              #     end
         | 
| 40 | 
            +
              #   end
         | 
| 41 | 
            +
             | 
| 42 | 
            +
              # Sample resource route within a namespace:
         | 
| 43 | 
            +
              #   namespace :admin do
         | 
| 44 | 
            +
              #     # Directs /admin/products/* to Admin::ProductsController
         | 
| 45 | 
            +
              #     # (app/controllers/admin/products_controller.rb)
         | 
| 46 | 
            +
              #     resources :products
         | 
| 47 | 
            +
              #   end
         | 
| 48 | 
            +
             | 
| 49 | 
            +
              # You can have the root of your site routed with "root"
         | 
| 50 | 
            +
              # just remember to delete public/index.html.
         | 
| 51 | 
            +
              # root :to => 'welcome#index'
         | 
| 52 | 
            +
             | 
| 53 | 
            +
              # See how all your routes lay out with "rake routes"
         | 
| 54 | 
            +
             | 
| 55 | 
            +
              # This is a legacy wild controller route that's not recommended for RESTful applications.
         | 
| 56 | 
            +
              # Note: This route will make all actions in every controller accessible via GET requests.
         | 
| 57 | 
            +
              # match ':controller(/:action(/:id))(.:format)'
         | 
| 58 | 
            +
            end
         | 
| @@ -0,0 +1,4 @@ | |
| 1 | 
            +
            MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
         | 
| 2 | 
            +
            MONGODB (86ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
         | 
| 3 | 
            +
            MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
         | 
| 4 | 
            +
            MONGODB (37ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
         | 
| @@ -0,0 +1,435 @@ | |
| 1 | 
            +
            MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
         | 
| 2 | 
            +
            MONGODB (49ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
         | 
| 3 | 
            +
            MONGODB (110ms) dummy_test['system.namespaces'].find({})
         | 
| 4 | 
            +
            MONGODB (41ms) dummy_test['system.namespaces'].find({})
         | 
| 5 | 
            +
            MONGODB (318ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 6 | 
            +
            MONGODB (36ms) dummy_test['system.namespaces'].find({})
         | 
| 7 | 
            +
            MONGODB (68ms) dummy_test['$cmd'].find({:drop=>"contents"}).limit(-1)
         | 
| 8 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 9 | 
            +
            MONGODB (73ms) dummy_test['$cmd'].find({:drop=>"content_definitions"}).limit(-1)
         | 
| 10 | 
            +
            Processing by DigitalAssetsController#index as HTML
         | 
| 11 | 
            +
              Rendered c:/dev/rails/sandbox/daengine_3/app/views/digital_assets/index.html.erb within layouts/application (48.0ms)
         | 
| 12 | 
            +
            Completed 200 OK in 198ms (Views: 196.0ms)
         | 
| 13 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 14 | 
            +
            MONGODB (116ms) dummy_test['$cmd'].find({:create=>"digital_assets"}).limit(-1)
         | 
| 15 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-1", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-1", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:27 UTC, "created_at"=>2012-06-18 19:25:27 UTC, "documents"=>[{"path"=>"/1/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:27 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-1-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 16 | 
            +
            MONGODB (37ms) dummy_test['digital_assets'].find({})
         | 
| 17 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 18 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 19 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 20 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-2", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-2", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:27 UTC, "created_at"=>2012-06-18 19:25:27 UTC, "documents"=>[{"path"=>"/2/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:27 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-2-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 21 | 
            +
            Processing by DigitalAssetsController#show as HTML
         | 
| 22 | 
            +
              Parameters: {"id"=>"guid-foobar-permanent-2"}
         | 
| 23 | 
            +
            MONGODB (22ms) dummy_test['digital_assets'].find({:_id=>"guid-foobar-permanent-2"}).limit(-1).sort([[:_id, :asc]])
         | 
| 24 | 
            +
            Completed 200 OK in 51ms (Views: 24.0ms)
         | 
| 25 | 
            +
            MONGODB (36ms) dummy_test['system.namespaces'].find({})
         | 
| 26 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 27 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 28 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-3", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-3", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:27 UTC, "created_at"=>2012-06-18 19:25:27 UTC, "documents"=>[{"path"=>"/3/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:27 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-3-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 29 | 
            +
            Processing by DigitalAssetsController#show as HTML
         | 
| 30 | 
            +
              Parameters: {"id"=>"F0000.BAR"}
         | 
| 31 | 
            +
            MONGODB (12ms) dummy_test['digital_assets'].find({:sami_code=>"F0000.BAR"}).limit(-1).sort([[:changed_at, :desc]])
         | 
| 32 | 
            +
            Completed 200 OK in 21ms (Views: 4.0ms)
         | 
| 33 | 
            +
            MONGODB (22ms) dummy_test['system.namespaces'].find({})
         | 
| 34 | 
            +
            MONGODB (22ms) dummy_test['system.namespaces'].find({})
         | 
| 35 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 36 | 
            +
            MONGODB (2ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-4", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-4", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/4/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-4-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 37 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-5", "title"=>"Doc Title", "changed_at"=>2010-06-18 19:25:28 UTC, "guid"=>"guid-foobar-permanent-5", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/5/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-5-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 38 | 
            +
            Processing by DigitalAssetsController#show as HTML
         | 
| 39 | 
            +
              Parameters: {"id"=>"F0000.BAR"}
         | 
| 40 | 
            +
            MONGODB (12ms) dummy_test['digital_assets'].find({:sami_code=>"F0000.BAR"}).limit(-1).sort([[:changed_at, :desc]])
         | 
| 41 | 
            +
            Completed 200 OK in 18ms (Views: 3.0ms)
         | 
| 42 | 
            +
            MONGODB (40ms) dummy_test['system.namespaces'].find({})
         | 
| 43 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 44 | 
            +
            MONGODB (1ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 45 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-6", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-6", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/6/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-6-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 46 | 
            +
            Processing by DigitalAssetsController#show as HTML
         | 
| 47 | 
            +
              Parameters: {"id"=>"guid-foobar-permanent-6"}
         | 
| 48 | 
            +
            MONGODB (26ms) dummy_test['digital_assets'].find({:_id=>"guid-foobar-permanent-6"}).limit(-1).sort([[:_id, :asc]])
         | 
| 49 | 
            +
            Completed 200 OK in 33ms (Views: 5.0ms)
         | 
| 50 | 
            +
            MONGODB (25ms) dummy_test['system.namespaces'].find({})
         | 
| 51 | 
            +
            MONGODB (22ms) dummy_test['system.namespaces'].find({})
         | 
| 52 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 53 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 54 | 
            +
            Completed 200 OK in 22ms (Views: 20.0ms)
         | 
| 55 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 56 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 57 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-7", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-7", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/7/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-7-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 58 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-8", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-8", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/8/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-8-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 59 | 
            +
            MONGODB (2ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-9", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-9", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/9/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-9-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 60 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-10", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-10", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/10/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-10-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 61 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-11", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-11", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/11/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-11-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 62 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-12", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-12", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/12/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-12-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 63 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-12"}, {"$unset"=>{"documents"=>true}})
         | 
| 64 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-12"}, {"$pushAll"=>{"documents"=>[{"path"=>"/one/off.path", "doc_changed_at"=>2012-06-18 19:25:28 UTC, "content_type"=>"999", "_id"=>"-fwdslsh-one-fwdslsh-off-period-path"}]}})
         | 
| 65 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 66 | 
            +
              Parameters: {"path"=>"/one/off.path"}
         | 
| 67 | 
            +
            Completed 200 OK in 5ms (Views: 3.0ms)
         | 
| 68 | 
            +
            MONGODB (36ms) dummy_test['digital_assets'].find({:"documents.path"=>"/one/off.path"})
         | 
| 69 | 
            +
            MONGODB (12ms) dummy_test['digital_assets'].find({:"documents.path"=>"/one/off.path"})
         | 
| 70 | 
            +
            MONGODB (13ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:"documents.path"=>"/one/off.path"}, "fields"=>nil}).limit(-1)
         | 
| 71 | 
            +
            MONGODB (20ms) dummy_test['digital_assets'].find({:"documents.path"=>"/one/off.path"}).limit(-1).sort([[:_id, :asc]])
         | 
| 72 | 
            +
            MONGODB (25ms) dummy_test['system.namespaces'].find({})
         | 
| 73 | 
            +
            MONGODB (23ms) dummy_test['system.namespaces'].find({})
         | 
| 74 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 75 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-13", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-13", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/13/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-13-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 76 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-14", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-14", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/14/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-14-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 77 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-15", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-15", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/15/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-15-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 78 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-16", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-16", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/16/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-16-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 79 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-17", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-17", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:28 UTC, "created_at"=>2012-06-18 19:25:28 UTC, "documents"=>[{"path"=>"/17/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-17-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 80 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-18", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-18", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/18/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:28 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-18-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 81 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-18"}, {"$unset"=>{"documents"=>true}})
         | 
| 82 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"guid-foobar-permanent-18"}, {"$pushAll"=>{"documents"=>[{"path"=>"/one/off.path", "doc_changed_at"=>2012-06-18 19:25:29 UTC, "content_type"=>"999", "_id"=>"-fwdslsh-one-fwdslsh-off-period-path"}]}})
         | 
| 83 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 84 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 85 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 86 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"some-new-asset-undscr-134", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"some-new-asset_134", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/19/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-19-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 87 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$unset"=>{"documents"=>true}})
         | 
| 88 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$push"=>{"documents"=>{"_id"=>"-fwdslsh-some-fwdslsh-crazy-fwdslsh-file-period-path", "path"=>"/some/crazy/file.path", "doc_changed_at"=>2012-06-16 19:25:25 UTC, "content_type"=>"777"}}})
         | 
| 89 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 90 | 
            +
              Parameters: {"doctype"=>"666"}
         | 
| 91 | 
            +
            Completed 200 OK in 4ms (Views: 3.0ms)
         | 
| 92 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-19", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-19", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/20/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-20-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 93 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666"]}})
         | 
| 94 | 
            +
            MONGODB (25ms) dummy_test['system.namespaces'].find({})
         | 
| 95 | 
            +
            MONGODB (32ms) dummy_test['system.namespaces'].find({})
         | 
| 96 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 97 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"some-new-asset-undscr-134", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"some-new-asset_134", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/21/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-21-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 98 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$unset"=>{"documents"=>true}})
         | 
| 99 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].update({"_id"=>"some-new-asset-undscr-134"}, {"$push"=>{"documents"=>{"_id"=>"-fwdslsh-some-fwdslsh-crazy-fwdslsh-file-period-path", "path"=>"/some/crazy/file.path", "doc_changed_at"=>2012-06-16 19:25:25 UTC, "content_type"=>"777"}}})
         | 
| 100 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 101 | 
            +
              Parameters: {"doctype"=>["666", "777"]}
         | 
| 102 | 
            +
            Completed 200 OK in 10ms (Views: 8.0ms)
         | 
| 103 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666", "777"]}})
         | 
| 104 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-20", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-20", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/22/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-22-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 105 | 
            +
            MONGODB (16ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666", "777"]}})
         | 
| 106 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 107 | 
            +
            MONGODB (30ms) dummy_test['system.namespaces'].find({})
         | 
| 108 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 109 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-21", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-21", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"SOMETHING.001", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/23/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-23-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 110 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-22", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-22", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"SOMETHING.001", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/24/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-24-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 111 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-23", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-23", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"SOMETHING.001", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/25/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-25-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 112 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 113 | 
            +
              Parameters: {"sami"=>"SOMETHING.001"}
         | 
| 114 | 
            +
            Completed 200 OK in 18ms (Views: 17.0ms)
         | 
| 115 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:sami_code=>"SOMETHING.001"}, "fields"=>nil}).limit(-1)
         | 
| 116 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 117 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 118 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 119 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-24", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-24", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/26/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-26-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 120 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-25", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-25", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/27/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-27-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 121 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-26", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-26", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/28/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-28-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 122 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-27", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-27", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/29/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-29-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 123 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["9999"], "_id"=>"guid-foobar-permanent-28", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-28", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/30/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-30-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 124 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 125 | 
            +
              Parameters: {"funds"=>"1234"}
         | 
| 126 | 
            +
            Completed 200 OK in 7ms (Views: 3.0ms)
         | 
| 127 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["1234"]}}, "fields"=>nil}).limit(-1)
         | 
| 128 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 129 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 130 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 131 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-29", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-29", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/31/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-31-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 132 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-30", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-30", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/32/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-32-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 133 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-31", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-31", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/33/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-33-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 134 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-32", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-32", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/34/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-34-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 135 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["9999"], "_id"=>"guid-foobar-permanent-33", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-33", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:29 UTC, "created_at"=>2012-06-18 19:25:29 UTC, "documents"=>[{"path"=>"/35/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:29 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-35-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 136 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 137 | 
            +
              Parameters: {"funds"=>["1234", "9999"]}
         | 
| 138 | 
            +
            Completed 200 OK in 35ms (Views: 27.0ms)
         | 
| 139 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["1234", "9999"]}}, "fields"=>nil}).limit(-1)
         | 
| 140 | 
            +
            MONGODB (23ms) dummy_test['system.namespaces'].find({})
         | 
| 141 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 142 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 143 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-34", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-34", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/36/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-36-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 144 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "4567"], "_id"=>"guid-foobar-permanent-35", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-35", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/37/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-37-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 145 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-36", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-36", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/38/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-38-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 146 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["1234", "2323"], "_id"=>"guid-foobar-permanent-37", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-37", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/39/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-39-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 147 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["9999"], "_id"=>"guid-foobar-permanent-38", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-38", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/40/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-40-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 148 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 149 | 
            +
              Parameters: {"funds"=>["7777", "9999"]}
         | 
| 150 | 
            +
            Completed 200 OK in 5ms (Views: 4.0ms)
         | 
| 151 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["7777", "9999"]}}, "fields"=>nil}).limit(-1)
         | 
| 152 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 153 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 154 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 155 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["492"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-39", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-39", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/41/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-41-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 156 | 
            +
            MONGODB (2ms) dummy_test['digital_assets'].insert([{"audiences"=>["492"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-40", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-40", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/42/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-42-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 157 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["492"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-41", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-41", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/43/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-43-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 158 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 159 | 
            +
              Parameters: {"audience"=>"492"}
         | 
| 160 | 
            +
            Completed 200 OK in 4ms (Views: 2.0ms)
         | 
| 161 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:audiences=>{"$in"=>["492"]}}, "fields"=>nil}).limit(-1)
         | 
| 162 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 163 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 164 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 165 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 166 | 
            +
              Parameters: {"title"=>"Doc Title"}
         | 
| 167 | 
            +
            Completed 200 OK in 7ms (Views: 6.0ms)
         | 
| 168 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-42", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-42", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/44/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-44-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 169 | 
            +
            MONGODB (10ms) dummy_test['digital_assets'].find({:title=>"Doc Title"})
         | 
| 170 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 171 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 172 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 173 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-43", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-43", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/45/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-45-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 174 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 175 | 
            +
              Parameters: {"guid"=>"guid-foobar-permanent-43"}
         | 
| 176 | 
            +
            Completed 200 OK in 3ms (Views: 2.0ms)
         | 
| 177 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:guid=>"guid-foobar-permanent-43"})
         | 
| 178 | 
            +
            MONGODB (22ms) dummy_test['system.namespaces'].find({})
         | 
| 179 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 180 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 181 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 182 | 
            +
              Parameters: {"business_owner"=>"biz owner"}
         | 
| 183 | 
            +
            Completed 200 OK in 19ms (Views: 13.0ms)
         | 
| 184 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-44", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-44", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:30 UTC, "created_at"=>2012-06-18 19:25:30 UTC, "documents"=>[{"path"=>"/46/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:30 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-46-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 185 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:business_owner=>"biz owner"})
         | 
| 186 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 187 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 188 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 189 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-45", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-45", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/47/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-47-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 190 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-46", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-46", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/48/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-48-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 191 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-47", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-47", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/49/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-49-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 192 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-48", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-48", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/50/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-50-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 193 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-49", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-49", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/51/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-51-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 194 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-50", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-50", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/52/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-52-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 195 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 196 | 
            +
              Parameters: {"guid"=>"guid-foobar-permanent-50", "title"=>"Doc Title"}
         | 
| 197 | 
            +
            Completed 200 OK in 4ms (Views: 3.0ms)
         | 
| 198 | 
            +
            MONGODB (25ms) dummy_test['digital_assets'].find({:guid=>"guid-foobar-permanent-50", :title=>"Doc Title"})
         | 
| 199 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 200 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 201 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 202 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-51", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-51", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/53/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-53-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 203 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-52", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-52", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/54/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-54-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 204 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-53", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-53", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/55/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-55-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 205 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-54", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-54", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/56/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-56-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 206 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-55", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-55", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/57/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-57-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 207 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-56", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-56", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/58/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-58-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 208 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 209 | 
            +
              Parameters: {"title"=>"Doc Title", "audiences"=>["490"], "sami"=>"F0000.BAR"}
         | 
| 210 | 
            +
            Completed 200 OK in 3ms (Views: 3.0ms)
         | 
| 211 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:title=>"Doc Title", :sami_code=>"F0000.BAR"}, "fields"=>nil}).limit(-1)
         | 
| 212 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 213 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 214 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 215 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-57", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-57", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/59/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-59-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 216 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-58", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-58", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/60/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-60-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 217 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-59", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-59", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/61/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-61-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 218 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-60", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-60", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/62/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-62-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 219 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-61", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-61", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:31 UTC, "created_at"=>2012-06-18 19:25:31 UTC, "documents"=>[{"path"=>"/63/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:31 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-63-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 220 | 
            +
            Processing by DigitalAssetsController#search as HTML
         | 
| 221 | 
            +
              Parameters: {"guid"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
         | 
| 222 | 
            +
            Completed 200 OK in 3ms (Views: 2.0ms)
         | 
| 223 | 
            +
            MONGODB (5ms) dummy_test['digital_assets'].find({:guid=>"blargh-blargh-blargh", :title=>"Doc Title"})
         | 
| 224 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 225 | 
            +
            MONGODB (18ms) dummy_test['system.namespaces'].find({})
         | 
| 226 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 227 | 
            +
            MONGODB (9ms) dummy_test['system.namespaces'].find({})
         | 
| 228 | 
            +
            MONGODB (9ms) dummy_test['system.namespaces'].find({})
         | 
| 229 | 
            +
            MONGODB (10ms) dummy_test['system.namespaces'].find({})
         | 
| 230 | 
            +
            MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
         | 
| 231 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 232 | 
            +
            MONGODB (12ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 233 | 
            +
            MONGODB (12ms) dummy_test['system.namespaces'].find({})
         | 
| 234 | 
            +
            MONGODB (12ms) dummy_test['system.namespaces'].find({})
         | 
| 235 | 
            +
            MONGODB (10ms) dummy_test['system.namespaces'].find({})
         | 
| 236 | 
            +
            MONGODB (12ms) dummy_test['system.namespaces'].find({})
         | 
| 237 | 
            +
            MONGODB (12ms) dummy_test['system.namespaces'].find({})
         | 
| 238 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 239 | 
            +
            MONGODB (10ms) dummy_test['system.namespaces'].find({})
         | 
| 240 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 241 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 242 | 
            +
            MONGODB (12ms) dummy_test['system.namespaces'].find({})
         | 
| 243 | 
            +
            MONGODB (11ms) dummy_test['system.namespaces'].find({})
         | 
| 244 | 
            +
            MONGODB (10ms) dummy_test['system.namespaces'].find({})
         | 
| 245 | 
            +
            MONGODB (12ms) dummy_test['system.namespaces'].find({})
         | 
| 246 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-71", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-71", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/73/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-73-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 247 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-72", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-72", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/74/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-74-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 248 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-73", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-73", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/75/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-75-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 249 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-74", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-74", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/76/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-76-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 250 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-75", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-75", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/77/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-77-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 251 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-76", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-76", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/78/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-78-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 252 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-77", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-77", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/79/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-79-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 253 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-78", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-78", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/80/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-80-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 254 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-79", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-79", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/81/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-81-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 255 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-80", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-80", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/82/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-82-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 256 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-81", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-81", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/83/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-83-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 257 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-82", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-82", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/84/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-84-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 258 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-83", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-83", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/85/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-85-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 259 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-84", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-84", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/86/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-86-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 260 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-85", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-85", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/87/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-87-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 261 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-86", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-86", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/88/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-88-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 262 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-87", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-87", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/89/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-89-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 263 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-88", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-88", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/90/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-90-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 264 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-89", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-89", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/91/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-91-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 265 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-90", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-90", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/92/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-92-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 266 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-91", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-91", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/93/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-93-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 267 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-92", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-92", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/94/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-94-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 268 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-93", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-93", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/95/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-95-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 269 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-94", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-94", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/96/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-96-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 270 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-95", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-95", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/97/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-97-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 271 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-96", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-96", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/98/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-98-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 272 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-97", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-97", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/99/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-99-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 273 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-98", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-98", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/100/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-100-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 274 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-99", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-99", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/101/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-101-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 275 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-100", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-100", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/102/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-102-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 276 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-101", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-101", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/103/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-103-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 277 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-102", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-102", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/104/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-104-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 278 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-103", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-103", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/105/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-105-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 279 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-104", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-104", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:34 UTC, "created_at"=>2012-06-18 19:25:34 UTC, "documents"=>[{"path"=>"/106/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-106-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 280 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-105", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-105", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/107/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:34 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-107-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 281 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-106", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-106", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/108/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-108-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 282 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-107", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-107", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/109/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-109-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 283 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-108", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-108", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/110/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-110-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 284 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-109", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-109", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/111/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-111-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 285 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-110", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-110", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/112/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-112-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 286 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-111", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-111", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/113/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-113-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 287 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-112", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-112", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/114/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-114-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 288 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-113", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-113", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/115/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-115-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 289 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-114", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-114", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/116/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-116-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 290 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-115", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-115", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/117/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-117-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 291 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-116", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-116", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/118/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-118-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 292 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-117", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-117", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/119/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-119-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 293 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-118", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-118", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/120/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-120-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 294 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-119", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-119", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/121/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-121-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 295 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-120", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-120", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/122/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-122-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 296 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-121", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-121", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:15:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/123/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-123-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 297 | 
            +
            MONGODB (11ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 298 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:35 UTC}}, "fields"=>nil}).limit(-1)
         | 
| 299 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 300 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:35 UTC}}, "fields"=>nil}).limit(-1)
         | 
| 301 | 
            +
            MONGODB (10ms) dummy_test['digital_assets'].find({:updated_at=>{"$lte"=>2012-06-18 19:23:35 UTC}})
         | 
| 302 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].remove({:_id=>"guid-foobar-permanent-121"})
         | 
| 303 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 304 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 305 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 306 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 307 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-122", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-122", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/124/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-124-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 308 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-123", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-123", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/125/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-125-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 309 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303"]}})
         | 
| 310 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303"]}})
         | 
| 311 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["303"]}}, "fields"=>nil}).limit(-1)
         | 
| 312 | 
            +
            MONGODB (4ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["808"]}})
         | 
| 313 | 
            +
            MONGODB (4ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["808"]}})
         | 
| 314 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["808"]}}, "fields"=>nil}).limit(-1)
         | 
| 315 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 316 | 
            +
            MONGODB (109ms) dummy_test['system.namespaces'].find({})
         | 
| 317 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 318 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-124", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-124", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/126/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-126-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 319 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-125", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-125", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/127/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-127-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 320 | 
            +
            MONGODB (16ms) dummy_test['digital_assets'].find({:product_ids=>{"$in"=>["690"]}})
         | 
| 321 | 
            +
            MONGODB (61ms) dummy_test['digital_assets'].find({:product_ids=>{"$in"=>["690"]}})
         | 
| 322 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:product_ids=>{"$in"=>["690"]}}, "fields"=>nil}).limit(-1)
         | 
| 323 | 
            +
            MONGODB (21ms) dummy_test['system.namespaces'].find({})
         | 
| 324 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 325 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 326 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-126", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-126", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/128/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-128-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 327 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-127", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-127", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/129/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-129-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 328 | 
            +
            MONGODB (11ms) dummy_test['digital_assets'].find({:sami_code=>"F000000.BAR"})
         | 
| 329 | 
            +
            MONGODB (9ms) dummy_test['digital_assets'].find({:sami_code=>"F000000.BAR"})
         | 
| 330 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:sami_code=>"F000000.BAR"}, "fields"=>nil}).limit(-1)
         | 
| 331 | 
            +
            MONGODB (20ms) dummy_test['system.namespaces'].find({})
         | 
| 332 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 333 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 334 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-128", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-128", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/130/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-130-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 335 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-129", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-129", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/131/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-131-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 336 | 
            +
            MONGODB (10ms) dummy_test['digital_assets'].find({:"documents.path"=>"/130/foo/bar.txt"})
         | 
| 337 | 
            +
            MONGODB (9ms) dummy_test['digital_assets'].find({:"documents.path"=>"/130/foo/bar.txt"})
         | 
| 338 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:"documents.path"=>"/130/foo/bar.txt"}, "fields"=>nil}).limit(-1)
         | 
| 339 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 340 | 
            +
            MONGODB (18ms) dummy_test['system.namespaces'].find({})
         | 
| 341 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 342 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-130", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-130", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/132/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-132-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 343 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-131", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-131", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/133/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-133-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 344 | 
            +
            MONGODB (15ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666"]}})
         | 
| 345 | 
            +
            MONGODB (14ms) dummy_test['digital_assets'].find({:"documents.content_type"=>{"$in"=>["666"]}})
         | 
| 346 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:"documents.content_type"=>{"$in"=>["666"]}}, "fields"=>nil}).limit(-1)
         | 
| 347 | 
            +
            MONGODB (18ms) dummy_test['system.namespaces'].find({})
         | 
| 348 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 349 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 350 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-132", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-132", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/134/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-134-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 351 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-133", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-133", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/135/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-135-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 352 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["420"], "product_ids"=>["690", "420"], "fund_ids"=>["999"], "_id"=>"guid-foobar-permanent-134", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-134", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:35 UTC, "created_at"=>2012-06-18 19:25:35 UTC, "documents"=>[{"path"=>"/136/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:35 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-136-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 353 | 
            +
            MONGODB (15ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}})
         | 
| 354 | 
            +
            MONGODB (14ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}})
         | 
| 355 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["303", "420"]}}, "fields"=>nil}).limit(-1)
         | 
| 356 | 
            +
            MONGODB (9ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}, :audiences=>{"$in"=>["690"]}})
         | 
| 357 | 
            +
            MONGODB (10ms) dummy_test['digital_assets'].find({:fund_ids=>{"$in"=>["303", "420"]}, :audiences=>{"$in"=>["690"]}})
         | 
| 358 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:fund_ids=>{"$in"=>["303", "420"]}, :audiences=>{"$in"=>["690"]}}, "fields"=>nil}).limit(-1)
         | 
| 359 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 360 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 361 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 362 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-135", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-135", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/137/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-137-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 363 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-136", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-136", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/138/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-138-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 364 | 
            +
            MONGODB (10ms) dummy_test['digital_assets'].find({:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}})
         | 
| 365 | 
            +
            MONGODB (10ms) dummy_test['digital_assets'].find({:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}})
         | 
| 366 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
         | 
| 367 | 
            +
            MONGODB (18ms) dummy_test['system.namespaces'].find({})
         | 
| 368 | 
            +
            MONGODB (19ms) dummy_test['system.namespaces'].find({})
         | 
| 369 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({:drop=>"digital_assets"}).limit(-1)
         | 
| 370 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["690"], "product_ids"=>["690", "420"], "fund_ids"=>["303"], "_id"=>"guid-foobar-permanent-137", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-137", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F000000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/139/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-139-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 371 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-138", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-138", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"MEH12345.000", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 18:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/140/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-140-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 372 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-139", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-139", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/141/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-141-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 373 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-140", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-140", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/142/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-142-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 374 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-141", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-141", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:15:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/143/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-143-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 375 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-142", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-142", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:15:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/144/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-144-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 376 | 
            +
            MONGODB (33ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 377 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
         | 
| 378 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
         | 
| 379 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         | 
| 380 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-143", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-143", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/145/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-145-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 381 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-144", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-144", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/146/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-146-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 382 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-145", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-145", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/147/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-147-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 383 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-146", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-146", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/148/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-148-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 384 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-147", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-147", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/149/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-149-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 385 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-148", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-148", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/150/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-150-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 386 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-149", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-149", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/151/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-151-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 387 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-150", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-150", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/152/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-152-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 388 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-151", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-151", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/153/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-153-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 389 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-152", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-152", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/154/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-154-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 390 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-153", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-153", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/155/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-155-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 391 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-154", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-154", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/156/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-156-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 392 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-155", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-155", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/157/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-157-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 393 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-156", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-156", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/158/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-158-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 394 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-157", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-157", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/159/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-159-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 395 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-158", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-158", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/160/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-160-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 396 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-159", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-159", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/161/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-161-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 397 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-160", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-160", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/162/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-162-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 398 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-161", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-161", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/163/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-163-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 399 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-162", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-162", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/164/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-164-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 400 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-163", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-163", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/165/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-165-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 401 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-164", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-164", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/166/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-166-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 402 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-165", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-165", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/167/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-167-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 403 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-166", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-166", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/168/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-168-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 404 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-167", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-167", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/169/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-169-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 405 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-168", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-168", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/170/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-170-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 406 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-169", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-169", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/171/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-171-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 407 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-170", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-170", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/172/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-172-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 408 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-171", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-171", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/173/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-173-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 409 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-172", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-172", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/174/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-174-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 410 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-173", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-173", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/175/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-175-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 411 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-174", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-174", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/176/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-176-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 412 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-175", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-175", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/177/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-177-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 413 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-176", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-176", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/178/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-178-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 414 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-177", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-177", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/179/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-179-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 415 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-178", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-178", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/180/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-180-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 416 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-179", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-179", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/181/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-181-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 417 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-180", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-180", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/182/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-182-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 418 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-181", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-181", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/183/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-183-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 419 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-182", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-182", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/184/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-184-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 420 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-183", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-183", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/185/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-185-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 421 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-184", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-184", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/186/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-186-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 422 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-185", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-185", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/187/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-187-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 423 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-186", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-186", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/188/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-188-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 424 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-187", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-187", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/189/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-189-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 425 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-188", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-188", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/190/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-190-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 426 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-189", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-189", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/191/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-191-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 427 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-190", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-190", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/192/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-192-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 428 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-191", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-191", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/193/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-193-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 429 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-192", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-192", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/194/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-194-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 430 | 
            +
            MONGODB (3ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-193", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-193", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/195/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-195-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 431 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-194", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-194", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/196/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-196-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 432 | 
            +
            MONGODB (1ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-195", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-195", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/197/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-197-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 433 | 
            +
            MONGODB (0ms) dummy_test['digital_assets'].insert([{"audiences"=>["490"], "product_ids"=>["690", "420"], "fund_ids"=>["420"], "_id"=>"guid-foobar-permanent-196", "title"=>"Doc Title", "changed_at"=>2012-06-16 19:25:25 UTC, "guid"=>"guid-foobar-permanent-196", "published_at"=>2012-06-08 19:25:25 UTC, "expires_at"=>2012-08-18 19:25:25 UTC, "sami_code"=>"F0000.BAR", "business_owner"=>"biz owner", "updated_at"=>2012-06-18 19:25:36 UTC, "created_at"=>2012-06-18 19:25:36 UTC, "documents"=>[{"path"=>"/198/foo/bar.txt", "doc_changed_at"=>2012-06-16 19:25:36 UTC, "content_type"=>"666", "_id"=>"-fwdslsh-198-fwdslsh-foo-fwdslsh-bar-period-txt"}]}])
         | 
| 434 | 
            +
            MONGODB (10ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{:updated_at=>{"$lte"=>2012-06-18 19:23:36 UTC}}, "fields"=>nil}).limit(-1)
         | 
| 435 | 
            +
            MONGODB (9ms) dummy_test['$cmd'].find({"count"=>"digital_assets", "query"=>{}, "fields"=>nil}).limit(-1)
         |