<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
	>
<channel>
	<title>Comments on: Continuous Integration and CruiseControl.rb</title>
	<atom:link href="http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/feed/" rel="self" type="application/rss+xml" />
	<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/</link>
	<description>Writing Code is the Easy Part</description>
	<lastBuildDate>Tue, 24 Apr 2012 15:49:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Continuous Integration and CruiseControl.rb — Teach Me To Code &#8230; &#124; アプリケーション開発者は、ログに記録</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-1071</link>
		<dc:creator>Continuous Integration and CruiseControl.rb — Teach Me To Code &#8230; &#124; アプリケーション開発者は、ログに記録</dc:creator>
		<pubDate>Mon, 20 Jun 2011 16:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-1071</guid>
		<description>[...] Link: Continuous Integration and CruiseControl.rb — Teach Me To Code &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Link: Continuous Integration and CruiseControl.rb — Teach Me To Code &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emily</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-637</link>
		<dc:creator>Emily</dc:creator>
		<pubDate>Thu, 03 Jun 2010 22:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-637</guid>
		<description>Chuck,

I setup CC for a RoR project last night and had issues with email as well.  I discovered what I think is a bug in the CC.rb manual in terms of modifying the site_config.rb file.

Looking at the source code CruiseControl.rb it seemed that it was looking for site_config.rb in the [cruise_data] directory, not [cruise] (the project directory).  I copied the file to [cruise_data] and voila, it worked.

I&#039;m going to submit a bug report regarding the faulty instructions.

