Semi-official Rails GIT repositories, maintained by Michael Koziarski :
$ git clone git://github.com/NZKoz/koz-rails.git
Update 13-Mar-2008: Steve’s git-svn mirror of the Rails repo (see the comments)
git clone git://git.sanityinc.com/rails.git
Semi-official Rails GIT repositories, maintained by Michael Koziarski :
$ git clone git://github.com/NZKoz/koz-rails.git
Update 13-Mar-2008: Steve’s git-svn mirror of the Rails repo (see the comments)
git clone git://git.sanityinc.com/rails.git
Got my own Joyent Facebook Developer Accelerator . Will try to put some Merb application on it. To read:
Tried the new Rails version. After
$ rails rls20PR && cd rls20PR $ rake rails:freeze:edge TAG=rel_2-0-0_PR $ rake rails:update
for every rake task i’ve got:
rake aborted! no such file to load -- active_resource
edge_rails requires ActiveResource, and the rake freeze:edge:rails don’t checkout it.
$ svn co http://svn.rubyonrails.org/rails/trunk/activeresource vendor/rails/activeresource $ script/about ... Edge Rails revision 7712
Update 04-Oct-2007 : via s.ross post to the “Ruby on Rails: Talk” Google Group:
Do another rake rails:freeze:edge. I know it sounds strange, but the first one installs a lot of the edge version as well as the Rake tasks. The second time you do it, the new Rake task knows enough to grab ActiveResource.
So the right procedure is:
$ rails --version Rails 1.2.3 $ rails rls20PR && cd rls20PR $ rake rails:freeze:edge TAG=rel_2-0-0_PR $ rake rails:update $ rake rails:freeze:edge TAG=rel_2-0-0_PR
Update 05-Oct-2007 : Another way to have a fresh rails2 directory:
$ sudo svn co http://svn.rubyonrails.org/rails/tags/rel_2-0-0_PR /opt/rails2 $ ruby /opt/rails2/railties/bin/rails rls20PR $ cd rls20PR/vendor $ ln -s /opt/rails2 rails
Rubygems on Debian “one-click installer”
Before I mentioned Rails on Debian ‘one-click installer’ . Seems there is also a way to install ruby gems with apt-get on debian-like systems . It’s in japanese, so just a short translation:
deb http://backports.mithril-linux.org sarge-backports main contrib non-free deb-src http://backports.mithril-linux.org sarge-backports main contrib non-free
Package: rubygems Pin: release a=sarge-backports Pin-Priority: 900
apt-get update apt-get install rubygems
The rubygems are installed in /var/lib/gems so we need to change the PATH environment variable in order to access gem command. Inside /etc/profile :
export PATH="/var/lib/gems/1.8/bin:$PATH"
gem install rails -y
So we got millions of people with an OpenID by virtue of their AIM account. Great. Now they just need a place or two to actually use it. —DHH
changeset 6245—Added simple OpenID authentication Rails plugin wrapper for ruby-openid
See also:
svn co http://svn.eastmedia.com/svn/bantay/projects/bookmarks/branches/restified bookmarks
svn co http://svn.apache.org/repos/asf/incubator/heraldry/idp/pip/trunk/ pip
There is already a lot of OpenID providers:
Seems Cookie Based Sessions are the New Default in Edge Rails : …Cookie-based sessions are just faster to retrieve and process than hitting the file-system on every request. Plus, I would imagine they scale considerably better as they’re persisted on the client side and have no server-side persistence requirements…
So I made a cookie-based sessions patch agains current Rails (actionpack-1.13.2). Usage (from inside your project):
rake rails:freeze:gems cd vendor wget http://zhware.net/code/ruby/ror/session_store-1.13.2.patch patch -p0 < session_store-1.13.2.patch
origin: gabito.com blog post
…I’ve finally gotten my 500 error rate down to 0 by making some minor changes to the signal handling code of dispatch.fcgi. If the dispatch.fcgi process is in the midst of handling a request I defer letting it be killed until the request is complete. I did this by installing a custom TERM signal handler that protects the dispatch.fcgi process while a request is being processed…
After small timeout I found a time to put some notes for the last Rails meeting in Kobe .
Sometimes StikiPad is down (specially when i need my notes
), so like a work around will try to duplicate all notes on the self-hosted Junebug -powered wiki . For the related discussions there is a Beast -powered forum . Hahahah (c) Powered by RoR site a
The only missing part is maybe Mephisto for blogging. Or I can use my homemade Restolog when it’s ready.
I put some notes for nginx on my wiki .
The rails system administration is like waves – somebody found a new software and the community just fulfill it. Maybe there must be some name for this effect. Something like digg-effect but maybe Rails wave hahaha.
First there was lighttpd , now nginx comming. Maybe your piece of code will be the next. Are your ready?
Created a first beta version of Restolog-1.2 . What’s new in it:
Download:
Why it is still beta?
And by request from Benjamin there is pretty detailed Restolog USAGE file included. Enjoy