Displaying 3 results from an estimated 3 matches for "meth1".
Did you mean:
meth
2013 Sep 06
1
directives to explicitely exclude objects from import into namespaces
...lt;pkg>) ## importing the whole namespace of <pkg> in a first step
notimportFrom(<pkg>, <obj1>, <obj2>,....)
## exclude <obj1>, <obj2>, ... again from the previous namespace import
## and, similarly,
notimportMethodsFrom(<pkg>, <meth1>, <meth2>,....)
notimportClassesFrom(<pkg>, <cls1>, <cls2>,....)
in the NAMESPACE file?
Otherwise the list of object, methods, classes to be explicitely imported
(in my case) got very long (and hence hard to maintain) -- much longer
than the list of items to be excluded...
2006 Jan 14
14
Javascript/AJAX Debugging
Hello !
I''m trying to implement something similar to the "multiple updates" section
of the Web2.0 chapter of the Agile book.
I implemented my version, and nothing is happening. No javascript errors,
my logs look fine, page is rendered fine... just no Effect.Highlight. Here
is the code:
views/causes/cause_home/index.rhtml
===============
<%= form_remote_tag(:complete =>
2007 Jul 25
5
MockCov: Proof of concept
Hey list,
RSpec is great, I''ve been using it at work for a couple of months now. One
gripe I have is that I find it hard to know exactly to what extent my code
is covered by the specs. I am aware of RCov and Heckle; they''re great, but
I''d like to demonstrate another perspective of coverage analysis I''ve hacked
up.
The perspective is that of what is mocked and