Displaying 9 results from an estimated 9 matches for "myproj".
Did you mean:
myprog
2012 Nov 05
2
Problem compiling Rnw file
Dear R list,
I'm using R 2.15.2 with TeX Live 2009 and ESS 12.09 . I have a R
project in the '/home/r/Documents/myproj/', which is my working
directory (where I have the .Rnw file). Inside the document I have
several "setwd()" to collect the datasets I use.
After I compile from the terminal using "R CMD Sweave myproj.Rnw", I
receive the error:
Error in driver$finish(drobj) :
the output f...
2014 Mar 12
3
Anyone using trac on centos?
(Besides Paul, who's busy?)
I just need one question answered: I keep reading the docs, and given the
old traditional
/var/www
I get that part of trac should be installed in /var/www/trac/<myproj> (I
think); what I can't figure out is whether there is *anything* under the
document root, that is, /var/www/html/trac/<myproject>.
Anyone have a clue? Do I even need it as a placeholder, or does anything
actually go in there?
mark
2007 Aug 14
0
Using rspec in a non-rails project w/ autotest
...anyone needs this, but I have successfully been running
rspec/trunk with autotest for a few days now on a non-rails project.
The process is pretty simple:
1. Put rspec into vendor/plugins/rspec (on externals, or simply frozen)
2. Add autotest/discover.rb:
Autotest.add_discovery do
"myproj"
end
3. Add autotest/myproj.rb:
require File.dirname(__FILE__) + "/../vendor/plugins/rspec/rspec/lib/
autotest/rspec"
class Autotest::Myproj < Autotest::Rspec
alias :old_spec_commands :spec_commands
def spec_commands
[File.dirname(__FILE__) + "/../vendor/plugi...
2008 Oct 13
2
rsync error: Error in socket IO(code 10) at clientserver.c(122)
Hi,
I am using cwrsync ver 2.1.5 over SSH to connect to
myproj@sourceforge.net and facing
some problems and not sure how to go about it. Below is the full text of the
result when I run the batch file. Was wondering if anyone has seen any
similar issue. Any thoughts/help is much appreciated.
------------------------------------------------
Tunnel: ssh
Command...
2006 May 30
0
RadRails generators throwing ''No such file to load'' errors
if anyone has a minute maybe you can help with a newbish problem im
having with radrails v0.6.3.
If i try to generate a migration through the ''generators'' panel i get
error messages like this:
myProj> ruby script/generate migration newtest
myProj> -e:3:in `load'': No such file to load -- script/generate
(LoadError)
from -e:3
Although the generators work fine if i send the commands directly from
the cmd shell. It seems theres something not set up right in radrails,
but as far a...
2006 Mar 29
3
Grouping Controllers into Modules - Doesn''t work!?
Ok, what I want to achieve is:
http://<mydomain>/admin/products
calls app/controllers/admin/products_controller.rb
According to Agile Development with Rails this should work.
I executed the follwing commands:
rails myproj
cd myproj
script/generate controller Admin
script/generate scaffold Admin::Product
this creates app/controllers/admin/products_controller.rb all the views
& Product model, but doesnt actually route.
http://<mydomain>/admin/products just gives me:
Unknown action
No action responded to...
2018 Mar 17
1
Local svn strategy for future LLVM release updates
...eywords, if so please help me out and point me to any relevant docs.
Could others share their experiences with maintaining local LLVM projects?
Without any further guidance, the path we will follow comprises of the following flow:
Create a local repo with trunk/llvm_60
Copy trunk/llvm_60 to trunk/myproj60
Make project changes on trunk/myproj60
When LLVM 7.0 is released, create trunk/llvm_70 and copy this to trunk/myproj70
Diff trunk/llvm_60 with trunk/myproj60, identify and fix any conflicts, and apply resulting patch to trunk/myproj70
Continue project development on trunk/myproj70
I’m prett...
2018 Mar 16
0
local svn strategy for LLVM release updates
...eywords, if so please help me out and point me to any relevant docs.
Could others share their experiences with maintaining local LLVM projects?
Without any further guidance, the path we will follow comprises of the following flow:
Create a local repo with trunk/llvm_60
Copy trunk/llvm_60 to trunk/myproj60
Make project changes on trunk/myproj60
When LLVM 7.0 is released, create trunk/llvm_70 and copy this to trunk/myproj70
Diff trunk/llvm_60 with trunk/myproj60, identify and fix any conflicts, and apply resulting patch to trunk/myproj70
Continue project development on trunk/myproj70
I’m prett...
2008 Mar 05
14
ActiveRecord, spec''ing find has right :order parameter
I''m wanting to write a spec that a model is applying an :order option
to a find call, but I don''t want to completely specify all of the find
parameters.
So I want to write something like this, say in a controller spec
User.should_receive(:find).with(:all, hash_with_at_least(:order =>
''user.name ASC''))
get ''index'', :sort =>