Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
11
votes
4answers
9k views

Adding a directory to $LOAD_PATH (Ruby)

I have seen two commonly used techniques for adding the directory of the file currently being executed to the $LOAD_PATH (or $:). I see the advantages of doing this in case you're not working with a ...
4
votes
3answers
114 views

what is “$:” in ruby?

Usually be seen in .gemspec file. eg. i18n.gemspec. $: << File.expand_path('../lib', __FILE__)
3
votes
2answers
3k views

Ruby require “no such file to load” error yet clearly in path

I've been trying to get a ruby file to require another ruby file and I feel like I'm going crazy. My setup is as follows Two files in '/raid1/ruby-code/benchmark/' CommandRunner Benchmarker ...
2
votes
3answers
100 views

In the Ruby programming language, what is the name of $:

I want to know more about $: but I don't how is called. :015 > $: => ["/Users/Nerian/.rvm/rubies/ruby-1.9.3-rc1/lib/ruby/site_ruby/1.9.1", ...
2
votes
2answers
175 views

How to refer a local gem in ruby?

I pack some ruby code into a gem. I want to refer the code in the gem in some other code. So in the Gemfile I specify the gem's name, version, and local path. Like: gem 'gemname','0.x', :path => ...
2
votes
1answer
251 views

How can I configure gem to only ever use system gems?

I want to configure gem to only use system gems - never those in $HOME/.gem. This is because I'm writing a script that will access Gem.path and I don't want it to return the path to gems in my home ...
2
votes
1answer
265 views

Error running rake task from IDE

I am having a problem running the 'test' Rake task from IntelliJ Idea in Ruby On Rails application: *Error running test: File 'test/unit/autorunner.rb' wasnt found in $LOAD_PATH of Ruby SDK with ...
1
vote
2answers
72 views

Where can I see the source code for classes within my current ruby intallation?

I am new to ruby but nonetheless I have installed various versions of Ruby using RVM, Here's the the output of my LOAD_PATH ruby-1.9.2-p136 :001 > puts $LOAD_PATH ...
1
vote
2answers
338 views

Adding to Rails autoload_path from Gem

I want to write a gem that adds a app/services directory to a Rails application. Since I want to add it from within the Gem i came up with this solution: class Railtie < ::Rails::Railtie ...
1
vote
1answer
73 views

What is difference between load_path & auto load_path in rails?

What is difference between load path & auto load path? if i have added any dir to auto-load path then should i need to require that file in my code?
1
vote
1answer
111 views

How do I retain installed gems after updating rubygems?

After a recent reinstallation of Ubuntu, I reinstalled RubyGems. The Ubuntu repository grabbed version 1.3.5. Later I found I need the latest version. So I installed the RubyGems update to get to ...
0
votes
1answer
56 views

$LOAD_PATH does not include working directory?

Why isn't the current directory included in $LOAD_PATH? This seems odd. I just keep adding it, but is there some reason I am not seeing that it's just not automatically included?
0
votes
3answers
145 views

add-to-list 'load-path doesn't seem to work

Whenever I see some installation instruction for an emacs package it always suggests to use add-to-list 'load-path it never works for me for some reason and I have to use load-file for example this ...
0
votes
0answers
74 views

Rails 3 load path issue when running tests

I am running rails 3.0.9 and I have classes underneath /app/custom folder. I have added the following lines to my application.rb: config.autoload_paths += %W(#{config.root}/app/custom) The ...
0
votes
4answers
148 views

Why can't I require a file in the parent directory in ruby?

Note that I am not using Rails. I have a directory structure like: foo/ bar/ base_classes/ base_classes.rb base_classes.rb: Dir.glob(File.expand_path(File.join("base_classes/config/constants", ...
0
votes
1answer
100 views

Adding Color Themes to Lispbox

I'm new to using Common Lisp and currently using Lispbox. I would like to add a color-theme package to Lispbox running on OSX to change the color theme. I'm currently trying to use the command: ...
0
votes
1answer
181 views

JRuby loadpath messed up

I am embedding JRuby on a JAR file and it's being used by a EAR file that I am deploying to WebSphere. When I call the class from my workspace, it works fine, however when I call it inside WebSphere, ...
0
votes
1answer
38 views

In Rails, I thought once the “Foo.all” is executed, then “models/foo.rb” is loaded?

In Rails, if I create a scaffold foo, and do rake db:migrate, then now app/models/foo.rb is created. So if I go to script/console (or rails console for Rails 3) and type $".grep /foo/i it ...
0
votes
1answer
211 views

adding a subpackage from a different path

I have a python package called zypp. It is generated via swig and the rpm package (called python-zypp) puts it in: rpm -ql python-zypp /usr/lib64/python2.6/site-packages/_zypp.so ...
0
votes
1answer
176 views

Why does ruby's '$:' or '$LOAD_PATH' change when I run it with sudo?

I am trying to run a ruby script as root. When I try to require a gem, ruby says it can't be found. This is because of $: $ ruby -e "puts $:" ...
0
votes
1answer
482 views

Rails: load_paths for directory and all subdirectories

In environment.rb I can add the line config.load_paths += %W( #{RAILS_ROOT}/app/models/foos ) where 'foos' is a folder. This loads all files inside the foos folder. However it doesn't load any of ...
0
votes
1answer
204 views

How are $LOAD_PATH and $: different?

I needed to know what was in my Ruby load path, so I did this: $ ruby -e "puts $LOAD_PATH" It didn't print anything out, which I didn't expect. So I tried this: $ ruby -e "puts $:" ...
0
votes
1answer
55 views

Why does my rails project not have the ruby standard lib in $LOAD_PATH on OSX?

I need to do a: require 'generator' Inside of a rails project, but it is not working for me on OSX, because the ruby standard library (which is located in my /usr/lib/ruby/1.8) is not in my ...