The Depot Application

The Depot Application

15 Rails In Depth 14.5 Performance Testing

15 Rails In Depth

rake db:version
(in /home/rubys/git/awdwr/work-191/depot)
Current version: 20100301000007
edit lib/tasks/db_schema_migrations.rake
namespace :db do
  desc "Prints the migrated versions"
  task :schema_migrations => :environment do
    puts ActiveRecord::Base.connection.select_values(
      'select version from schema_migrations order by version' )
  end
end
rake db:schema_migrations
(in /home/rubys/git/awdwr/work-191/depot)
20100301000001
20100301000002
20100301000003
20100301000004
20100301000005
20100301000006
20100301000007
ls log
development.log
production.log
server.log
test.log
find script -type f
script/rails
echo "puts $:" | IRBRC=tmp/irbrc rails console
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:14: warning: already initialized constant VERSION
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:14: warning: already initialized constant RubyGemsVersion
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:194: warning: already initialized constant MUTEX
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:196: warning: already initialized constant RubyGemsPackageVersion
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:202: warning: already initialized constant WIN_PATTERNS
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:1079: warning: already initialized constant MARSHAL_SPEC_DIR
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems.rb:1084: warning: already initialized constant YAML_SPEC_DIR
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:72: warning: already initialized constant VERSION_PATTERN
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/requirement.rb:20: warning: already initialized constant OPS
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/requirement.rb:30: warning: already initialized constant OP_RE
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/version.rb:246: warning: already initialized constant Requirement
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:18: warning: already initialized constant TYPES
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/platform.rb:171: warning: already initialized constant RUBY
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/platform.rb:177: warning: already initialized constant CURRENT
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:39: warning: already initialized constant NONEXISTENT_SPECIFICATION_VERSION
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:50: warning: already initialized constant CURRENT_SPECIFICATION_VERSION
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:56: warning: already initialized constant SPECIFICATION_VERSION_HISTORY
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:72: warning: already initialized constant MARSHAL_FIELDS
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:75: warning: already initialized constant TODAY
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/source_index.rb:593: warning: already initialized constant Cache
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:14: warning: already initialized constant DEFAULT_BACKTRACE
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:15: warning: already initialized constant DEFAULT_BENCHMARK
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:16: warning: already initialized constant DEFAULT_BULK_THRESHOLD
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:17: warning: already initialized constant DEFAULT_VERBOSITY
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:18: warning: already initialized constant DEFAULT_UPDATE_SOURCES
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:24: warning: already initialized constant OPERATING_SYSTEM_DEFAULTS
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:30: warning: already initialized constant PLATFORM_DEFAULTS
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/rubygems/config_file.rb:53: warning: already initialized constant SYSTEM_WIDE_CONFIG_FILE
Loading development environment (Rails 3.0.0.beta1)
>> puts $:
/home/rubys/git/awdwr/work-191/depot/app/helpers
/home/rubys/git/awdwr/work-191/depot/app/controllers
/home/rubys/git/awdwr/work-191/depot/app/views
/home/rubys/git/awdwr/work-191/depot/app/models
/home/rubys/git/rails/railties/builtin/rails_info
/home/rubys/git/awdwr/work-191/depot/lib
/home/rubys/git/awdwr/work-191/depot/vendor
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/mail-2.1.2/lib/mail/vendor/treetop-1.4.3/lib
/home/rubys/git/rails/
/home/rubys/git/rails/activeresource/lib
/home/rubys/git/rails/actionmailer/lib
/home/rubys/git/rails/railties/lib
/home/rubys/git/rails/actionpack/lib
/home/rubys/git/rails/activerecord/lib
/home/rubys/git/rails/activemodel/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/mail-2.1.2/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/arel-0.2.1/lib
/home/rubys/git/rails/activesupport/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/thor-0.13.0/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/erubis-2.6.5/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/sqlite3-ruby-1.2.5/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/sqlite3-ruby-1.2.5/ext
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/rack-mount-0.4.7/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/rack-1.1.0/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/memcache-client-1.7.8/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/rack-test-0.5.3/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/text-format-1.0.0/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/i18n-0.3.3/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/tzinfo-0.3.16/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/rake-0.8.7/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/text-hyphen-1.0.0/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/mime-types-1.16/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/builder-2.1.2/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/abstract-1.0.0/lib
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/bundler-0.9.4/lib
/home/rubys/git/gorp/lib
/home/rubys/git/arel/lib
/home/rubys/git/rack/lib
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby/1.9.1/x86_64-linux
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/site_ruby
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/vendor_ruby/1.9.1
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/vendor_ruby/1.9.1/x86_64-linux
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/vendor_ruby
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/1.9.1
/home/rubys/.rvm/ruby-1.9.1-p376/lib/ruby/1.9.1/x86_64-linux
.
/home/rubys/git/rails/actionpack/lib/action_controller/vendor/html-scanner
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/rack-mount-0.4.7/lib/rack/mount/vendor/multimap
/home/rubys/.rvm/gems/ruby-1.9.1-p376/gems/rack-mount-0.4.7/lib/rack/mount/vendor/reginald
=> nil
>>