I might do something like this just to play w/ a 2.3 rails app:

$ cd play
$ git clone git://github.com/rails/rails.git
Initialized empty Git repository in /Users/cdemyanovich/play/rails/.git/
...
Resolving deltas: 100% (73189/73189), done.
$ ruby rails/railties/bin/rails dummy
      create
      create  app/controllers
      ...
      create  log/test.log
$ cd dummy/vendor
$ cp -R ~/play/rails/ rails
$

In other words,

1. go to my play directory
2. clone rails
3. use the cloned rails to make a dummy app in my play directory
4. go to dummy/vendor
5. copy rails to dummy/vendor/rails (vendoring rails instead of relying on
2.3 early release gems)
6. play w/ the app

By the way, if you'd prefer something other than sqlite3 as a db, do this in
step 3

$ ruby rails/railties/bin/rails dummy -d mysql

see rails --help for more options

Regards,
Craig


-- 
Craig Demyanovich
Mutually Human Software
http://mutuallyhuman.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to