I''ve been working from Edge Rails lately, and I know there are a lot of great features coming down the pipe, but I have no idea about where to go to learn about them. Obviously, I don''t exepct that the docs are updated on every patch or mod to the trunk, but is there anything I can find about how to use the latest and greatest? Thanks. Matt
On Jul 1, 2005, at 11:09 AM, Belorion wrote:> I''ve been working from Edge Rails lately, and I know there are a lot > of great features coming down the pipe, but I have no idea about where > to go to learn about them. > > Obviously, I don''t exepct that the docs are updated on every patch or > mod to the trunk, but is there anything I can find about how to use > the latest and greatest? > > Thanks. > > Matt >I generate gems from trunk and install those. On the rare occasion that I happen to have them build the rdocs (it takes forever), I can run gem_server and browse the docs locally. Works pretty well for me, I set up a pretty simple Makefile to build/install/uninstall the gems. If you''re just running the beta gems then the same thing applies for gem_server. -Scott _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Go to the directory you''ve checked, then run: cd railties rake This generates a directory <trunk-dir>/rails/ which includes the API documentation. Just point your browser to file://<absolute-path-to-trunk-dir>/rails/ doc/api/index.html and you''ve the latest-and-greatest :) Thomas Am 01.07.2005 um 17:09 schrieb Belorion:> I''ve been working from Edge Rails lately, and I know there are a lot > of great features coming down the pipe, but I have no idea about where > to go to learn about them. > > Obviously, I don''t exepct that the docs are updated on every patch or > mod to the trunk, but is there anything I can find about how to use > the latest and greatest? > > Thanks. > > Matt > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >