Tagged Questions
The require tag has no wiki summary.
63
votes
7answers
12k views
Why does Ruby 1.9.2 remove “.” from LOAD_PATH, and what's the alternative?
The latest changesets to Ruby 1.9.2 no longer make the current directory . part of your LOAD_PATH. I have a non-trivial number of Rakefiles that assume that . is part of the LOAD_PATH, so this broke ...
45
votes
6answers
17k views
Best way to require all files from a directory in ruby?
What's the best way to require all files from a directory in ruby ?
44
votes
4answers
13k views
What is the difference between include and require in Ruby?
My question is similar to this one over here about include and extend.
What's the difference between require and include in Ruby? If I just want to use the methods from a module in my class, should ...
38
votes
8answers
10k views
How can I use jQuery in Greasemonkey scripts in Google Chrome?
As some of you may know, Google Chrome has put some severe limitation on Greasemonkey scripts.
Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or ...
17
votes
3answers
2k views
Is require File.expand_path(…, __FILE__) the best practice?
Is require File.expand_path(..., __FILE__) the best way to require other files within a project?
14
votes
4answers
2k views
Is there a shorter way to require a file in the same directory in ruby?
Is there a shorter way to require a file located in the same directory (as the script being executed)?
require File.expand_path(File.dirname(__FILE__) + '/some_other_script')
I read that require ...
9
votes
5answers
1k views
How do I use a Perl package known only in runtime?
I have a Perl program, that needs to use packages (that I also write). Some of those packages are only chosen in Runtime (based on some environment variable). I don't want to put in my code a "use" ...
8
votes
2answers
3k views
What is require_relative in Ruby?
What is the difference between require_relative and require in Ruby?
7
votes
1answer
112 views
Require returns an array instead of a boolean
According to the documentation for Kernel#require the method returns a boolean value. I noticed in a IRB session however that for some files require returns an array.
ruby-1.8.7-p330 :001 > ...
7
votes
2answers
142 views
What's the point of having both include and require constructs in PHP?
I'm writing a PHP application for the first time (other than toys and exercises), and I'm at a loss to understand why PHP includes both an include and a require construct.
Before you write an answer ...
7
votes
2answers
1k views
When to call a “require” in Rails?
I have a more conceptual question in Rails... or Ruby for that matter:
Is it best to call a require right before the method that needs it, group my requires at the beginning of the class or somewhere ...
7
votes
4answers
162 views
Require statements inside methods?
I am working on developing an API for a test suite. One of the methods in the API requires the use of a library that isn't needed anywhere else in the API.
My question is whether the require ...
7
votes
2answers
5k views
Why doesn't relative_require work on Ruby 1.8.6?
I'm learning Ruby (using version 1.8.6) on Windows 7.
When I try to run the stock_stats.rb program below, I get the following error:
C:\Users\Will\Desktop\ruby>ruby stock_stats.rb
...
7
votes
2answers
325 views
Dynamically requiring in ruby
All,
I was wondering if anyone has an intermit enough knowledge of rubys 'require' to tell me if the following is valid ruby or not;
class Something
def initialize(mode)
case mode
when ...
6
votes
3answers
328 views
Getting closure-compiler and Node.js to play nice
Are there any projects that used node.js and closure-compiler (CC for short) together?
The official CC recommendation is to compile all code for an application together, but when I compile some ...
6
votes
1answer
1k views
node.js require all files in a folder?
How do I require all files in a folder in node.js?
need something like:
files.forEach(function (v,k){
// require routes
require('./routes/'+v);
}};
6
votes
2answers
2k views
Rails 3 library not loading until require
I'm trying to load the Tokbox SDK in rails 3. I've placed the library in my /lib directory, so currently my directory structure looks like so:
/lib
opentok.rb
/OpenTok
...
6
votes
1answer
2k views
RAILS_ROOT require?
I'm trying to access the RAILS_ROOT constant in a file residing in the /lib directory, but I'm not able to (uninitialized constant error). Is there something that I need to require to be able to do ...
6
votes
6answers
3k views
Is there a pluralize function in Ruby NOT Rails?
I am writing some Ruby code, not Rails, and I need to handle something like this:
found 1 match
found 2 matches
I have Rails installed so maybe I might be able to add a require clause at the top of ...
5
votes
1answer
196 views
How to stop Magento requiring two product descriptions?
I read somewhere that you can stop Magento from requiring two product descriptions... this would suit me to the ground, since I'm adding a lot of products to our store that are just basic things with ...
5
votes
4answers
184 views
require_once() in a class
I noticed that if I declare a function inside a class method that has the same name as a outside function I get a error:
function a(){
...
}
class foo{
public function init(){
function a(){ ...
5
votes
3answers
223 views
Require file without executing code?
Here I have two files:
file.rb
def method
puts "This won't be outputted."
end
puts "This will be outputted."
main.rb
require "./file"
When running main.rb it will load all the code inside ...
5
votes
2answers
2k views
Cleanest/One-liner way to require all files in directory in Ruby?
When creating gems, I often have a directory structure like this:
|--lib
|-- helpers.rb
`-- helpers
|-- helper_a.rb
`-- helper_b.rb
Inside the helpers.rb, I'm just ...
5
votes
2answers
544 views
How do I rescue from a `require': no such file to load in ruby?
I am trying to rescue from a `require': no such file to load in ruby in order
to hint the user at specifying the -I flag in case he has forgotten to do so.
Basically the code looks like:
begin
...
5
votes
3answers
3k views
Check if an include (or require) exists
How do you check if an include / require_once exists before you call it, I tried putting it in an error block, but PHP didn't like that.
I think file_exists() would work with some effort, however ...
5
votes
3answers
1k views
What's better of require(dirname(__FILE__).'/'.'myParent.php') than just require('myParent.php')?
Lots of famous PHP scripts including WordPress use dirname(_FILE_).'/myParent.php' instead of just 'myParent.php' when including files in the same directory of the currently running script.
Aren't ...
5
votes
4answers
1k views
In Perl, what is the difference between use and require for loading a module?
What is the difference between doing use My::Module and require My::Module?
4
votes
3answers
52 views
Are Ruby imported methods always private?
This is best explained with an example:
file1.rb:
def foo
puts 123
end
file2.rb:
class A
require 'file1'
end
A.new.foo
will give an error "': private method 'foo' called".
I can get ...
4
votes
4answers
278 views
Perl : constant & require
I have a config file (config.pl) with my constants :
#!/usr/bin/perl
use strict;
use warnings;
use Net::Domain qw(hostname hostfqdn hostdomain domainname);
use constant URL => ...
4
votes
1answer
349 views
In Node.js, am I creating a new object when “Require”?
So, what I'm not sure is that. if in ModuleA, I have:
var mongoose = require('mongoose');
mongoose.connect(pathA);
And in ModuleB, I have:
var mongoose = require('mongoose');
...
4
votes
1answer
229 views
explicit require in Rails 3
I am converting my Rails 2 app to Rails 3. So far, I've been successful. However, there is this strange issue that I have to explicitly require any external files. Here is my original (i.e. Rails 2) ...
4
votes
1answer
3k views
Ruby require path
My question is the following:
I have a small Ruby code with different classes in a few files. In one of these file, I instantiate an object of the main class to start the execution.
So this file as ...
4
votes
4answers
642 views
Include, require & require_once
Today I've tried to include file that returns object. I always use require_once, however now I've noticed weird behavior of it.
File main.php
$lang = false;
$lang->name = "eng";
$lang->author ...
4
votes
2answers
1k views
require 'rubygems'
I have seen many samples of Ruby code with this line (for example, http://www.sinatrarb.com/). What is purpose of this require?
# require 'rubygems'
require 'sinatra'
get '/hi' do
"Hello world!"
...
4
votes
1answer
271 views
php require and autoload
I use __autoload to load classes, and I keep getting errors that no class is found but file get's loaded ok.
Then if I change something in a file, just something like add a new line and save it, ...
4
votes
5answers
1k views
Why can't my Perl script see the our() variables I defined in another file?
I have a question relating to Perl and scoping. I have a common file with lots of various variables. I require the common file in my main script, but I cannot access the variables; they seem to be ...
4
votes
3answers
641 views
Pretty version of Ruby's require statement?
I've always thought this sort of thing ugly:
require File.join(File.dirname(__FILE__), 'hirb/config')
Is there a prettier alternative, maybe one written for Rails?
require_relative 'hirb/config'
...
4
votes
5answers
343 views
Ruby unable to use require
This is a newbie question as I am attempting to learn Ruby by myself, so apologies if it sounds like a silly question!
I am reading through the examples of why's (poignant) guide to ruby and am in ...
4
votes
1answer
197 views
How can you track the full sequence & order of 'require's in a Ruby app as a tree?
How can you display the hierarchy of 'require's that take place in a Ruby app?
Some files require files which require additional files.
However, by running an application in debug mode you only ...
4
votes
2answers
863 views
Circular Dependencies in Ruby
Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.rb respectively.
foo.rb:
require "foo_sub"
class Foo
def foo
FooSub.SOME_CONSTANT
end
end
...
4
votes
4answers
1k views
What is the best way to include PHP libraries when using static factory pattern?
I have several static factory patterns in my PHP library. However, memory footprint is getting out of hand and we want to reduce the number of files required during execution time. Here is an example ...
3
votes
1answer
111 views
ruby require relative files
I'm using ruby v1.9.1 in combination with vim and I execute my scripts with:
:!ruby "%"
my scripts are running fine if I add:
$:.unshift File.dirname(__FILE__)
to add the path of this file to ...
3
votes
2answers
91 views
Perl: how to make variables from requiring script available in required script
example
out.pl:
(my|our|local|global|whatever???) var = "test";
require("inside.pm");
inside.pm:
print $var;
I don't want to use packages - it's overwhelming my needs :)
thanks!
3
votes
2answers
365 views
is there a require for json in node.js
I would like to include a couple of JSON files in my JavaScript code that are in the same directory as my JavaScript source file. If I wanted to include another JavaScript file I could simply use ...
3
votes
1answer
179 views
Node-style require for in-browser javascript?
Are there any libraries for in-browser javascript that provide the same flexibility/modularity/ease of use as Node's require?
To provide more detail: the reason require is so good is that it:
...
3
votes
1answer
161 views
Are there alternatives to rescue LoadError for Ruby?
I read the blog post JRuby Performance: Exceptions are not flow control which advocated avoiding using Exceptions except for exceptional circumstances.
I realized that I'm guilty of using rescue to ...
3
votes
1answer
122 views
Uninitialized constant File::NOCTTY error when I require 'fakefs'
I am trying to use FakeFS but keep getting an uninitialized constant error when I require 'fakefs':
C:/Ruby192/lib/ruby/gems/1.9.1/gems/fakefs-0.3.1/lib/fakefs/file.rb:26:in `<class:File>': ...
3
votes
3answers
99 views
How to list require_once()'s searched paths in PHP?
We've all seen this error before:
Warning: require_once(test/blah.inc) [function.require-once]: failed to open stream: No such file or directory in /home/narf/narf.inc on line 3
Fatal error: ...
3
votes
3answers
241 views
Ruby - working with `require` command
I am editing a gem in which there are the usual require commands, pointing at the loaded gem (the gem I'm talking about is called nirvana, and the files in it contain require 'nirvana', require ...
3
votes
2answers
337 views
Unable to include a Class in to another class in Ruby: uninitialized constant (NameError)
Lets say I have three classs, each define in its own file. e.g. ClassA in ClassA.rb etc...
class ClassA
def initialize
end
def printClassA
puts "This is class A"
end
end
class ClassB
...