Chris</description>
		<content:encoded><![CDATA[<p>Chuck,</p>
<p>I setup CC for a RoR project last night and had issues with email as well.  I discovered what I think is a bug in the CC.rb manual in terms of modifying the site_config.rb file.</p>
<p>Looking at the source code CruiseControl.rb it seemed that it was looking for site_config.rb in the [cruise_data] directory, not [cruise] (the project directory).  I copied the file to [cruise_data] and voila, it worked.</p>
<p>I&#8217;m going to submit a bug report regarding the faulty instructions.</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-636</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Wed, 13 Jan 2010 13:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-636</guid>
		<description>Hello all,
I am new to to use cruise control.rb.I have some queries.
1: While running the command i am getting error in Migration which i saw in .cruise/projects/name/build.log
How can i fix this problem?

2:Does CC use test database or production since i am getting error on config/environments/production.rb

3:Now i am using rspec for testing.How can set the path so that as soon as i type command for starting cruise i.e. ./cruise start then it should automatically fetch the testcases from Rspec.
What i have done is in cruise_config.rb i had done following:
case project.test
    when &#039;MyProject.Quick&#039; then project.rake_task = &#039;spec:controllers&#039;
   # when &#039;MyProject.BigBertha&#039; then project.rake_task = &#039;cruise:all_tests&#039;
    else raise &quot;Don&#039;t know what to build for project #{project.test.inspect}&quot;
  end
Please correct me if i am wrong?</description>
		<content:encoded><![CDATA[<p>Hello all,<br />
I am new to to use cruise control.rb.I have some queries.<br />
1: While running the command i am getting error in Migration which i saw in .cruise/projects/name/build.log<br />
How can i fix this problem?</p>
<p>2:Does CC use test database or production since i am getting error on config/environments/production.rb</p>
<p>3:Now i am using rspec for testing.How can set the path so that as soon as i type command for starting cruise i.e. ./cruise start then it should automatically fetch the testcases from Rspec.<br />
What i have done is in cruise_config.rb i had done following:<br />
case project.test<br />
    when &#8216;MyProject.Quick&#8217; then project.rake_task = &#8216;spec:controllers&#8217;<br />
   # when &#8216;MyProject.BigBertha&#8217; then project.rake_task = &#8216;cruise:all_tests&#8217;<br />
    else raise &#8220;Don&#8217;t know what to build for project #{project.test.inspect}&#8221;<br />
  end<br />
Please correct me if i am wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-635</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 07 Dec 2009 18:33:08 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-635</guid>
		<description>Chuck,

I setup CC for a RoR project last night and had issues with email as well.  I discovered what I think is a bug in the CC.rb manual in terms of modifying the site_config.rb file.

Looking at the source code CruiseControl.rb it seemed that it was looking for site_config.rb in the [cruise_data] directory, not [cruise] (the project directory).  I copied the file to [cruise_data] and voila, it worked.

I&#039;m going to submit a bug report regarding the faulty instructions.

Chris</description>
		<content:encoded><![CDATA[<p>Chuck,</p>
<p>I setup CC for a RoR project last night and had issues with email as well.  I discovered what I think is a bug in the CC.rb manual in terms of modifying the site_config.rb file.</p>
<p>Looking at the source code CruiseControl.rb it seemed that it was looking for site_config.rb in the [cruise_data] directory, not [cruise] (the project directory).  I copied the file to [cruise_data] and voila, it worked.</p>
<p>I&#8217;m going to submit a bug report regarding the faulty instructions.</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-634</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Thu, 22 Oct 2009 15:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-634</guid>
		<description>I&#039;m using the latest version (1.4.0). I&#039;m running ruby version ruby 1.8.7 (2008-08-11 patchlevel 72) on Ubuntu. I&#039;m not sure if I had to modify the code for it or not. (I&#039;m pretty fearless with that when I start getting errors.) Let me know if you need some help.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using the latest version (1.4.0). I&#8217;m running ruby version ruby 1.8.7 (2008-08-11 patchlevel 72) on Ubuntu. I&#8217;m not sure if I had to modify the code for it or not. (I&#8217;m pretty fearless with that when I start getting errors.) Let me know if you need some help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghu</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-633</link>
		<dc:creator>Raghu</dc:creator>
		<pubDate>Thu, 22 Oct 2009 04:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-633</guid>
		<description>I did not really try using since I read it on this page http://cruisecontrolrb.thoughtworks.com/documentation/getting_started that cruise controlrb&#039;s supports only specific to ruby 1.8.6 in the prerequisites section

Now since you have got it working , I will give a try to it ..! ...Can you tell me the version of cruisecontrolrb that you are running with ruby 1.8.7?</description>
		<content:encoded><![CDATA[<p>I did not really try using since I read it on this page <a href="http://cruisecontrolrb.thoughtworks.com/documentation/getting_started" rel="nofollow">http://cruisecontrolrb.thoughtworks.com/documentation/getting_started</a> that cruise controlrb&#8217;s supports only specific to ruby 1.8.6 in the prerequisites section</p>
<p>Now since you have got it working , I will give a try to it ..! &#8230;Can you tell me the version of cruisecontrolrb that you are running with ruby 1.8.7?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-632</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Thu, 22 Oct 2009 01:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-632</guid>
		<description>I&#039;m using cruisecontrol on an ubuntu 9.04 server with Ruby 1.8.7 on it without problems. I don&#039;t recall having any problems getting it working. Are you getting a specific error when you try?</description>
		<content:encoded><![CDATA[<p>I&#8217;m using cruisecontrol on an ubuntu 9.04 server with Ruby 1.8.7 on it without problems. I don&#8217;t recall having any problems getting it working. Are you getting a specific error when you try?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghu</title>
		<link>http://teachmetocode.com/articles/continuous-integration-and-cruisecontrol-rb/#comment-631</link>
		<dc:creator>Raghu</dc:creator>
		<pubDate>Wed, 21 Oct 2009 04:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://charlesmaxwood.com/?p=474#comment-631</guid>
		<description>Nice article ...! ..But does cruise control scale with ruby 1.8.7 ?? ..If yes, then let me know how? ...</description>
		<content:encoded><![CDATA[<p>Nice article &#8230;! ..But does cruise control scale with ruby 1.8.7 ?? ..If yes, then let me know how? &#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

