<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>firstruby</title>
	<atom:link href="http://firstruby.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://firstruby.wordpress.com</link>
	<description>Master ruby with us</description>
	<lastBuildDate>Tue, 21 Jul 2009 11:40:46 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='firstruby.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/eb6885b93aade6dc82939c09ff8b3819?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>firstruby</title>
		<link>http://firstruby.wordpress.com</link>
	</image>
			<item>
		<title>&#8216;ordinalize&#8217; in Ruby On Rails</title>
		<link>http://firstruby.wordpress.com/2009/07/21/ordinalize-in-ruby-on-rails/</link>
		<comments>http://firstruby.wordpress.com/2009/07/21/ordinalize-in-ruby-on-rails/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:39:35 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[firstruby]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=104</guid>
		<description><![CDATA[Print numbers as Cardinals in Ruby On Rails (like 1st, 2nd, 3rd, 4th and so on&#8230;.)
Rails has inbuilt function &#8211; ordinalize
(1).ordinalize =&#62; "1st"
(13).ordinalize =&#62; "13th"
(22).ordinalize =&#62; "22nd"
(100).ordinalize =&#62; "100th"
Also we can write the helper as following,
def number_to_ordinal(num)
  num = num.to_i
  if (10...20)===num
    "#{num}th"
  else
    g = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=104&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Print numbers as Cardinals in Ruby On Rails (like 1st, 2nd, 3rd, 4th and so on&#8230;.)</p>
<p>Rails has inbuilt function &#8211; <strong>ordinalize</strong></p>
<p><code>(1).ordinalize =&gt; "1st"<br />
(13).ordinalize =&gt; "13th"<br />
(22).ordinalize =&gt; "22nd"<br />
(100).ordinalize =&gt; "100th"</code></p>
<p>Also we can write the helper as following,</p>
<p><code>def number_to_ordinal(num)<br />
  num = num.to_i<br />
  if (10...20)===num<br />
    "#{num}th"<br />
  else<br />
    g = %w{ th st nd rd th th th th th th }<br />
    a = num.to_s<br />
    c=a[-1..-1].to_i<br />
    a + g[c]<br />
  end<br />
end</code></p>
<p><code>number_to_ordinal(23) =&gt; "23rd"<br />
number_to_ordinal(1) =&gt; "1st"</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=104&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2009/07/21/ordinalize-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup of SVN repository</title>
		<link>http://firstruby.wordpress.com/2009/05/01/backup-of-svn-repository/</link>
		<comments>http://firstruby.wordpress.com/2009/05/01/backup-of-svn-repository/#comments</comments>
		<pubDate>Fri, 01 May 2009 08:50:01 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/2009/05/01/backup-of-svn-repository/</guid>
		<description><![CDATA[Backup of SVN repository,
    svnadmin dump myrepos &#62; dumpfile
Once you give this command, it will create the dumpfile (backup) of the SVN repo with all the LOGs.
Load the SVN dump file on server,
    svnadmin load newrepos &#60; dumpfile
Once you give this command, all the data from the dumpfile will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=101&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Backup of SVN repository,</p>
<p>    <code>svnadmin dump myrepos &gt; dumpfile</code></p>
<p>Once you give this command, it will create the dumpfile (backup) of the SVN repo with all the LOGs.</p>
<p>Load the SVN dump file on server,</p>
<p>   <code> svnadmin load newrepos &lt; dumpfile</code></p>
<p>Once you give this command, all the data from the dumpfile will be loaded/extracted with all SVN LOGs.</p>
<p>Reference URL &#8211; http://chestofbooks.com/computers/revision-control/subversion-svn/Migrating-Repository-Data-Elsewhere-Reposadmin-Maint-Migrate.html</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=101&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2009/05/01/backup-of-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>How to create rails application for specific rails version ?</title>
		<link>http://firstruby.wordpress.com/2009/02/06/how-to-create-rails-application-for-specific-rails-version/</link>
		<comments>http://firstruby.wordpress.com/2009/02/06/how-to-create-rails-application-for-specific-rails-version/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 13:31:40 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=92</guid>
		<description><![CDATA[How to create rails application for specific rails version ?
If you have multiple Rails versions installed on your application and if you want to create Rails application,
rails demo
then in this case, it will create Rails application with latest version installed on our machine.
If you want to create Rails application for specific rails versions, use following [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=92&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How to create rails application for specific rails version ?<br />
If you have multiple Rails versions installed on your application and if you want to create Rails application,</p>
<p>rails demo</p>
<p>then in this case, it will create Rails application with latest version installed on our machine.</p>
<p>If you want to create Rails application for specific rails versions, use following command</p>
<p><strong>rails _2.1.0_ demo</strong></p>
<p>demo &#8211; rails application name with version 2.1.0</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=92&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2009/02/06/how-to-create-rails-application-for-specific-rails-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8216;cycle&#8217; css-related feature of Rails</title>
		<link>http://firstruby.wordpress.com/2009/01/14/cycle-css-related-feature-of-rails/</link>
		<comments>http://firstruby.wordpress.com/2009/01/14/cycle-css-related-feature-of-rails/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 18:56:28 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=85</guid>
		<description><![CDATA[If you want to display the list ( of users ) with different css-class for alternate record, there is no need to check the odd-even records,
For this, Rails have awesome feature and that is &#8211; &#8216;cycle&#8217;
We can use this as,
say we have 2 css classes-blank and white. If want to apply &#8216;black&#8217; and &#8216;white&#8217; class [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=85&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want to display the list ( of users ) with different css-class for alternate record, there is no need to check the odd-even records,</p>
<p>For this, Rails have awesome feature and that is &#8211; &#8216;cycle&#8217;</p>
<p>We can use this as,</p>
<p>say we have 2 css classes-blank and white. If want to apply &#8216;black&#8217; and &#8216;white&#8217; class for alternate user record, then we have to write the code as,</p>
<p><code>&lt;% @users.each do |user| %&gt;<br />
	&lt;li class="&lt;%= cycle('black', 'white') -%&gt;"&gt;<br />
&lt;%= user.name %&gt;&lt;/li&gt;<br />
&lt;% end %&gt;</code></p>
<p>Cool feature <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=85&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2009/01/14/cycle-css-related-feature-of-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Sub Controllers in RubyOnRails</title>
		<link>http://firstruby.wordpress.com/2009/01/14/creating-sub-controllers-in-rubyonrails/</link>
		<comments>http://firstruby.wordpress.com/2009/01/14/creating-sub-controllers-in-rubyonrails/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 18:41:10 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=80</guid>
		<description><![CDATA[Previously I was adding most of the code in one controller&#8230;say if there is admin module, and there are different sections in it, then it&#8217;s better to add the code in separate controllers &#8211; sub-controllers.
Here is the way to create sub-controllers,
ruby script/generate controller admin/users
It will create users_controller.rb in /controllers/admin folder (sub-folder for controller)
Your user controller [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=80&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Previously I was adding most of the code in one controller&#8230;say if there is admin module, and there are different sections in it, then it&#8217;s better to add the code in separate controllers &#8211; sub-controllers.</p>
<p>Here is the way to create sub-controllers,</p>
<p><code>ruby script/generate controller admin/users</code></p>
<p>It will create users_controller.rb in /controllers/admin folder (sub-folder for controller)</p>
<p>Your user controller will look like,</p>
<p><code>class Admin::UsersController &lt; ApplicationController<br />
end</code></p>
<p>And to inherit the properties of the parent controller (AdminController), you can change parent controller as AdminController instead ApplicationController</p>
<p><code>class Admin::UsersController &lt; <strong>AdminController</strong><br />
end<br />
</code></p>
<p>Hope this helps.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=80&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2009/01/14/creating-sub-controllers-in-rubyonrails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Protected: Soon Coming with complete Info&#8230;</title>
		<link>http://firstruby.wordpress.com/2008/12/23/rash/</link>
		<comments>http://firstruby.wordpress.com/2008/12/23/rash/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 07:10:27 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=72</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=72&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://firstruby.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-72">Password:<br />
<input name="post_password" id="pwbox-72" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=72&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2008/12/23/rash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Copy/Move files in SVN repository</title>
		<link>http://firstruby.wordpress.com/2008/12/01/copymove-files-in-svn-repository/</link>
		<comments>http://firstruby.wordpress.com/2008/12/01/copymove-files-in-svn-repository/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 13:16:46 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=64</guid>
		<description><![CDATA[To copy a file/directory in working directory or in otherdirectory,
svn move SOURCE DESTINATION
if you want to move &#8216;app&#8217; folder from working directory into /trunk,
svn move app /trunk/app
it will move &#8216;app&#8217; folder in &#8216;/trunk/app&#8217; folder.
Similarly to copy the files,
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
svn copy SOURCE DESTINATION
if you want to copy &#8216;app&#8217; folder from working directory into /trunk,
svn copy app /trunk/app
it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=64&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To copy a file/directory in working directory or in otherdirectory,</p>
<p>svn move SOURCE DESTINATION</p>
<p>if you want to move &#8216;app&#8217; folder from working directory into /trunk,</p>
<p>svn move app /trunk/app</p>
<p>it will move &#8216;app&#8217; folder in &#8216;/trunk/app&#8217; folder.</p>
<p>Similarly to copy the files,<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
svn copy SOURCE DESTINATION</p>
<p>if you want to copy &#8216;app&#8217; folder from working directory into /trunk,</p>
<p>svn copy app /trunk/app</p>
<p>it will copy &#8216;app&#8217; folder in &#8216;/trunk/app&#8217; folder.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=64&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2008/12/01/copymove-files-in-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>Android ?</title>
		<link>http://firstruby.wordpress.com/2008/11/22/android/</link>
		<comments>http://firstruby.wordpress.com/2008/11/22/android/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 06:13:56 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=61</guid>
		<description><![CDATA[Android &#8230;&#8230;&#8230;Will post in details soon..
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=61&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Android &#8230;&#8230;&#8230;Will post in details soon..</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=61&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2008/11/22/android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>ri and rdoc in Ruby On Rails</title>
		<link>http://firstruby.wordpress.com/2008/11/16/ri-and-rdoc-in-ruby-on-rails/</link>
		<comments>http://firstruby.wordpress.com/2008/11/16/ri-and-rdoc-in-ruby-on-rails/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 12:57:17 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Forum]]></category>
		<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[firstruby]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rdoc]]></category>
		<category><![CDATA[ri]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=57</guid>
		<description><![CDATA[To install ri and rdoc of any gem,
gem install gemname
This command installs ri and rdoc with installation of gem.
To skip the installation of ri and rdoc of gem,
gem install gemname &#8211;no-ri &#8211;no-rdoc
This command will skip the installation of ri and rdoc when installing gem.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=57&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To install ri and rdoc of any gem,</p>
<p>gem install <strong>gemname</strong></p>
<p>This command installs ri and rdoc with installation of gem.</p>
<p>To skip the installation of ri and rdoc of gem,</p>
<p>gem install <strong>gemname</strong> &#8211;no-ri &#8211;no-rdoc</p>
<p>This command will skip the installation of ri and rdoc when installing gem.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=57&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2008/11/16/ri-and-rdoc-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
		<item>
		<title>remote_function or link_to_remote with multiple parameters in Ruby on Rails</title>
		<link>http://firstruby.wordpress.com/2008/11/03/remote_function-or-link_to_remote-with-multiple-parameters-in-ruby-on-rails/</link>
		<comments>http://firstruby.wordpress.com/2008/11/03/remote_function-or-link_to_remote-with-multiple-parameters-in-ruby-on-rails/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 15:47:06 +0000</pubDate>
		<dc:creator>firstruby</dc:creator>
				<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[link_to_remote]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[remote_function]]></category>

		<guid isPermaLink="false">http://firstruby.wordpress.com/?p=55</guid>
		<description><![CDATA[We can pass the multiple parameters with remote_function or link_to_remote&#8230;

&#60;%= link_to_remote "View Data",
:url =&#62; :action =&#62; "list",
:with =&#62; " 'name=' +$('div-id-of-name-text-box').value + '&#38;city=' +$('div-id-of-city-text-box').value + '&#38;country=' +$('div-id-of-country-text-box').value " %&#62;
or
&#60;%= remote_function(:url =&#62; :action =&#62; "list",
:with =&#62; " 'name=' +$('div-id-of-name-text-box').value + '&#38;city=' +$('div-id-of-city-text-box').value + '&#38;country=' +$('div-id-of-country-text-box').value " ) %&#62;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=55&subd=firstruby&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We can pass the multiple parameters with remote_function or link_to_remote&#8230;<br />
<code><br />
&lt;%= link_to_remote "View Data",<br />
:url =&gt; :action =&gt; "list",<br />
:with =&gt; " 'name=' +$('div-id-of-name-text-box').value + '&amp;city=' +$('div-id-of-city-text-box').value + '&amp;country=' +$('div-id-of-country-text-box').value " %&gt;</code></p>
<p>or</p>
<p><code>&lt;%= remote_function(:url =&gt; :action =&gt; "list",<br />
:with =&gt; " 'name=' +$('div-id-of-name-text-box').value + '&amp;city=' +$('div-id-of-city-text-box').value + '&amp;country=' +$('div-id-of-country-text-box').value " ) %&gt;</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/firstruby.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/firstruby.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/firstruby.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/firstruby.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/firstruby.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/firstruby.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/firstruby.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/firstruby.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/firstruby.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/firstruby.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=firstruby.wordpress.com&blog=520515&post=55&subd=firstruby&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://firstruby.wordpress.com/2008/11/03/remote_function-or-link_to_remote-with-multiple-parameters-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e5161c5b9908a6e81639e34a22cf2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">firstruby</media:title>
		</media:content>
	</item>
	</channel>
</rss>