The Depot Application

The Depot Application

Table of Contents

Development Log

ruby /home/rubys/git/rails/railties/bin/rails -v
Rails 3.0.pre
/home/rubys/.rvm/ruby-1.9.2-preview1/bin/ruby -v
ruby 1.9.2dev (2009-07-18 trunk 24186) [x86_64-linux]
gem -v
1.3.5

4 Instant Gratification

erb -r ./erbshim -T - < /home/rubys/git/awdwr/data/code/erb/ex1.html.erb |  
         sed 's/<!--.*-->//'
<ul>
  <li>Addition: 3 </li>
  <li>Concatenation: cowboy </li>
  <li>Time in one hour:  2009-09-20 18:01:45 -0400 </li>
</ul>
erb -r ./erbshim -T - < /home/rubys/git/awdwr/data/code/erb/ex2.html.erb | 
         sed 's/<!--.*-->//'
 
Ho!<br />
 
Ho!<br />
 
Ho!<br />
 
Merry Christmas!
erb -r ./erbshim -T - < /home/rubys/git/awdwr/data/code/erb/ex2a.html.erb | 
         sed 's/<!--.*-->//'
Ho!<br />
Ho!<br />
Ho!<br />
 
Merry Christmas!
sed 's/-%>\n/%>/' < /home/rubys/git/awdwr/data/code/erb/ex2b.html.erb |  
         erb -r ./erbshim -T - | sed 's/<!--.*-->//'
Ho!<br />
Ho!<br />
Ho!<br />
Merry Christmas!

6.1 Iteration A1: Getting Something Running

ruby /home/rubys/git/rails/railties/bin/rails depot
      create  
      create  Rakefile
      create  README
      create  app
      create  app/helpers/application_helper.rb
      create  app/controllers/application_controller.rb
      create  app/models
      create  app/views/layouts
      create  config
      create  config/routes.rb
      create  config/environment.rb
      create  config/environments
      create  config/environments/test.rb
      create  config/environments/production.rb
      create  config/environments/development.rb
      create  config/initializers
      create  config/initializers/mime_types.rb
      create  config/initializers/session_store.rb
      create  config/initializers/inflections.rb
      create  config/initializers/new_rails_defaults.rb
      create  config/initializers/backtrace_silencers.rb
      create  config/locales
      create  config/locales/en.yml
      create  config/boot.rb
      create  config/database.yml
      create  db
      create  db/seeds.rb
      create  doc
      create  doc/README_FOR_APP
      create  lib
      create  lib/tasks
      create  log
      create  log/server.log
      create  log/production.log
      create  log/development.log
      create  log/test.log
      create  public
      create  public/422.html
      create  public/index.html
      create  public/favicon.ico
      create  public/robots.txt
      create  public/500.html
      create  public/404.html
      create  public/images
      create  public/images/rails.png
      create  public/stylesheets
       exist  public/stylesheets
      create  public/javascripts
      create  public/javascripts/dragdrop.js
      create  public/javascripts/effects.js
      create  public/javascripts/controls.js
      create  public/javascripts/prototype.js
      create  public/javascripts/application.js
      create  script
      create  script/server
      create  script/dbconsole
      create  script/destroy
      create  script/console
      create  script/performance/benchmarker
      create  script/performance/profiler
      create  script/plugin
      create  script/generate
      create  script/runner
      create  script/about
      create  test
      create  test/performance/browsing_test.rb
      create  test/test_helper.rb
      create  test/fixtures
      create  test/integration
      create  test/functional
      create  test/unit
      create  tmp
      create  tmp/sessions
      create  tmp/sockets
      create  tmp/cache
      create  tmp/pids
      create  vendor/plugins
ln -s /home/rubys/git/rails vendor/rails

6.2 Creating the Products Model and Maintenance Application

Expected at least 1 element matching "th", found 0.

