<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Carlos Gabaldon &#187; ruby</title>
	<atom:link href="http://carlosgabaldon.com/tag/ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://carlosgabaldon.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 19:34:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='carlosgabaldon.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Carlos Gabaldon &#187; ruby</title>
		<link>http://carlosgabaldon.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://carlosgabaldon.com/osd.xml" title="Carlos Gabaldon" />
	<atom:link rel='hub' href='http://carlosgabaldon.com/?pushpress=hub'/>
		<item>
		<title>Rails Common Commands</title>
		<link>http://carlosgabaldon.com/2010/10/03/rails-common-commands/</link>
		<comments>http://carlosgabaldon.com/2010/10/03/rails-common-commands/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 06:19:09 +0000</pubDate>
		<dc:creator>carlosgabaldon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://carlosgabaldon.com/2010/10/03/rails-common-commands/</guid>
		<description><![CDATA[A list of frequent Rails command line commands. rvm use ruby-1.9.2-p0 - ruby version manager; switches to Ruby 1.9.2 rvm use ruby-1.9.2-p0 --default - ruby version manager; sets 1.9.2 as default rvm use system - ruby version manager; switches to Ruby 1.87 rails new - creates a new Rails application rails server [s] - launches [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=403&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A list of frequent Rails command line commands.</p>
<pre style="overflow:auto;margin:.8em 0;padding:5px;">
<ul>
<li><b>rvm use ruby-1.9.2-p0</b> - ruby version manager; switches to Ruby 1.9.2</li>
<li><b>rvm use ruby-1.9.2-p0 --default </b> - ruby version manager; sets 1.9.2 as default</li>
<li><b>rvm use system</b> - ruby version manager; switches to Ruby 1.87</li>
<li><b>rails new</b> - creates a new Rails application</li>
<li><b>rails server [s]</b> - launches WEBrick web server</li>
<li><b>rails generate [g]</b> - lists available generators </li>
<li><b>rails generate controller --help</b> - provides usage documentation</li>
<li><b>rails generate model --help</b> - provides usage documentation</li>
<li><b>rails generate migration --help</b> - provides usage documentation</li>
<li><b>rails destroy controller [Name]</b> - undo generate controller</li>
<li><b>rails destroy model [Name]</b> - undo generate model</li>
<li><b>rails generate scaffold [Name] --skip --no-migration</b> - scaffold skipping existing files</li>
<li><b>rake db:migrate</b> - runs database migrations</li>
<li><b>rake db:test:clone</b> - clones current environment's database schema</li>
<li><b>rake db:test:purge</b> - empties the test database</li>
<li><b>rake routes</b> - list of all of the available routes</li>
<li><b>rake -T</b> - list of rake commands</li>
<li><b>git init</b> - creates git repo</li>
<li><b>git add .</b> - adds all files to working tree</li>
<li><b>git commit -m "Initial commit"</b> - commits files to repo</li>
<li><b>git status</b> - status of the working tree</li>
<li><b>git push origin master</b> - merges local repo with remote</li>
<li><b>git checkout -b new-dev</b> - creates topic branch</li>
<li><b>git checkout master</b> - switches to master branch</li>
<li><b>git merge new-dev</b> - merges new-dev branch into master branch</li>
<li><b>git checkout -f</b> - undo uncommitted changes on working tree</li>
<li><b>git branch</b> - list branches</li>
<li><b>git branch -d modify-README</b> - deletes branch</li>
<li><b>git mv README README.markdown</b> - renames files using move command</li>
<li><b>heroku create</b> - creates app on Heroku servers</li>
<li><b>git push heroku master</b> - pushs app on to Heroku servers</li>
<li><b>heroku rake db:migrate</b> - runs database migrations on Heroku servers</li>
<li><b>heroku pg:reset --db SHARED_DATABASE_URL</b> - deletes database file</li>
<li><b>heroku db:push</b> - transfer an existing database to Heroku.</li>
<li><b>rails console</b> - command line interface to Rails app</li>
<li><b>rails dbconsole</b> - command line database interface</li>
<li><b>bundle install</b> - installs gems from Gemfile</li>
</ul>
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carlosgabaldon.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carlosgabaldon.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carlosgabaldon.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carlosgabaldon.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carlosgabaldon.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carlosgabaldon.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carlosgabaldon.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carlosgabaldon.wordpress.com/403/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=403&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carlosgabaldon.com/2010/10/03/rails-common-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f22a8f13769b4ad434bbf5694d9b718?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carlosgabaldon</media:title>
		</media:content>
	</item>
		<item>
		<title>Rubyist OS X Dev setup</title>
		<link>http://carlosgabaldon.com/2010/05/30/rubyist-os-x-dev-setup/</link>
		<comments>http://carlosgabaldon.com/2010/05/30/rubyist-os-x-dev-setup/#comments</comments>
		<pubDate>Sun, 30 May 2010 04:08:59 +0000</pubDate>
		<dc:creator>carlosgabaldon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[os_x]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://carlosgabaldon.com/2010/05/30/rubyist-os-x-dev-setup/</guid>
		<description><![CDATA[I just bought a shiny new MacBook Pro with a 2.4 GHz Core i5, 8 GB Memory, on OS X 10.63 and thought I would share my setup. TextMate Head over to http://macromates.com/ and download TextMate. Once we have installed TextMate we are going to configure it. From the TextMate menu go to: TextMate &#62;&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=385&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just bought a shiny new <a href="http://www.apple.com/macbookpro/">MacBook Pro</a> with a 2.4 GHz Core i5, 8 GB Memory, on OS X 10.63 and thought I would share my setup.</p>
<h1>TextMate</h1>
<p>
Head over to <a href="http://macromates.com/">http://macromates.com/</a> and download TextMate. Once we have installed TextMate we are going to configure it. From the TextMate menu go to:</p>
<p>TextMate &gt;&gt; Preferences &gt;&gt; Fonts &amp; Colors. Then select the &#8220;Twilight&#8221; theme.
</p>
<p>
For smaller projects where we do the markup ourselves we are going to use <a href="http://haml.hamptoncatlin.com/">Haml</a>, which we will install shortly, TextMate does not include this bundle by default, so we need to add it. Open up terminal and enter the following:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
cd /Applications/TextMate.app/Contents/SharedSupport/Bundles
svn co "http://svn.textmate.org/trunk/Bundles/Ruby%20Haml.tmbundle/"
</pre>
<p>Back in TextMate go to Bundles &gt;&gt; Bundle Editor &gt;&gt; Reload Bundles.
</p>
<h1>Terminal</h1>
<p>Next on our list is to configure Terminal.</p>
<p>The first thing we want to do is setup the bash prompt for Git. This cool trick will show our checked out topic branch right at the prompt:</p>
<div style="font-size:.8em;line-height:1.6em;margin:0 0 10px;padding:0;"><a href="http://www.flickr.com/photos/carlosgabaldon/4651260727/" title="Git_topic_branch_at_prompt"><img src="http://farm5.static.flickr.com/4027/4651260727_c782612eac.jpg" alt="Git_topic_branch_at_prompt by Carlos Gabaldon" /></a><br /><span style="margin:0;"><a href="http://www.flickr.com/photos/carlosgabaldon/4651260727/">Git_topic_branch_at_prompt</a>, a photo by <a href="http://www.flickr.com/photos/carlosgabaldon/">Carlos Gabaldon</a> on Flickr.</span></div>
</p>
<p>Open a Terminal session and type the follow:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo mate ~/.bash_login
</pre>
<p>To configure we will copy the following into our .bash_login file:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">

   RED="\[33[0;31m\]"
     YELLOW="\[33[0;33m\]"
 	  GREEN="\[33[0;32m\]"
       BLUE="\[33[0;34m\]"
  LIGHT_RED="\[33[1;31m\]"
LIGHT_GREEN="\[33[1;32m\]"
      WHITE="\[33[1;37m\]"
 LIGHT_GRAY="\[33[0;37m\]"
 COLOR_NONE="\[\e[0m\]"

function parse_git_branch {

  git rev-parse --git-dir &amp;&gt; /dev/null
  git_status="$(git status 2&gt; /dev/null)"
  branch_pattern="^# On branch ([^${IFS}]*)"
  remote_pattern="# Your branch is (.*) of"
  diverge_pattern="# Your branch and (.*) have diverged"
  if [[ ! ${git_status}} =~ "working directory clean" ]]; then
    state="${RED}⚡"
  fi
  # add an else if or two here if you want to get more specific
  if [[ ${git_status} =~ ${remote_pattern} ]]; then
    if [[ ${BASH_REMATCH[1]} == "ahead" ]]; then
      remote="${YELLOW}↑"
    else
      remote="${YELLOW}↓"
    fi
  fi
  if [[ ${git_status} =~ ${diverge_pattern} ]]; then
    remote="${YELLOW}↕"
  fi
  if [[ ${git_status} =~ ${branch_pattern} ]]; then
    branch=${BASH_REMATCH[1]}
    echo " (${branch})${remote}${state}"
  fi
}

function prompt_func() {
    previous_return_value=$?;
    # prompt="${TITLEBAR}$BLUE[$RED\w$GREEN$(__git_ps1)$YELLOW$(git_dirty_flag)$BLUE]$COLOR_NONE "
    prompt="${TITLEBAR}${BLUE}[${RED}\w${GREEN}$(parse_git_branch)${BLUE}]${COLOR_NONE} "
    if test $previous_return_value -eq 0
    then
        PS1="${prompt}➔ "
    else
        PS1="${prompt}${RED}➔${COLOR_NONE} "
    fi
}

PROMPT_COMMAND=prompt_func
</pre>
<p>Next let&#8217;s make terminal a little prettier. From the Terminal menu: </p>
<pre>
Terminal &gt;&gt; Preferences &gt;&gt; Startup; New window settings: "Homebrew".
Terminal &gt;&gt; Preferences &gt;&gt; Settings; Font select "Andale Mono 18pt".
</pre>
<p>Now that we have TextMate and Terminal configured we are going to setup our development tools.</p>
<h1>Development Tools</h1>
<h2>XCode Tools</h2>
<p>Go to <a href="http://developer.apple.com/mac/">http://developer.apple.com/mac/</a> and download the latest version of XCode. Once it is downloaded simply run the installer.</p>
<h2>Git</h2>
<p>Next we will download the <a href="http://code.google.com/p/git-osx-installer/downloads/list?can=3&amp;q=&amp;sort=-uploaded&amp;colspec=Filename+Summary+Uploaded+Size+DownloadCount">git-osx-installer</a>, then run it.</p>
<h2>RubyGems</h2>
<p>From terminal we need to update our RubyGems:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo gem install rubygems-update
sudo update_rubygems
</pre>
<h2>SSH</h2>
<p>Still at terminal we will run:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
ssh-keygen -t rsa -C "cgabaldon@gmail.com"
cat ~/.ssh/id_rsa.pub | pbcopy
</pre>
<h2>GitHub</h2>
<p>Then we will navigate over to GitHub.com &gt;&gt; Account Settings to add our RSA key that we copied to the clipboard.</p>
<div style="font-size:.8em;line-height:1.6em;margin:0 0 10px;padding:0;"><a href="http://www.flickr.com/photos/carlosgabaldon/4651146995/" title="GitHubAccountSettings"><img src="http://farm5.static.flickr.com/4018/4651146995_0e182943d8.jpg" alt="GitHubAccountSettings by Carlos Gabaldon" /></a><br /><span style="margin:0;"><a href="http://www.flickr.com/photos/carlosgabaldon/4651146995/">GitHubAccountSettings</a>, a photo by <a href="http://www.flickr.com/photos/carlosgabaldon/">Carlos Gabaldon</a> on Flickr.</span></div>
</p>
<h2>MySQL</h2>
<p>
We are next heading over to download <a href="http://dev.mysql.com/downloads/mysql/">mysql-5.1.47-osx10.6-x86_64.dmg</a>, and then once downloaded run the installer.
</p>
<p>
After MySQL is installed we will install the MySQL preference pane which gets added to the OS X System Preferences. To install we simply double clicking on the <b>MySQL.prefPane</b> contained within the MySQL install package. This gives us a convenient way to start and stop our MySQL server from the System Preferences.
</p>
<p>Back to terminal to add our newly installed MySQL server to our path:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
cd
sudo mate .bash_login # add: export PATH=/usr/local/mysql/bin:$PATH
</pre>
<p>Then last, but not least we need to install our ruby mysql gem:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
</pre>
<h2>Sinatra</h2>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo gem install sinatra
</pre>
<h2>Rails</h2>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo gem install rails
</pre>
<h2>Other Gems</h2>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo gem install sequel
sudo gem install haml
sudo gem install do_sqlite3
sudo gem install cheat
sudo gem install cucumber
sudo gem install dancroak-twitter-search
sudo gem install faker
sudo gem install geokit
sudo gem install giraffesoft-timeline_fu
sudo gem install github
sudo gem install heroku
sudo gem install json
sudo gem install mislav-hanna
sudo gem install nokogiri
sudo gem install passenger
sudo gem install rack
sudo gem install railsmachine
sudo gem install RedCloth
sudo gem install redgreen
sudo gem install reek
sudo gem install rest-client
sudo gem install right_aws
sudo gem install right_http_connection
sudo gem install rr
sudo gem install rspec
sudo gem install technicalpickles-le-git
sudo gem install thoughtbot-factory_girl
sudo gem install thoughtbot-paperclip
sudo gem install thoughtbot-shoulda
sudo gem install webmat-git_remote_branch
sudo gem install webrat
sudo gem install wirble
</pre>
<h1>Capistrano</h1>
<p>To simplify deployment we need to install Capistrano:</p>
<pre style="color:#63ff00;background:#000;overflow:auto;font:normal 12px 'bitstream vera sans mono', monaco 'lucida console', 'courier new', courier, serif;margin:.9em 0;padding:8px;">
sudo gem install capistrano
sudo gem install capistrano-ext
</pre>
<h1>FireFox</h1>
<p>We of course need to install <a href="www.getfirefox.com/">FireFox</a>, by downloading and installing.</p>
<h2>FireBug</h2>
<p>Then <a href="http://getfirebug.com/">Firebug</a> and <a href="http://developer.yahoo.com/yslow/">YSlow</a> to help us on our <a href="http://video.yahoo.com/watch/4671445/12486762">front end engineering</a> work.</p>
<h1>Quicksilver</h1>
<p>
To help us keep our hands off the mouse we will install <a href="http://www.blacktree.com/">Quicksliver</a> so we can exercise our keyboard foo. To install simply extract the tarball and drag to Applications.
</p>
<p>
Update the mappings to be <em>Apple+Space</em> for Quicksilver and <em>Option+Space</em> for Spotlight.
</p>
<h1>Fluid</h1>
<p>
Finally, we will install <a href="http://fluidapp.com/">Fluid</a> to help us turn our commonly visited sites into apps. Once downloaded drag to Applications.
</p>
<h1>Virtual Box</h1>
<p>
All production applications get deployed to a LAMP server, so we need a place to test out various configurations locally. Say hello to virtualization! We are going to use <a href="http://www.virtualbox.org/wiki/Downloads">VirtualBox</a>; download and install.
</p>
<h1>Evernote</h1>
<p>
Never forget anything; install <a href="http://www.evernote.com/about/download/mac.php">Evernote</a> and sign up.
</p>
<h1>Concentrate</h1>
<p>
	Multitasking does not work when trying program, distractions will kill you. We are going to install <a href="http://getconcentrating.com/">Concentrate<a /> to apply the <a href="http://jasonseifer.com/2010/02/08/using-concentrate-for-pomodoro">Pomodoro</a> technique to keep focused and productive.</p>
<h1>Things</h1>
<p>
We have a lot of <strong><a href="http://culturedcode.com/things/">Things</a></strong> to get done, so we need a great task management tool.</p>
<h1>Growl</h1>
<p>
	Most of the cooler OSX applications support notifications, <a href="http://growl.info/index.php">Growl</a> is the system for doing that.
</p>
<h1>Pencil</h1>
<p>
  <a href="http://pencil.evolus.vn/en-US/Home.aspx">Pencil</a> is one of the coolest UI prototyping tools I have used since a Sharpie.
</p>
<h1>Hack</h1>
<p>
We are now ready to do some serious hacking..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carlosgabaldon.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carlosgabaldon.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carlosgabaldon.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carlosgabaldon.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carlosgabaldon.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carlosgabaldon.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carlosgabaldon.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carlosgabaldon.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=385&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carlosgabaldon.com/2010/05/30/rubyist-os-x-dev-setup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f22a8f13769b4ad434bbf5694d9b718?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carlosgabaldon</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4027/4651260727_c782612eac.jpg" medium="image">
			<media:title type="html">Git_topic_branch_at_prompt by Carlos Gabaldon</media:title>
		</media:content>

		<media:content url="http://farm5.static.flickr.com/4018/4651146995_0e182943d8.jpg" medium="image">
			<media:title type="html">GitHubAccountSettings by Carlos Gabaldon</media:title>
		</media:content>
	</item>
		<item>
		<title>My Interview on RubyLearning blog</title>
		<link>http://carlosgabaldon.com/2009/07/21/my-interview-on-rubylearning-blog/</link>
		<comments>http://carlosgabaldon.com/2009/07/21/my-interview-on-rubylearning-blog/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 06:56:32 +0000</pubDate>
		<dc:creator>carlosgabaldon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://carlosgabaldon.com/?p=173</guid>
		<description><![CDATA[I recently had the pleasure of being interviewed by Satish Talim for his RubyLearning Blog on his mini series – “How do I learn and master Sinatra?” – by top Rubyists using Sinatra. The interview series provides insight and commentary from notable Sinatra developers, with the goal of facilitating and providing answers to the questions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=173&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently had the pleasure of being <a href="http://rubylearning.com/blog/2009/07/21/carlos-gabaldon-how-do-i-learn-and-master-sinatra/">interviewed</a> by Satish Talim for his <a href="http://rubylearning.com/blog">RubyLearning Blog</a> on his mini series – “How do I learn and master Sinatra?” – by top Rubyists using Sinatra.</p>
<p>The interview series provides insight and commentary from notable Sinatra developers, with the goal of facilitating and providing answers to the questions Ruby beginners face on how to learn and master Sinatra.</p>
<p><a href="http://twitter.com/indianguru">Satish Talim </a>is a programmer, author, trainer, and speaker. A recognized expert in the field of software development with over 30+ years of I.T. experience, Satish has consulted and trained teams at various companies in India and the US.</p>
<p><a href="http://rubylearning.com/blog/2009/07/21/carlos-gabaldon-how-do-i-learn-and-master-sinatra/">http://rubylearning.com/blog/2009/07/21/carlos-gabaldon-how-do-i-learn-and-master-sinatra/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carlosgabaldon.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carlosgabaldon.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carlosgabaldon.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carlosgabaldon.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carlosgabaldon.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carlosgabaldon.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carlosgabaldon.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carlosgabaldon.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=173&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carlosgabaldon.com/2009/07/21/my-interview-on-rubylearning-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f22a8f13769b4ad434bbf5694d9b718?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carlosgabaldon</media:title>
		</media:content>
	</item>
		<item>
		<title>Sinatra rake tasks</title>
		<link>http://carlosgabaldon.com/2009/05/25/sinatra-rake-tasks/</link>
		<comments>http://carlosgabaldon.com/2009/05/25/sinatra-rake-tasks/#comments</comments>
		<pubDate>Mon, 25 May 2009 00:37:41 +0000</pubDate>
		<dc:creator>carlosgabaldon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://carlosgabaldon.com/?p=150</guid>
		<description><![CDATA[Since I have been playing around with Sinatra again, I decided that what Sinatra needs is some automation for some of the boring day to day tasks. So I created a GitHub bucket to dump my Rake tasks. I only have 1 task, to create a new project, but I have a lot new projects [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=150&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since I have been playing around with <a href="http://carlosgabaldon.com/ruby/bets-placed-by-sinatra/">Sinatra</a> again, I decided that what Sinatra needs is some automation for some of the boring day to day tasks. So I created a <a href="http://github.com">GitHub</a> bucket to dump my Rake tasks. I only have 1 task, to create a new project, but I have a lot new projects that I will be doing in Sinatra in the coming months, so I know there will be a cornucopia of tasks.</p>
<p><a href="http://github.com/CarlosGabaldon/sinatra-rake-tasks/tree/master">Sinatra-rake-tasks</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carlosgabaldon.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carlosgabaldon.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carlosgabaldon.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carlosgabaldon.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carlosgabaldon.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carlosgabaldon.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carlosgabaldon.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carlosgabaldon.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=150&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carlosgabaldon.com/2009/05/25/sinatra-rake-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f22a8f13769b4ad434bbf5694d9b718?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carlosgabaldon</media:title>
		</media:content>
	</item>
		<item>
		<title>More on Sinatra</title>
		<link>http://carlosgabaldon.com/2009/05/23/more-on-sinatra/</link>
		<comments>http://carlosgabaldon.com/2009/05/23/more-on-sinatra/#comments</comments>
		<pubDate>Sat, 23 May 2009 22:20:36 +0000</pubDate>
		<dc:creator>carlosgabaldon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://carlosgabaldon.com/?p=141</guid>
		<description><![CDATA[I wrote another article on the cool Ruby web framework DSL Sinatra. In my last article I wrote about the cool Ruby DSL web framework called Sinatra which is taking the Ruby world by storm. I decided that another &#8220;How to&#8221; article on some of Sintra&#8217;s other kick ass features was just what Frank would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=141&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote another <a href="/ruby/bets-placed-by-sinatra/">article</a> on the cool Ruby web framework DSL Sinatra. </p>
<blockquote><p>In my <a href="http://carlosgabaldon.com/ruby/singing-with-sinatra/">last article</a> I wrote about the cool Ruby DSL web framework called <a rel="#someid0" href="http://www.sinatrarb.com/">Sinatra</a> which is taking the Ruby world by storm. I decided that another &#8220;How to&#8221; article on some of Sintra&#8217;s other kick ass features was just what Frank would expect.<br />
..
</p></blockquote>
<p><a href="/ruby/bets-placed-by-sinatra/">Read More..</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/carlosgabaldon.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/carlosgabaldon.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/carlosgabaldon.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/carlosgabaldon.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/carlosgabaldon.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/carlosgabaldon.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/carlosgabaldon.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/carlosgabaldon.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=carlosgabaldon.com&amp;blog=4691315&amp;post=141&amp;subd=carlosgabaldon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://carlosgabaldon.com/2009/05/23/more-on-sinatra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9f22a8f13769b4ad434bbf5694d9b718?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">carlosgabaldon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
