What is the equivalent of
include(“library.php”);
in ruby?
I googled this and “rendering shared partials in ruby” but can’t find
anything.
Thanks,
Edward Tanguay
All my projects: http://www.tanguay.info
What is the equivalent of
include(“library.php”);
in ruby?
I googled this and “rendering shared partials in ruby” but can’t find
anything.
Thanks,
Edward Tanguay
All my projects: http://www.tanguay.info
On Sep 7, 2006, at 11:35 PM, Edward wrote:
All my projects: http://www.tanguay.info
Check out the docs for require and load.
On Sep 7, 2006, at 8:35 PM, Edward wrote:
What is the equivalent of
include(“library.php”);
in ruby?
Well, I don’t know php but ‘require’ is the equivalent of #include in
C/C++ except that it automatically adds the guards against multiple
inclusion. You can also leave off the .rb
Just use it like;
require libfile
For blocks are better cleft with wedges,
Than tools of sharp or subtle edges,
And dullest nonsense has been found
By some to be the most profound.
-Samuel Butler,
You can use require or load.
require ‘filename’
loads filename.rb only once during the current executiion. This is what
you would normally require. I dont know php all that well, but I think
this is what you mean.
Edward wrote:
All my projects: http://www.tanguay.info
–
Darshan P.
“The trouble with work is that it interferes with living.” - Peter
Mckill 1968
http://deepy.selfip.com
http://www.singlehunt.com
http://www.cribscout.com
http://www.ringtonelair.com
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs