Displaying 2 results from an estimated 2 matches for "jral".
Did you mean:
jra
2010 Feb 12
2
What happens to RJS in Rails 3
...ils 3 ideal of unobtrusive javascript will result in the
removal of all inline javascript. But where does that leave RJS?
It looks like PrototypeGenerator is still a part of the Rails core, so
I''m going to assume that RJS templates will remain unchanged. Still
looks like gems/plugins such JRals will be necessary for use of other
JS frameworks.
Can anyone confirm or deny the fate of RJS in Rails 3?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocF...
2023 Mar 16
3
Trying to learn how to write an "advanced" function
...orm(10)
z <- c(rep(1,5),rep(2,5))
# Show what x, y and z look like
rbind(x,y,z)
# run formula y~x
JD <- doit(y~x)
JD
# run formula y~x+z
JD2 <- doit(y~x+z)
JD2
________________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Rasmus Liland <jral at posteo.no>
Sent: Thursday, March 16, 2023 8:42 AM
To: r-help
Subject: Re: [R] Trying to learn how to write an "advanced" function
On 2023-03-16 12:11 +0000, Sorkin, John wrote:
> (1) can someone point me to an
> explanation of match.call or match
> that can be understood b...