Report abuse


			
[~/dev]$ mkdir testjruby2
[~/dev]$ cd testjruby2
[~/dev/testjruby2]$ svn co http://svn.codehaus.org/jruby/tags/jruby-1_1 jruby
A    jruby/test
A    jruby/test/load
# ...
Checked out revision 6492.

[~/dev/testjruby2]$ cd jruby

[~/dev/testjruby2/jruby]$ ant; ant jar-complete; ant create-apidocs
Buildfile: build.xml

init:

# ...
  [javadoc] 237 warnings

BUILD SUCCESSFUL
Total time: 36 seconds

[~/dev/testjruby2/jruby]$ export PATH=$PATH:`pwd`/bin

[~/dev/testjruby2/jruby]$ jruby -S gem install rails mongrel hobo jdbc-mysql jdbc-h2 activerecord-jdbcmysql-adapter activerecord-jdbch2-adapter
JRuby limited openssl loaded. gem install jruby-openssl for full support.
http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSL
Bulk updating Gem source index for: http://gems.rubyforge.org
Successfully installed rake-0.8.1
# ...

[~/dev/testjruby2/jruby]$ cd ..

[~/dev/testjruby2]$ echo 'PATH=$PATH:`pwd`/jruby/bin' > set_jruby_path

[~/dev/testjruby2]$ jruby -S hobo hoborails

Generating Rails app...
      create  
      create  app/controllers
      create  app/helpers
      create  app/models
      create  app/views/layouts
      create  config/environments
      create  config/initializers
      create  db
      create  doc
      create  lib
      create  lib/tasks
      create  log
      create  public/images
      create  public/javascripts
      create  public/stylesheets
      create  script/performance
      create  script/process
      create  test/fixtures
      create  test/functional
      create  test/integration
      create  test/mocks/development
      create  test/mocks/test
      create  test/unit
      create  vendor
      create  vendor/plugins
      create  tmp/sessions
      create  tmp/sockets
      create  tmp/cache
      create  tmp/pids
      create  Rakefile
      create  README
      create  app/controllers/application.rb
      create  app/helpers/application_helper.rb
      create  test/test_helper.rb
      create  config/database.yml
      create  config/routes.rb
      create  public/.htaccess
      create  config/initializers/inflections.rb
      create  config/initializers/mime_types.rb
      create  config/boot.rb
      create  config/environment.rb
      create  config/environments/production.rb
      create  config/environments/development.rb
      create  config/environments/test.rb
      create  script/about
      create  script/console
      create  script/destroy
      create  script/generate
      create  script/performance/benchmarker
      create  script/performance/profiler
      create  script/performance/request
      create  script/process/reaper
      create  script/process/spawner
      create  script/process/inspector
      create  script/runner
      create  script/server
      create  script/plugin
      create  public/dispatch.rb
      create  public/dispatch.cgi
      create  public/dispatch.fcgi
      create  public/404.html
      create  public/422.html
      create  public/500.html
      create  public/index.html
      create  public/favicon.ico
      create  public/robots.txt
      create  public/images/rails.png
      create  public/javascripts/prototype.js
      create  public/javascripts/effects.js
      create  public/javascripts/dragdrop.js
      create  public/javascripts/controls.js
      create  public/javascripts/application.js
      create  doc/README_FOR_APP
      create  log/server.log
      create  log/production.log
      create  log/development.log
      create  log/test.log

Installing will_paginate
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/helper.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/console
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/database.yml
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/boot.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/lib
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/lib/html_inner_text.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/lib/load_fixtures.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/array_pagination_test.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/finder_test.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/topic.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/user.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/topics.yml
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/users.yml
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/schema.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/replies.yml
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/developer.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/project.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/projects.yml
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/admin.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/fixtures/reply.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/test/pagination_test.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/LICENSE
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/Rakefile
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/.gitignore
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/init.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib/will_paginate
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib/will_paginate/finder.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib/will_paginate/collection.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/lib/will_paginate.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/install.rb
A    /Users/stephen/dev/testjruby2/hoborails/vendor/plugins/will_paginate/README
Exported revision 459.


WILL PAGINATE MOVED TO GITHUB. This repository is no longer updated.
It's recommended that you install the gem instead of a Rails plugin:

  gem install will_paginate

The new repository is at: http://github.com/mislav/will_paginate

We have some wiki documentation, also: http://github.com/mislav/will_paginate/wikis

There you can find extensive installation instructions. Have a nice day!

-- Mislav

Installing hobofields
A    vendor/plugins/hobofields
A    vendor/plugins/hobofields/test
A    vendor/plugins/hobofields/test/rich_types.rdoctest
A    vendor/plugins/hobofields/test/hobofields.rdoctest
A    vendor/plugins/hobofields/test/migration_generator.rdoctest
A    vendor/plugins/hobofields/test/hobofields_api.rdoctest
A    vendor/plugins/hobofields/LICENSE.txt
A    vendor/plugins/hobofields/init.rb
A    vendor/plugins/hobofields/lib
A    vendor/plugins/hobofields/lib/hobo_fields.rb
A    vendor/plugins/hobofields/lib/hobofields.rb
A    vendor/plugins/hobofields/lib/hobo_fields
A    vendor/plugins/hobofields/lib/hobo_fields/field_spec.rb
A    vendor/plugins/hobofields/lib/hobo_fields/migration_generator.rb
A    vendor/plugins/hobofields/lib/hobo_fields/model_extensions.rb
A    vendor/plugins/hobofields/lib/hobo_fields/text.rb
A    vendor/plugins/hobofields/lib/hobo_fields/textile_string.rb
A    vendor/plugins/hobofields/lib/hobo_fields/password_string.rb
A    vendor/plugins/hobofields/lib/hobo_fields/markdown_string.rb
A    vendor/plugins/hobofields/lib/hobo_fields/html_string.rb
A    vendor/plugins/hobofields/lib/hobo_fields/enum_string.rb
A    vendor/plugins/hobofields/lib/hobo_fields/field_declaration_dsl.rb
A    vendor/plugins/hobofields/lib/hobo_fields/fields_declaration.rb
A    vendor/plugins/hobofields/lib/hobo_fields/email_address.rb
A    vendor/plugins/hobofields/CHANGES.txt
A    vendor/plugins/hobofields/generators
A    vendor/plugins/hobofields/generators/hobo_migration
A    vendor/plugins/hobofields/generators/hobo_migration/hobo_migration_generator.rb
A    vendor/plugins/hobofields/generators/hobo_migration/templates
A    vendor/plugins/hobofields/generators/hobo_migration/templates/migration.rb
A    vendor/plugins/hobofields/README.txt
Exported revision 16.

Installing Hobo plugin...

Initialising Hobo...
JRuby limited openssl loaded. gem install jruby-openssl for full support.
http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSL
      create  app/views/taglibs
      create  app/views/taglibs/themes
      create  public/hobothemes
      create  app/views/taglibs/application.dryml
      create  app/models/guest.rb
      create  public/javascripts/dryml-support.js

Installing Hobo Rapid and default theme...
JRuby limited openssl loaded. gem install jruby-openssl for full support.
http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSL
/Users/stephen/dev/testjruby2/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require': no such file to load -- sqlite3 (MissingSourceFile)
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/dependencies.rb:496:in `require'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/core_ext/kernel/requires.rb:7:in `require_library_or_gem'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/core_ext/kernel/requires.rb:5:in `require_library_or_gem'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/connection_adapters/sqlite3_adapter.rb:10:in `sqlite3_connection'
	 ... 22 levels...
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
	from /Users/stephen/dev/testjruby2/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
	from script/generate:3