clipster 0.2.0 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/README.rdoc +2 -0
  2. data/Rakefile +4 -10
  3. data/app/assets/javascripts/clipster/clips.js +2 -0
  4. data/app/assets/stylesheets/clipster/clips.css +4 -0
  5. data/app/helpers/clipster/clips_helper.rb +4 -0
  6. data/lib/clipster/engine.rb +6 -0
  7. data/lib/clipster/version.rb +1 -1
  8. metadata +22 -83
  9. data/test/clipster_test.rb +0 -7
  10. data/test/dummy/README.rdoc +0 -261
  11. data/test/dummy/Rakefile +0 -7
  12. data/test/dummy/app/assets/javascripts/application.js +0 -15
  13. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  14. data/test/dummy/app/controllers/application_controller.rb +0 -3
  15. data/test/dummy/app/helpers/application_helper.rb +0 -2
  16. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  17. data/test/dummy/config.ru +0 -4
  18. data/test/dummy/config/application.rb +0 -59
  19. data/test/dummy/config/boot.rb +0 -10
  20. data/test/dummy/config/database.yml +0 -25
  21. data/test/dummy/config/environment.rb +0 -5
  22. data/test/dummy/config/environments/development.rb +0 -37
  23. data/test/dummy/config/environments/production.rb +0 -67
  24. data/test/dummy/config/environments/test.rb +0 -37
  25. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  26. data/test/dummy/config/initializers/inflections.rb +0 -15
  27. data/test/dummy/config/initializers/mime_types.rb +0 -5
  28. data/test/dummy/config/initializers/secret_token.rb +0 -7
  29. data/test/dummy/config/initializers/session_store.rb +0 -8
  30. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  31. data/test/dummy/config/locales/en.yml +0 -5
  32. data/test/dummy/config/routes.rb +0 -4
  33. data/test/dummy/db/development.sqlite3 +0 -0
  34. data/test/dummy/db/schema.rb +0 -28
  35. data/test/dummy/db/test.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +0 -480
  37. data/test/dummy/log/test.log +0 -19
  38. data/test/dummy/public/404.html +0 -26
  39. data/test/dummy/public/422.html +0 -26
  40. data/test/dummy/public/500.html +0 -25
  41. data/test/dummy/public/favicon.ico +0 -0
  42. data/test/dummy/script/rails +0 -6
  43. data/test/fixtures/clipster/clips.yml +0 -11
  44. data/test/functional/clipster/clip_controller_test.rb +0 -9
  45. data/test/integration/navigation_test.rb +0 -10
  46. data/test/test_helper.rb +0 -15
  47. data/test/unit/clipster/clip_test.rb +0 -9
  48. data/test/unit/helpers/clipster/clip_helper_test.rb +0 -6
