search for: rbindir

Displaying 2 results from an estimated 2 matches for "rbindir".

Did you mean: dbindir
2006 Mar 16
1
Re: rcov 0.2.0 - code coverage tool for Ruby
...the chorus of thank you. This is perfect. I found a blog entry (http://asplake.blogspot.com/2006/01/revert-that-rakefile.html) and worked it over a little into the file below which I put in lib/tasks/rcov.rake in a rails project. It works great. Thanks pth require ''rake/clean'' RBINDIR = Config::CONFIG[''bindir''] RBIN = "#{RBINDIR}/rcov" if File.exists?(RBIN) # output goes to subdirectories of this one RCOV_OUT = "coverage" # "rake clobber" to remove output directory (along with other generated stuff) CLOBBER.include(RCOV_O...
2004 Jul 07
2
Win32 & C code
Hi, I'm trying to get C code working with R. This is my first time writing C on Windows and I'm making a mess of it. Help! I'm following the example in Roger Peng's "An Introduction to the .C interface to R". The C code is: #include <R.h> void hello(int *n){ int i; for(i=0; i < *n; i++) { Rprintf("Hello, world!\n"); } } I seem to be unable