Entries Tagged 'Rake' ↓
August 24th, 2007 — Rails, Rake, Ruby
To view the coverage of your plugins using Rcov, first install the rcov gem with sudo gem install rcov, then copy and paste the following onto the end of the Rakefile inside your plugin directory:
require 'rcov/rcovtask'
desc 'Measures test coverage using rcov'
namespace :rcov do
desc 'Output unit test coverage of plugin.'
Rcov::RcovTask.new(:unit) do |rcov|
rcov.pattern = 'test/unit/**/*_test.rb'
rcov.output_dir = 'rcov'
rcov.verbose = true
end
desc 'Output functional test coverage of plugin.'
Rcov::RcovTask.new(:functional) do |rcov|
rcov.pattern = 'test/functional/**/*_test.rb'
rcov.output_dir = 'rcov'
rcov.verbose = true
end
end
You can now simply run rake rcov from inside your plugin directory which will generate an rcov directory with the results. Open rcov/index.html (if you are on OSX this will open automatically) in a browser to view the results.
Thanks to “Mike Clark”:http://clarkware.com/cgi/blosxom for his “Rcov rake task for Rails”:http://clarkware.com/cgi/blosxom/2007/01/05#RcovRakeTask which this task is based on.
*Update (11-11-08):* Changed code to use the RcovTask class.
July 30th, 2007 — Mac / OS X, Rails, Rake, Ruby
John Nunemaker posted a handy tip on “setting up autotest to work with Growl”:http://railstips.org/2007/7/23/autotest-growl-pass-fail-notifications
I use this all the time now however I didn’t like the ugly smilies (call me shallow if you like). I used “Wolfgang Bartelme’s”:http://bartelme.at “Smily Devkit”:http://bartelme.at/journal/archive/smiley_devkit to make a couple of PNG’s slightly more pleasing to the eye.
p=. !http://thelucid.com/files/fail.png(Autotest Fail image)!
!http://thelucid.com/files/pending.png(Autotest Pending image)!
!http://thelucid.com/files/pass.png(Autotest Pass image)!
The zip file can be downloaded here: “autotest_images.zip”:http://thelucid.com/files/autotest_images.zip
*Update* 17-08-07: Added ‘pending’ image for RSpec as requested by Aslak Hellesoy
May 16th, 2007 — Ajax, Rails, Rake, Ruby
Following my previous post, below is a modified version of “John Nunemaker’s ‘Renaming RHTML to ERB’”:http://railstips.org/2007/3/4/renaming-rhtml-to-erb to take into account the format in the extension, and handle “the RJS issues I was having”:http://www.thelucid.com/articles/2007/05/16/rails-edge-view-file-extention-functionality-has-changed.
namespace 'views' do
desc 'Renames all .rhtml views to .html.erb, .rjs to .js.rjs, .rxml to .xml.builder and .haml to .html.haml'
task 'rename' do
Dir.glob('app/views/**/[^_]*.rhtml').each do |file|
puts `svn mv #{file} #{file.gsub(/\.rhtml$/, '.html.erb')}`
end
Dir.glob('app/views/**/[^_]*.rjs').each do |file|
puts `svn mv #{file} #{file.gsub(/\.rjs$/, '.js.rjs')}`
end
Dir.glob('app/views/**/[^_]*.rxml').each do |file|
puts `svn mv #{file} #{file.gsub(/\.rxml$/, '.xml.builder')}`
end
Dir.glob('app/views/**/[^_]*.haml').each do |file|
puts `svn mv #{file} #{file.gsub(/\.haml$/, '.html.haml')}`
end
end
end
h4. Update
Added haml conversion.
September 21st, 2006 — Rails, Rake
I have found on numerous occasions that I need to disable certain plugin functionality if running a generator / rake db:migrate etc.
An easy way to disable certain functionality follows:
def method_that_shouldnt_be_run_in_migrations_or_generators
# Return if we are using a generator or migrations
script = File.basename($0)
return if (script == 'generate') || (script == 'rake' && ARGV[0] =~ /migrate$/)
end
July 29th, 2006 — Rails, Rake, Subversion
Just read a post from “David”:http://david.planetargon.us at “Planet Argon”:http://planetargon.us/ showing a way to “add un-added files”:http://david.planetargon.us/articles/2006/07/28/i-love-shell-scripting in your Subversion working copy.
I have made this into a simple rake task:
namespace :svn do
desc "Adds all files with an svn status flag of '?'"
task(:add_new) { `svn status | awk '/\\?/ {print $2}' | xargs svn add` }
end
Just drop this code in a file called subversion.rake inside the tasks directory. Now you can run rake svn:add_new which will add all new files with an svn status flag of ‘?’ in your working copy.