data/test/dummy/Rakefile DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env rake
2
- # Add your own tasks in files placed in lib/tasks ending in .rake,
3
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
-
5
- require File.expand_path('../config/application', __FILE__)
6
-
7
- Dummy::Application.load_tasks
@@ -1,15 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // the compiled file.
9
- //
10
- // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
- // GO AFTER THE REQUIRES BELOW.
12
- //
13
- //= require jquery
14
- //= require jquery_ujs
15
- //= require_tree .
@@ -1,13 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the top of the
9
- * compiled file, but it's generally better to create a new file per style scope.
10
- *
11
- *= require_self
12
- *= require_tree .
13
- */
@@ -1,3 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- protect_from_forgery
3
- end
@@ -1,2 +0,0 @@
1
- module ApplicationHelper
2
- end
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Dummy</title>
5
- <%= stylesheet_link_tag "application", :media => "all" %>
6
- <%= javascript_include_tag "application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>
data/test/dummy/config.ru DELETED
@@ -1,4 +0,0 @@
1
- # This file is used by Rack-based servers to start the application.
2
-
3
- require ::File.expand_path('../config/environment', __FILE__)
4
- run Dummy::Application
@@ -1,59 +0,0 @@
1
- require File.expand_path('../boot', __FILE__)
2
-
3
- require 'rails/all'
4
-
5
- Bundler.require
6
- require "clipster"
7
-
8
- module Dummy
9
- class Application < Rails::Application
10
- # Settings in config/environments/* take precedence over those specified here.
11
- # Application configuration should go into files in config/initializers
12
- # -- all .rb files in that directory are automatically loaded.
13
-
14
- # Custom directories with classes and modules you want to be autoloadable.
15
- # config.autoload_paths += %W(#{config.root}/extras)
16
-
17
- # Only load the plugins named here, in the order given (default is alphabetical).
18
- # :all can be used as a placeholder for all plugins not explicitly named.
19
- # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
-
21
- # Activate observers that should always be running.
22
- # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
-
24
- # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
- # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
- # config.time_zone = 'Central Time (US & Canada)'
27
-
28
- # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
- # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
- # config.i18n.default_locale = :de
31
-
32
- # Configure the default encoding used in templates for Ruby 1.9.
33
- config.encoding = "utf-8"
34
-
35
- # Configure sensitive parameters which will be filtered from the log file.
36
- config.filter_parameters += [:password]
37
-
38
- # Enable escaping HTML in JSON.
39
- config.active_support.escape_html_entities_in_json = true
40
-
41
- # Use SQL instead of Active Record's schema dumper when creating the database.
42
- # This is necessary if your schema can't be completely dumped by the schema dumper,
43
- # like if you have constraints or database-specific column types
44
- # config.active_record.schema_format = :sql
45
-
46
- # Enforce whitelist mode for mass assignment.
47
- # This will create an empty whitelist of attributes available for mass-assignment for all models
48
- # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
- # parameters by using an attr_accessible or attr_protected declaration.
50
- config.active_record.whitelist_attributes = true
51
-
52
- # Enable the asset pipeline
53
- config.assets.enabled = true
54
-
55
- # Version of your assets, change this if you want to expire all your assets
56
- config.assets.version = '1.0'
57
- end
58
- end
59
-
@@ -1,10 +0,0 @@
1
- require 'rubygems'
2
- gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
-
4
- if File.exist?(gemfile)
5
- ENV['BUNDLE_GEMFILE'] = gemfile
6
- require 'bundler'
7
- Bundler.setup
8
- end
9
-
10
- $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -1,25 +0,0 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
3
- #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
6
- development:
7
- adapter: sqlite3
8
- database: db/development.sqlite3
9
- pool: 5
10
- timeout: 5000
11
-
12
- # Warning: The database defined as "test" will be erased and
13
- # re-generated from your development database when you run "rake".
14
- # Do not set this db to the same as development or production.
15
- test:
16
- adapter: sqlite3
17
- database: db/test.sqlite3
18
- pool: 5
19
- timeout: 5000
20
-
21
- production:
22
- adapter: sqlite3
23
- database: db/production.sqlite3
24
- pool: 5
25
- timeout: 5000
@@ -1,5 +0,0 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the rails application
5
- Dummy::Application.initialize!
@@ -1,37 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the web server when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
- # Show full error reports and disable caching
13
- config.consider_all_requests_local = true
14
- config.action_controller.perform_caching = false
15
-
16
- # Don't care if the mailer can't send
17
- config.action_mailer.raise_delivery_errors = false
18
-
19
- # Print deprecation notices to the Rails logger
20
- config.active_support.deprecation = :log
21
-
22
- # Only use best-standards-support built into browsers
23
- config.action_dispatch.best_standards_support = :builtin
24
-
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
- # Log the query plan for queries taking more than this (works
29
- # with SQLite, MySQL, and PostgreSQL)
30
- config.active_record.auto_explain_threshold_in_seconds = 0.5
31
-
32
- # Do not compress assets
33
- config.assets.compress = false
34
-
35
- # Expands the lines which load the assets
36
- config.assets.debug = true
37
- end
@@ -1,67 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # Code is not reloaded between requests
5
- config.cache_classes = true
6
-
7
- # Full error reports are disabled and caching is turned on
8
- config.consider_all_requests_local = false
9
- config.action_controller.perform_caching = true
10
-
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
13
-
14
- # Compress JavaScripts and CSS
15
- config.assets.compress = true
16
-
17
- # Don't fallback to assets pipeline if a precompiled asset is missed
18
- config.assets.compile = false
19
-
20
- # Generate digests for assets URLs
21
- config.assets.digest = true
22
-
23
- # Defaults to nil and saved in location specified by config.assets.prefix
24
- # config.assets.manifest = YOUR_PATH
25
-
26
- # Specifies the header that your server uses for sending files
27
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
-
30
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
- # config.force_ssl = true
32
-
33
- # See everything in the log (default is :info)
34
- # config.log_level = :debug
35
-
36
- # Prepend all log lines with the following tags
37
- # config.log_tags = [ :subdomain, :uuid ]
38
-
39
- # Use a different logger for distributed setups
40
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
-
42
- # Use a different cache store in production
43
- # config.cache_store = :mem_cache_store
44
-
45
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
- # config.action_controller.asset_host = "http://assets.example.com"
47
-
48
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
- # config.assets.precompile += %w( search.js )
50
-
51
- # Disable delivery errors, bad email addresses will be ignored
52
- # config.action_mailer.raise_delivery_errors = false
53
-
54
- # Enable threaded mode
55
- # config.threadsafe!
56
-
57
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
- # the I18n.default_locale when a translation can not be found)
59
- config.i18n.fallbacks = true
60
-
61
- # Send deprecation notices to registered listeners
62
- config.active_support.deprecation = :notify
63
-
64
- # Log the query plan for queries taking more than this (works
65
- # with SQLite, MySQL, and PostgreSQL)
66
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
- end
@@ -1,37 +0,0 @@
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 +0,0 @@
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 +0,0 @@
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 +0,0 @@
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 +0,0 @@
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 = '6fb2339e01612955d52d15ea6ba32f971a2c65d919c6fe17891d9f6e64c670a6095d6dc6198e7423cbd1c3b2c214a4f6e4d343debcc0c9ecf443f411aa39800b'
@@ -1,8 +0,0 @@
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 +0,0 @@
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 +0,0 @@
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,4 +0,0 @@
1
- Rails.application.routes.draw do
2
-
3
- mount Clipster::Engine => "/clipster"
4
- end
Binary file
@@ -1,28 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended to check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(:version => 20121007223631) do
15
-
16
- create_table "clipster_clips", :force => true do |t|
17
- t.string "url_hash", :default => "", :null => false
18
- t.text "clip", :default => "", :null => false
19
- t.string "language", :null => false
20
- t.string "title", :default => "Untitled", :null => false
21
- t.boolean "private", :default => false, :null => false
22
- t.datetime "created_at", :null => false
23
- t.datetime "updated_at", :null => false
24
- end
25
-
26
- add_index "clipster_clips", ["url_hash"], :name => "index_clipster_clips_on_hash", :unique => true
27
-
28
- end
File without changes
@@ -1,480 +0,0 @@
1
- Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
- Connecting to database specified by database.yml
4
-  (0.2ms) select sqlite_version(*)
5
-  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
-  (0.1ms) PRAGMA index_list("schema_migrations")
7
-  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
9
- Connecting to database specified by database.yml
10
-  (0.3ms) select sqlite_version(*)
11
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
12
-
13
-
14
- Started GET "/" for 127.0.0.1 at 2012-10-10 22:17:20 -0400
15
- Connecting to database specified by database.yml
16
-
17
- ActionController::RoutingError (No route matches [GET] "/"):
18
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
19
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
20
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
21
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
22
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
23
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
24
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
25
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
26
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
27
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
28
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
29
- railties (3.2.8) lib/rails/application.rb:223:in `call'
30
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
31
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
32
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
33
- /Users/kylebock/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
34
- /Users/kylebock/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
35
- /Users/kylebock/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
36
-
37
-
38
- Rendered /Users/kylebock/.rvm/gems/ruby-1.9.3-p194@dynamic_errors/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
39
-
40
-
41
- Started GET "/clipster" for 127.0.0.1 at 2012-10-10 22:17:23 -0400
42
- Processing by Clipster::ClipsController#index as HTML
43
- Completed 500 Internal Server Error in 44ms
44
-
45
- ActiveRecord::StatementInvalid (Could not find table 'clipster_clips'):
46
- activerecord (3.2.8) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
47
- activerecord (3.2.8) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
48
- activerecord (3.2.8) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
49
- activerecord (3.2.8) lib/active_record/model_schema.rb:228:in `yield'
50
- activerecord (3.2.8) lib/active_record/model_schema.rb:228:in `default'
51
- activerecord (3.2.8) lib/active_record/model_schema.rb:228:in `columns'
52
- activerecord (3.2.8) lib/active_record/model_schema.rb:243:in `column_defaults'
53
- activerecord (3.2.8) lib/active_record/base.rb:482:in `initialize'
54
- /Users/kylebock/Documents/dev/github/clipster_migration_app/lib/clipster/app/controllers/clipster/clips_controller.rb:24:in `new'
55
- /Users/kylebock/Documents/dev/github/clipster_migration_app/lib/clipster/app/controllers/clipster/clips_controller.rb:24:in `create'
56
- /Users/kylebock/Documents/dev/github/clipster_migration_app/lib/clipster/app/controllers/clipster/clips_controller.rb:6:in `index'
57
- actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
58
- actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
59
- actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
60
- actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
61
- activesupport (3.2.8) lib/active_support/callbacks.rb:403:in `_run__2567399741105445575__process_action__3172938027606579029__callbacks'
62
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
63
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
64
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
65
- actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
66
- actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
67
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
68
- activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
69
- activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
70
- activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
71
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
72
- actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
73
- activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
74
- actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
75
- actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
76
- actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
77
- actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
78
- actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
79
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
80
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
81
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
82
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
83
- journey (1.0.4) lib/journey/router.rb:56:in `each'
84
- journey (1.0.4) lib/journey/router.rb:56:in `call'
85
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
86
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
87
- railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing'
88
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
89
- journey (1.0.4) lib/journey/router.rb:56:in `each'
90
- journey (1.0.4) lib/journey/router.rb:56:in `call'
91
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
92
- actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
93
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
94
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
95
- actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
96
- actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
97
- actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
98
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
99
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
100
- actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
101
- activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
102
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
103
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
104
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__606415735569931869__call__1340605003951080016__callbacks'
105
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
106
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
107
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
108
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
109
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
110
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
111
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
112
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
113
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
114
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
115
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
116
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
117
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
118
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
119
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
120
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
121
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
122
- railties (3.2.8) lib/rails/application.rb:223:in `call'
123
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
124
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
125
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
126
- /Users/kylebock/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
127
- /Users/kylebock/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
128
- /Users/kylebock/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
129
-
130
-
131
- Rendered /Users/kylebock/.rvm/gems/ruby-1.9.3-p194@dynamic_errors/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
132
- Rendered /Users/kylebock/.rvm/gems/ruby-1.9.3-p194@dynamic_errors/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
133
- Rendered /Users/kylebock/.rvm/gems/ruby-1.9.3-p194@dynamic_errors/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms)
134
- Connecting to database specified by database.yml
135
-  (0.3ms) select sqlite_version(*)
136
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
137
- Connecting to database specified by database.yml
138
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
139
- Migrating to CreateClipsterClips (20121011021849)
140
-  (0.0ms) select sqlite_version(*)
141
-  (0.0ms) begin transaction
142
-  (0.7ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
143
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121011021849')
144
-  (1.3ms) commit transaction
145
- Migrating to AddHashIndexToClips (20121011021850)
146
-  (0.0ms) begin transaction
147
-  (0.1ms) PRAGMA index_list("clipster_clips")
148
-  (0.4ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
149
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121011021850')
150
-  (1.3ms) commit transaction
151
- Migrating to PopulateClipDefaults (20121011021851)
152
-  (0.1ms) begin transaction
153
-  (0.6ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
154
-  (0.0ms) PRAGMA index_list("clipster_clips")
155
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
156
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
157
-  (0.5ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
158
-  (0.2ms) SELECT * FROM "clipster_clips"
159
-  (0.4ms) DROP TABLE "clipster_clips"
160
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
161
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
162
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
163
-  (0.0ms) PRAGMA index_list("clipster_clips")
164
-  (0.5ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
165
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
166
-  (0.2ms) DROP TABLE "altered_clipster_clips"
167
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
168
-  (0.0ms) PRAGMA index_list("clipster_clips")
169
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
170
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
171
-  (0.1ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
172
-  (0.1ms) SELECT * FROM "clipster_clips"
173
-  (0.2ms) DROP TABLE "clipster_clips"
174
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
175
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
176
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
177
-  (0.0ms) PRAGMA index_list("clipster_clips")
178
-  (0.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
179
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
180
-  (0.1ms) DROP TABLE "altered_clipster_clips"
181
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
182
-  (0.0ms) PRAGMA index_list("clipster_clips")
183
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
184
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
185
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
186
-  (0.1ms) SELECT * FROM "clipster_clips"
187
-  (0.2ms) DROP TABLE "clipster_clips"
188
-  (0.3ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
189
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
190
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
191
-  (0.0ms) PRAGMA index_list("clipster_clips")
192
-  (0.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
193
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
194
-  (0.2ms) DROP TABLE "altered_clipster_clips"
195
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
196
-  (0.0ms) PRAGMA index_list("clipster_clips")
197
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
198
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
199
-  (0.3ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
200
-  (0.1ms) SELECT * FROM "clipster_clips"
201
-  (0.2ms) DROP TABLE "clipster_clips"
202
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
203
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
204
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
205
-  (0.0ms) PRAGMA index_list("clipster_clips")
206
-  (0.1ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
207
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
208
-  (0.1ms) DROP TABLE "altered_clipster_clips"
209
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
210
-  (0.0ms) PRAGMA index_list("clipster_clips")
211
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
212
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
213
-  (0.1ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
214
-  (0.1ms) SELECT * FROM "clipster_clips"
215
-  (0.1ms) DROP TABLE "clipster_clips"
216
-  (0.3ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
217
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
218
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
219
-  (0.0ms) PRAGMA index_list("clipster_clips")
220
-  (0.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
221
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
222
-  (0.2ms) DROP TABLE "altered_clipster_clips"
223
-  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121011021851')
224
-  (2.0ms) commit transaction
225
- Migrating to RenameHashToUrlHash (20121011021852)
226
-  (0.1ms) begin transaction
227
-  (0.3ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
228
-  (0.0ms) PRAGMA index_list("clipster_clips")
229
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
230
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
231
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("url_hash")
232
-  (0.1ms) SELECT * FROM "clipster_clips"
233
-  (0.3ms) DROP TABLE "clipster_clips"
234
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
235
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
236
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
237
-  (0.0ms) PRAGMA index_list("clipster_clips")
238
-  (0.4ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
239
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
240
-  (0.2ms) DROP TABLE "altered_clipster_clips"
241
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121011021852')
242
-  (1.9ms) commit transaction
243
- Migrating to RemoveDefaultFromLanguage (20121011021853)
244
-  (0.1ms) begin transaction
245
-  (0.3ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
246
-  (0.0ms) PRAGMA index_list("clipster_clips")
247
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
248
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
249
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("url_hash")
250
-  (0.1ms) SELECT * FROM "clipster_clips"
251
-  (0.3ms) DROP TABLE "clipster_clips"
252
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
253
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
254
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
255
-  (0.0ms) PRAGMA index_list("clipster_clips")
256
-  (0.4ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
257
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
258
-  (0.2ms) DROP TABLE "altered_clipster_clips"
259
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121011021853')
260
-  (1.4ms) commit transaction
261
- Migrating to SetDefaultTitleToUntitled (20121011021854)
262
-  (0.1ms) begin transaction
263
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
264
-  (0.0ms) PRAGMA index_list("clipster_clips")
265
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
266
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
267
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("url_hash")
268
-  (0.1ms) SELECT * FROM "clipster_clips"
269
-  (0.3ms) DROP TABLE "clipster_clips"
270
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT 'Untitled' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
271
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
272
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
273
-  (0.0ms) PRAGMA index_list("clipster_clips")
274
-  (0.5ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
275
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
276
-  (0.2ms) DROP TABLE "altered_clipster_clips"
277
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121011021854')
278
-  (2.1ms) commit transaction
279
-  (0.6ms) select sqlite_version(*)
280
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
281
-  (0.1ms) PRAGMA index_list("clipster_clips")
282
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
283
- Connecting to database specified by database.yml
284
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
285
-  (3.2ms) select sqlite_version(*)
286
-  (1.9ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT 'Untitled' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
287
-  (0.1ms) PRAGMA index_list("clipster_clips")
288
-  (1.3ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
289
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
290
-  (0.0ms) PRAGMA index_list("schema_migrations")
291
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
292
-  (0.1ms) SELECT version FROM "schema_migrations"
293
-  (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021854')
294
-  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021849')
295
-  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021850')
296
-  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021851')
297
-  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021852')
298
-  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021853')
299
- Connecting to database specified by database.yml
300
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
301
-  (0.4ms) select sqlite_version(*)
302
-  (2.1ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT 'Untitled' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
303
-  (0.1ms) PRAGMA index_list("clipster_clips")
304
-  (1.4ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
305
-  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
306
-  (0.0ms) PRAGMA index_list("schema_migrations")
307
-  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
308
-  (0.1ms) SELECT version FROM "schema_migrations"
309
-  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021854')
310
-  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021849')
311
-  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021850')
312
-  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021851')
313
-  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021852')
314
-  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021853')
315
- Connecting to database specified by database.yml
316
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
317
-  (0.3ms) select sqlite_version(*)
318
-  (2.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT 'Untitled' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
319
-  (0.1ms) PRAGMA index_list("clipster_clips")
320
-  (2.1ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
321
-  (7.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
322
-  (0.1ms) PRAGMA index_list("schema_migrations")
323
-  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
324
-  (0.1ms) SELECT version FROM "schema_migrations"
325
-  (8.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021854')
326
-  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021849')
327
-  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021850')
328
-  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021851')
329
-  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021852')
330
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121011021853')
331
- Connecting to database specified by database.yml
332
- Connecting to database specified by database.yml
333
-  (0.2ms) select sqlite_version(*)
334
-  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
335
-  (0.0ms) PRAGMA index_list("schema_migrations")
336
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
337
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
338
- Migrating to CreateClipsterClips (20121004010757)
339
-  (0.0ms) begin transaction
340
-  (0.6ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
341
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121004010757')
342
-  (3.1ms) commit transaction
343
- Migrating to AddHashIndexToClips (20121007154400)
344
-  (0.1ms) begin transaction
345
-  (0.1ms) PRAGMA index_list("clipster_clips")
346
-  (0.4ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
347
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121007154400')
348
-  (1.4ms) commit transaction
349
- Migrating to PopulateClipDefaults (20121007155125)
350
-  (0.0ms) begin transaction
351
-  (0.7ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
352
-  (0.0ms) PRAGMA index_list("clipster_clips")
353
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
354
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
355
-  (0.4ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
356
-  (0.1ms) SELECT * FROM "clipster_clips"
357
-  (0.4ms) DROP TABLE "clipster_clips"
358
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
359
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
360
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
361
-  (0.0ms) PRAGMA index_list("clipster_clips")
362
-  (0.4ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
363
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
364
-  (0.2ms) DROP TABLE "altered_clipster_clips"
365
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
366
-  (0.0ms) PRAGMA index_list("clipster_clips")
367
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
368
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
369
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
370
-  (0.1ms) SELECT * FROM "clipster_clips"
371
-  (0.2ms) DROP TABLE "clipster_clips"
372
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
373
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
374
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
375
-  (0.0ms) PRAGMA index_list("clipster_clips")
376
-  (0.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
377
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
378
-  (0.1ms) DROP TABLE "altered_clipster_clips"
379
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
380
-  (0.0ms) PRAGMA index_list("clipster_clips")
381
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
382
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
383
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
384
-  (0.1ms) SELECT * FROM "clipster_clips"
385
-  (0.1ms) DROP TABLE "clipster_clips"
386
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
387
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
388
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
389
-  (0.0ms) PRAGMA index_list("clipster_clips")
390
-  (0.3ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
391
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
392
-  (0.2ms) DROP TABLE "altered_clipster_clips"
393
-  (0.2ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
394
-  (0.0ms) PRAGMA index_list("clipster_clips")
395
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
396
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
397
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
398
-  (0.1ms) SELECT * FROM "clipster_clips"
399
-  (0.2ms) DROP TABLE "clipster_clips"
400
-  (0.3ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
401
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
402
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
403
-  (0.0ms) PRAGMA index_list("clipster_clips")
404
-  (0.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
405
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
406
-  (0.2ms) DROP TABLE "altered_clipster_clips"
407
-  (0.5ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
408
-  (0.0ms) PRAGMA index_list("clipster_clips")
409
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
410
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
411
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("hash")
412
-  (0.1ms) SELECT * FROM "clipster_clips"
413
-  (0.2ms) DROP TABLE "clipster_clips"
414
-  (0.4ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
415
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
416
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
417
-  (0.0ms) PRAGMA index_list("clipster_clips")
418
-  (0.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("hash")
419
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
420
-  (0.2ms) DROP TABLE "altered_clipster_clips"
421
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121007155125')
422
-  (1.9ms) commit transaction
423
- Migrating to RenameHashToUrlHash (20121007162741)
424
-  (0.1ms) begin transaction
425
-  (0.3ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
426
-  (0.0ms) PRAGMA index_list("clipster_clips")
427
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
428
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
429
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("url_hash")
430
-  (0.2ms) SELECT * FROM "clipster_clips"
431
-  (0.4ms) DROP TABLE "clipster_clips"
432
-  (0.6ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
433
-  (0.1ms) PRAGMA index_list("altered_clipster_clips")
434
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
435
-  (0.1ms) PRAGMA index_list("clipster_clips")
436
-  (0.6ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
437
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
438
-  (2.4ms) DROP TABLE "altered_clipster_clips"
439
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121007162741')
440
-  (2.1ms) commit transaction
441
- Migrating to RemoveDefaultFromLanguage (20121007223358)
442
-  (0.1ms) begin transaction
443
-  (0.3ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) DEFAULT '' NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
444
-  (0.0ms) PRAGMA index_list("clipster_clips")
445
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
446
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
447
-  (0.3ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("url_hash")
448
-  (0.2ms) SELECT * FROM "clipster_clips"
449
-  (0.4ms) DROP TABLE "clipster_clips"
450
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
451
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
452
-  (0.0ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
453
-  (0.0ms) PRAGMA index_list("clipster_clips")
454
-  (3.2ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
455
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
456
-  (0.2ms) DROP TABLE "altered_clipster_clips"
457
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121007223358')
458
-  (2.4ms) commit transaction
459
- Migrating to SetDefaultTitleToUntitled (20121007223631)
460
-  (0.1ms) begin transaction
461
-  (0.4ms) CREATE TEMPORARY TABLE "altered_clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
462
-  (0.0ms) PRAGMA index_list("clipster_clips")
463
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')
464
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
465
-  (0.2ms) CREATE UNIQUE INDEX "temp_index_altered_clipster_clips_on_hash" ON "altered_clipster_clips" ("url_hash")
466
-  (0.2ms) SELECT * FROM "clipster_clips"
467
-  (0.3ms) DROP TABLE "clipster_clips"
468
-  (0.2ms) CREATE TABLE "clipster_clips" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_hash" varchar(255) DEFAULT '' NOT NULL, "clip" text DEFAULT '' NOT NULL, "language" varchar(255) NOT NULL, "title" varchar(255) DEFAULT 'Untitled' NOT NULL, "private" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
469
-  (0.0ms) PRAGMA index_list("altered_clipster_clips")
470
-  (0.1ms) PRAGMA index_info('temp_index_altered_clipster_clips_on_hash')
471
-  (0.0ms) PRAGMA index_list("clipster_clips")
472
-  (0.6ms) CREATE UNIQUE INDEX "index_clipster_clips_on_hash" ON "clipster_clips" ("url_hash")
473
-  (0.1ms) SELECT * FROM "altered_clipster_clips"
474
-  (1.3ms) DROP TABLE "altered_clipster_clips"
475
-  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121007223631')
476
-  (2.1ms) commit transaction
477
-  (0.4ms) select sqlite_version(*)
478
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
479
-  (0.0ms) PRAGMA index_list("clipster_clips")
480
-  (0.0ms) PRAGMA index_info('index_clipster_clips_on_hash')