require not working correctly?

A

Adlai

I'm just starting out in Ruby, and I used the one-click installer. The
version on my computer seems to be Ruby 1.8.6-27.

I'm working through some of the examples in Why's Poignant Guide, and
things seem to have broken down here:

File wordlist.rb contains:
puts 'Wordlist got required'
code_words = {
'starmonkeys' => 'Phil and Pete, those prickly chancellors of the
New Reich',
'catapult' => 'chucky go-go', 'firebomb' => 'Heat-Assisted
Living',
'Nigeria' => "Ny and Jerry's Dry Cleaning (with Donuts)",
'Put the kabosh on' => 'Put the cable box on'
}

File script.rb contains:
require 'wordlist'
# Get evil idea and swap in code words
puts "Enter your new idea: "
idea = gets
code_words.each do |real, code|
idea.gsub!(real, code)
end
# Save the jibberish to a new file
puts "File encoded. Please enter a name for this idea: "
idea_name = gets.strip
File::eek:pen("idea-" + idea_name + ".txt", "w") do |f|
f << idea
end

This is basically copied out of the Poignant Guide, with the addition
of the puts method at the start of wordlist.rb.

Both are in the same directory. I navigate to that directory in cmd,
and then type ruby script.rb

It prints Wordlist got required, then prompts for an evil idea, and
after I hit enter, gives the following error:
script.rb:5: undefined local variable or method `code_words' for
main:Object (NameError)

What am I doing wrong?

Thanks,

- Adlai
 
R

Roger Pack

File script.rb contains:
require 'wordlist'

It prints Wordlist got required, then prompts for an evil idea, and
after I hit enter, gives the following error:
script.rb:5: undefined local variable or method `code_words' for
main:Object (NameError)

What am I doing wrong?

The scripts operate each in its own "scope" so setting a variable in one
doesn't set it in the other. Kind of confusing at first, but at least
you don't have to worry about leaked variables from one script to the
next.
To avoid it save it to a global like
$code_words
or put it all in one .rb file.
GL!
-=r
 
A

Adlai

The scripts operate each in its own "scope" so setting a variable in one
doesn't set it in the other.  Kind of confusing at first, but at least
you don't have to worry about leaked variables from one script to the
next.
To avoid it save it to a global like
$code_words

I figured out this trick myself, but globals could cause problems in
larger projects with name collisions...
or put it all in one .rb file.
GL!
-=r

Thanks for your help. Just wanted to make sure that I wasn't making
some newbie mistake.

- Adlai
 
R

Roger Pack

I figured out this trick myself, but globals could cause problems in
larger projects with name collisions...

The only way to share things across scopes is constants or globals--that
I know of :)


So you could rename it CODE_WORDS and that would work.
-=r
 
M

Marc Heiler

Does this work with local variables too?

For example, lets say I have a file called:

foobar.rb

Inside it we could have a class

class Foo
def test
puts 'hi from class Foo'
end
end

foo_object = Foo.new


Now, I would like to use this variable
foo_object
in another ruby file, or context.

But as far as I know without eval this was not possible.

Is this somehow possible with 'script'? (My brain is a bit confused
right now.)
 
J

Joel VanderWerf

Marc said:
Does this work with local variables too?

For example, lets say I have a file called:

foobar.rb

Inside it we could have a class

class Foo
def test
puts 'hi from class Foo'
end
end

foo_object = Foo.new


Now, I would like to use this variable
foo_object
in another ruby file, or context.

But as far as I know without eval this was not possible.

Is this somehow possible with 'script'? (My brain is a bit confused
right now.)

With 'script', you can only export constants and methods. So you could
do this:

FOO_OBJECT = Foo.new

and then your main file can do this:

my_script = Script.load("foobar.rb")
p my_script::FOO_OBJECT

Even though you are defining a constant, it is accessible only via the
object assigned to my_script (the object is in fact a module), so you
don't have to worry about namespace pollution.

HTH...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top