Tagged Questions

0
votes
1answer
13 views

(rails) how does one correctly link to a javascript file in a rails view?

Is there a helper of some sort? I want to make a javascript file, put it in the rails directories somewhere, and have the file be included in a view so I can use the methods and fu …
3
votes
7answers
420 views

What’s your naming convention for helper functions?

In functional programming, it's often important to optimize any "looping" code to be tail recursive. Tail recursive algorithms are usually split between two functions, however - on …