Traceback:
  /home/rubys/git/awdwr/work/depot/vendor/rails/actionpack/lib/action_dispatch/testing/assertions/selector.rb:301:in `assert_select'
  /home/rubys/git/awdwr/checkdepot.rb:40:in `block in <class:DepotTest>'
  /home/rubys/git/gorp/lib/gorp/test.rb:45:in `instance_eval'
  /home/rubys/git/gorp/lib/gorp/test.rb:45:in `block in section'
  /home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb:62:in `run'
ls -p
app/
config/
db/
doc/
lib/
log/
public/
Rakefile
README
script/
test/
tmp/
vendor/
ruby script/generate scaffold product title:string description:text image_url:string
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/core_ext/object/try.rb:29: [BUG] rb_add_method: unsupported method type (8)

    
ruby 1.9.2dev (2009-07-18 trunk 24186) [x86_64-linux]

    
-- control frame ----------
c:0035 p:---- s:0106 b:0106 l:000105 d:000105 CFUNC  :alias_method
c:0034 p:0044 s:0101 b:0101 l:000100 d:000100 CLASS  /home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/core_ext/object/try.rb:29
c:0033 p:0009 s:0099 b:0099 l:000098 d:000098 TOP    /home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/core_ext/object/try.rb:1
c:0032 p:---- s:0097 b:0097 l:000096 d:000096 FINISH
c:0031 p:---- s:0095 b:0095 l:000094 d:000094 CFUNC  :require
c:0030 p:0012 s:0091 b:0091 l:000080 d:000090 BLOCK  /home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:167
c:0029 p:0055 s:0089 b:0089 l:000088 d:000088 METHOD /home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:537
c:0028 p:0041 s:0081 b:0081 l:000080 d:000080 METHOD /home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:167
c:0027 p:0023 s:0075 b:0075 l:000074 d:000074 TOP    /home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/nested_attributes.rb:2
c:0026 p:---- s:0073 b:0073 l:000072 d:000072 FINISH
c:0025 p:0301 s:0071 b:0069 l:000061 d:000068 BLOCK  /home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:3128
c:0024 p:---- s:0067 b:0067 l:000066 d:000066 FINISH
c:0023 p:---- s:0065 b:0065 l:000064 d:000064 CFUNC  :class_eval
c:0022 p:0379 s:0062 b:0062 l:000061 d:000061 CLASS  /home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:3112
c:0021 p:0177 s:0060 b:0060 l:000059 d:000059 TOP    /home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:16
c:0020 p:---- s:0058 b:0058 l:000057 d:000057 FINISH
c:0019 p:0034 s:0056 b:0056 l:001ff8 d:000055 BLOCK  /home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:257
c:0018 p:---- s:0054 b:0054 l:000053 d:000053 FINISH
c:0017 p:---- s:0052 b:0052 l:000051 d:000051 CFUNC  :initialize
c:0016 p:---- s:0050 b:0050 l:000049 d:000049 CFUNC  :new
c:0015 p:0057 s:0046 b:0046 l:000045 d:000045 METHOD /home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:87
c:0014 p:0012 s:0040 b:0040 l:000031 d:000039 BLOCK  /home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:97
c:0013 p:---- s:0037 b:0037 l:000036 d:000036 FINISH
c:0012 p:---- s:0035 b:0035 l:000034 d:000034 CFUNC  :each
c:0011 p:0071 s:0032 b:0032 l:000031 d:000031 METHOD /home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:97
c:0010 p:0119 s:0028 b:0028 l:000027 d:000027 METHOD /home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:110
c:0009 p:0072 s:0023 b:0023 l:000022 d:000022 TOP    /home/rubys/git/awdwr/work/depot/config/environment.rb:9
c:0008 p:---- s:0021 b:0021 l:000020 d:000020 FINISH
c:0007 p:---- s:0019 b:0019 l:000018 d:000018 CFUNC  :require
c:0006 p:0078 s:0015 b:0015 l:000014 d:000014 TOP    /home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/commands/generate.rb:2
c:0005 p:---- s:0012 b:0012 l:000011 d:000011 FINISH
c:0004 p:---- s:0010 b:0010 l:000009 d:000009 CFUNC  :require
c:0003 p:0038 s:0006 b:0006 l:0014d8 d:001398 EVAL   script/generate:3
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
c:0001 p:0000 s:0002 b:0002 l:0014d8 d:0014d8 TOP   
---------------------------
script/generate:3:in `<main>'
script/generate:3:in `require'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/commands/generate.rb:2:in `<top (required)>'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/commands/generate.rb:2:in `require'
/home/rubys/git/awdwr/work/depot/config/environment.rb:9:in `<top (required)>'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:110:in `run'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:97:in `run'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:97:in `each'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:97:in `block in run'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:87:in `run_initializer'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:87:in `new'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:87:in `initialize'
/home/rubys/git/awdwr/work/depot/vendor/rails/railties/lib/initializer.rb:257:in `block in <module:Rails>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:16:in `<top (required)>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:3112:in `<module:ActiveRecord>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:3112:in `class_eval'
/home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/base.rb:3128:in `block in <module:ActiveRecord>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activerecord/lib/active_record/nested_attributes.rb:2:in `<top (required)>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:167:in `require'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:537:in `new_constants_in'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:167:in `block in require'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/dependencies.rb:167:in `require'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/core_ext/object/try.rb:1:in `<top (required)>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/core_ext/object/try.rb:29:in `<class:Object>'
/home/rubys/git/awdwr/work/depot/vendor/rails/activesupport/lib/active_support/core_ext/object/try.rb:29:in `alias_method'

    
-- C level backtrace information -------------------------------------------
ruby(rb_vm_bugreport+0xa2) [0x5245f2]
ruby [0x562728]
ruby(rb_bug+0xb1) [0x5628a1]
ruby(rb_alias+0x110) [0x520600]
ruby [0x5207ea]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x516469]
ruby [0x51af26]
ruby(rb_iseq_eval+0x1a9) [0x51b3d9]
ruby [0x565a74]
ruby(rb_require_safe+0x467) [0x566c87]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x517d2c]
ruby [0x51af26]
ruby(rb_iseq_eval+0x1a9) [0x51b3d9]
ruby [0x565a74]
ruby(rb_require_safe+0x467) [0x566c87]
ruby(rb_autoload_load+0x8d) [0x4f70ed]
ruby [0x517bd6]
ruby [0x51af26]
ruby [0x522baa]
ruby [0x5230aa]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x516469]
ruby [0x51af26]
ruby(rb_iseq_eval+0x1a9) [0x51b3d9]
ruby [0x565a74]
ruby(rb_require_safe+0x467) [0x566c87]
ruby [0x4fa5e5]
ruby [0x5176f5]
ruby [0x51af26]
ruby [0x522baa]
ruby [0x45301c]
ruby [0x51cf5b]
ruby [0x51d3ef]
ruby(rb_class_new_instance+0x32) [0x4533b2]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x516469]
ruby [0x51af26]
ruby(rb_yield+0x249) [0x523629]
ruby(rb_ary_each+0x45) [0x5330b5]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x516469]
ruby [0x51af26]
ruby(rb_iseq_eval+0x1a9) [0x51b3d9]
ruby [0x565a74]
ruby(rb_require_safe+0x467) [0x566c87]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x516469]
ruby [0x51af26]
ruby(rb_iseq_eval+0x1a9) [0x51b3d9]
ruby [0x565a74]
ruby(rb_require_safe+0x467) [0x566c87]
ruby [0x50f76c]
ruby [0x521066]
ruby [0x516469]
ruby [0x51af26]
ruby(rb_iseq_eval_main+0x23a) [0x51b1fa]
ruby(ruby_exec_node+0xb3) [0x419873]
ruby(ruby_run_node+0x33) [0x41b553]
ruby(main+0x4d) [0x418bfd]
/lib/libc.so.6(__libc_start_main+0xe6) [0x7febb5cdc5a6]
ruby [0x418ae9]

    
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html

    
rake db:migrate
#<Errno::ENOENT: No such file or directory - db/migrate>
  /home/rubys/git/gorp/lib/gorp.rb:88:in `chdir'
  /home/rubys/git/gorp/lib/gorp.rb:88:in `cmd'
  makedepot.rb:34:in `block in <main>'
  /home/rubys/git/gorp/lib/gorp.rb:603:in `call'
  /home/rubys/git/gorp/lib/gorp.rb:603:in `block (4 levels) in <top (required)>'
  /home/rubys/git/gorp/lib/gorp.rb:595:in `each'
  /home/rubys/git/gorp/lib/gorp.rb:595:in `block (3 levels) in <top (required)>'
  /home/rubys/.rvm/gems/ruby/1.9.2/gems/builder-2.1.2/lib/builder/xmlbase.rb:134:in `call'
  /home/rubys/.rvm/gems/ruby/1.9.2/gems/builder-2.1.2/lib/builder/xmlbase.rb:134:in `_nested_structures'
  /home/rubys/.rvm/gems/ruby/1.9.2/gems/builder-2.1.2/lib/builder/xmlbase.rb:58:in `method_missing'
  /home/rubys/git/gorp/lib/gorp.rb:560:in `block (2 levels) in <top (required)>'
  /home/rubys/.rvm/gems/ruby/1.9.2/gems/builder-2.1.2/lib/builder/xmlbase.rb:134:in `call'
  /home/rubys/.rvm/gems/ruby/1.9.2/gems/builder-2.1.2/lib/builder/xmlbase.rb:134:in `_nested_structures'
  /home/rubys/.rvm/gems/ruby/1.9.2/gems/builder-2.1.2/lib/builder/xmlbase.rb:58:in `method_missing'
  /home/rubys/git/gorp/lib/gorp.rb:528:in `block in <top (required)>'
    

Start the server.