Tagged Questions

0
votes
2answers
71 views

Ruby require problem

I'm trying to get the sanitize gem up and running. I've installed sanitize and nokogiri 1.3.3 as required, but when I try and use it in my application_helper.rb: require 'rubygems …
1
vote
4answers
219 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; …
3
votes
2answers
213 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_ …
2
votes
3answers
156 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_rela …
8
votes
2answers
1k 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 …
0
votes
3answers
101 views

Problem with using require inside a function and variable scope

I'm using an MVC setup and I'm trying to inject javascript into my views (.php), yet allow the javascript access to all the variables that the view has access to. My end goal is to …
0
votes
0answers
92 views

How are require, require_dependency and constants reloading related in Rails?

I need to write a plugin for a rails application which uses Engines. Since I have no Rails experience before, I read some documents and tutorial stuff. But Rails' class loading pro …
2
votes
3answers
56 views

bad practice to strip out all require statements into a separate file?

If I have a whole bunch of requires in my main app file: require 'a' require 'b' require 'c' require 'd' require 'e' require 'f' require 'g' require 'h' require 'i' require 'j' …
0
votes
5answers
149 views

[Ruby] (…)in `require’: no such file to load — ‘gemname’ (LoadError)

Hi people! I haven been all day training to fix this problem but i couldn't. The question is easy, i don't want to put anymore the require 'rubygems' line everytime i require a ge …
0
votes
3answers
443 views

PHP - Get variables from another PHP file without executing the code?

Hi All, I'm trying to create a script to extract the variables from a file on the same server. The problem is, I don't know what else is going to be in the file all of the time ( …
1
vote
2answers
205 views

Rails Console Doesn’t Automatically Load Models For 2nd DB

I have a Rails project which has a Postgres database for the actual application but which needs to pull a heck of a lot of data out of an Oracle database. database.yml looks lik …
0
votes
4answers
79 views

Why am I unable to use a variable in my require or include statement on XAMPP?

While cleaning up some old php scripts I've noticed some weird behavior with require/include statements when I try to use variables. On the live server, the following code works f …
2
votes
4answers
159 views

How do I create an in-memory class and then include it in Perl?

So I am toying with some black magic in Perl (eventually we all do :-) and I am a little confused as to exactly how I am supposed to be doing all of this. Here is what I'm startin …
1
vote
4answers
253 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?
1
vote
1answer
161 views

All-or-Nothing require in Ruby?

Is there a version of require in ruby that either loads the whole file, or nothing at all? The problem is that require starts loading from the top, and if it faces problems you en …

1 2 next
15 30 50 per page