<?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/"
	>

<channel>
	<title>Sentia &#124; Sydney IT Consultancy, Software Development, Ruby on Rails, Web Application Development, Rails Development, Test Driven Development, Microsoft.Net, Asp.Net , Agile, Continuous Integration Training, iPhone development &#187; gems</title>
	<atom:link href="http://www.sentia.com.au/tag/gems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sentia.com.au</link>
	<description>Sentia company website and blog about all things development, Ruby on Rails, Microsoft .Net, ASP.Net, C#.Net, Agile web development, Test Driven Development</description>
	<lastBuildDate>Thu, 02 Feb 2012 07:16:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>no such file to load &#8212; capistrano/ext/multistage</title>
		<link>http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/</link>
		<comments>http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 06:55:02 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=488</guid>
		<description><![CDATA[I ran into this error the other day when running &#8230; <a href="http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I ran into this error the other day when running &#8220;cap -T&#8221;</p>
<blockquote><p>/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require&#8217;: no such file to load &#8212; capistrano/ext/multistage (LoadError)</p></blockquote>
<p>So to fix this l did the following</p>
<blockquote><p>sudo gem uninstall capistrano<br />
sudo rm -rf /usr/bin/cap<br />
sudo gem install capistrano-ext<br />
sudo gem install capistrano</p></blockquote>
<p>Needed to do &#8220;sudo rm -rf /usr/bin/cap&#8221; as doing just the uninstall of capistrano didn&#8217;t remove all the files l needed it to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Application templates in Ruby on Rails</title>
		<link>http://www.sentia.com.au/2009/05/application-templates-in-ruby-on-rails/</link>
		<comments>http://www.sentia.com.au/2009/05/application-templates-in-ruby-on-rails/#comments</comments>
		<pubDate>Fri, 08 May 2009 05:59:24 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[application templates]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=218</guid>
		<description><![CDATA[Here is the latest application template we have put together. &#8230; <a href="http://www.sentia.com.au/2009/05/application-templates-in-ruby-on-rails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is the latest application template we have put together. It removes all the usual items and adds the base gems that we use for all our applications. It also creates the files needed for deployment and runs &#8220;Capify&#8221; on the project, plus a few other things such as sass etc.</p>
<pre class="brush: ruby; title: ; notranslate">
# Remove unnecessary Rails files
run 'rm README'
run 'rm public/index.html'
run 'rm public/favicon.ico'
run 'rm public/images/rails.png'
run 'rm -f public/javascripts/*'

# Download JQuery
run &quot;curl -s -L http://jqueryjs.googlecode.com/files/jquery-1.3.1.min.js &gt; public/javascripts/jquery.js&quot;
run &quot;curl -s -L http://jqueryjs.googlecode.com/svn/trunk/plugins/form/jquery.form.js &gt; public/javascripts/jquery.form.js&quot;

#Configure required gems
gem &quot;haml&quot;, :version =&gt; &quot;2.0.4&quot;
gem 'thoughtbot-shoulda', :lib =&gt; 'shoulda', :source =&gt; 'http://gems.github.com'
gem &quot;thoughtbot-factory_girl&quot;, :lib =&gt; &quot;factory_girl&quot;, :source =&gt; &quot;http://gems.github.com&quot;

#Create Sass directory
run 'mkdir public/stylesheets/sass'

#Capify and create production environment.rb
run 'mkdir config/deploy'
run 'touch config/deploy/production.rb'

#Add UAT environment and settings
file 'config/environments/uat.rb', &lt;&lt;-CODE
# Settings specified here will take precedence over those in config/environment.rb

# Code is not reloaded between requests. Server needs to be restarted.
config.cache_classes = true

# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true

# Show full error reports and disable caching
config.action_controller.consider_all_requests_local = false
config.action_controller.perform_caching             = true
config.action_view.cache_template_loading            = true

# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false
CODE

#Create gitignore file and setup base ignores
run &quot;touch tmp/.gitignore log/.gitignore vendor/.gitignore&quot;
file '.gitignore', &lt;&lt;-FILE
.DS_Store
log/*.log
tmp/**/*
db/*.sqlite3
public/stylesheets/*.css
FILE

# Set up git repository
git :init
git :add =&gt; '.'
git :commit =&gt; &quot;-a -m 'Initial commit'&quot;

# Success!
puts &quot;SUCCESS!&quot;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/05/application-templates-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

