How can I fix this?

G

Gaech

I`m just install Ruby 1.8.5

C:\rubyclr\Samples\GoogleCalc>calc.rb
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_re
quire': no such file to load -- rubyclr (LoadError)
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `re
quire'
from C:/rubyclr/Samples/GoogleCalc/calc.rb:3
 
J

Jan Svitok

I`m just install Ruby 1.8.5

C:\rubyclr\Samples\GoogleCalc>calc.rb
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_re
quire': no such file to load -- rubyclr (LoadError)
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `re
quire'
from C:/rubyclr/Samples/GoogleCalc/calc.rb:3

Just a blind guess: Aren't you mixing two ruby versions? c ruby and .net ruby?
In that case, fix your paths.
 
T

Tom Ward

Gaech,

This:

http://www.iunknown.com/articles/2006/03/16/third-drop-of-rubyclr

And:

http://www.ruby-lang.org/en/

Are different. Not compatible. Uninstall both, install rubyclr only.

For once I think Zed may be wrong. RubyCLR is a bridge between ruby
and the CLR, rather than a version of ruby that runs on the CLR. We
have it apparently working on ruby 1.8.4, and I don't see why it
wouldn't work with 1.8.5 too.

It looks like your issue is a path problem. Assuming you've got a
compiled version (you may need to build one in Visual Studio), to get
it to work you need to add both the build and ruby directories to
RUBYLIB. The setup.cmd file in the rubyclr distribution should do
this, or you can do it yourself using:

SET RUBYLIB=%RUBYLIB%;<rubyclrdir>/Build;<rubyclrdir>/Src/Ruby

Tom
 
Z

Zed A. Shaw

For once I think Zed may be wrong. RubyCLR is a bridge between ruby
and the CLR, rather than a version of ruby that runs on the CLR. We
have it apparently working on ruby 1.8.4, and I don't see why it
wouldn't work with 1.8.5 too.

Oh yeah, my bad, I thought RubyCLR was the IronPython alternative and ran on the .NET VM natively. But yeah looks like it uses ruby and hooks into it.

In that case I have no idea why it don't work. Maybe you can help?
 
G

Gaech

Tom said:
For once I think Zed may be wrong. RubyCLR is a bridge between ruby
and the CLR, rather than a version of ruby that runs on the CLR. We
have it apparently working on ruby 1.8.4, and I don't see why it
wouldn't work with 1.8.5 too.

It looks like your issue is a path problem. Assuming you've got a
compiled version (you may need to build one in Visual Studio), to get
it to work you need to add both the build and ruby directories to
RUBYLIB. The setup.cmd file in the rubyclr distribution should do
this, or you can do it yourself using:

SET RUBYLIB=%RUBYLIB%;<rubyclrdir>/Build;<rubyclrdir>/Src/Ruby

Tom

I just follow instruction on rubyclr.com
c:\ruby - Ruby 1.8.5
c:\rubyclr - RubyCLR

1. Download RubyCLR OK
2. Open your Visual Studio 2005 Command Prompt. OK
3. Go to your ruby win32 source directory
"..yourpath/ruby/src/win32" OK
4. type "configure.bat"
5. type "nmake". This process may or may not fail. All that matters
is that ruby/config.h is created. OK
6. Open the RubyCLR solution "RubyCLR/RubyCLR.sln" in Visual Studio
OK
7. Open the Runtime project's properties OK
8. Under "C/C++" ensure the "Additional Include Directories" setting
contains the full path to your ruby/src and your ruby/src/win32
directories OK
9. Under "Linker" ensure the "Additional Library Directories"
setting contains the full path to your ruby/lib directory OK
10. Build the Project! OK
11. Run setup.cmd OK

Here is screenshot from my console
"C:\rubyclr\Samples\RssReader\rssreader.rb"
c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:251:in
`report_activate_error': Could not find RubyGem activerecord (>= 0.0.0)
(Gem::LoadError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:188:in
`activate'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:66:in
`active_gem_with_options'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:59:in
`require_gem'
from C:/rubyclr/Src/Ruby/winforms.rb:6
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from C:/rubyclr/Samples/RssReader/rssreader.rb:1
 
T

Tom Ward

Here is screenshot from my console
c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:251:in
`report_activate_error': Could not find RubyGem activerecord (>= 0.0.0)
(Gem::LoadError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:188:in
`activate'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:66:in
`active_gem_with_options'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:59:in
`require_gem'
from C:/rubyclr/Src/Ruby/winforms.rb:6
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from C:/rubyclr/Samples/RssReader/rssreader.rb:1

Strange, the winforms code seems to require activerecord. I'm not an
expert oin the rubyclr internals, but that seems strange to me.

Anyway, to get it to work, install the rails gems (gem install rails
--include-dependencies) and try again. You can also test to see if
rubyclr is installed successfully by typing:

ruby -e "require 'rubyclr'"

If this produces an error, rubyclr is not working correctly.

Tom
 
G

Gaech

Tom said:
Strange, the winforms code seems to require activerecord. I'm not an
expert oin the rubyclr internals, but that seems strange to me.

Anyway, to get it to work, install the rails gems (gem install rails
--include-dependencies) and try again. You can also test to see if
rubyclr is installed successfully by typing:

ruby -e "require 'rubyclr'"

If this produces an error, rubyclr is not working correctly.

Tom
ruby -e "require 'rubyclr'"
c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:251:in
`report_activate_error': Could not find RubyGem activerecord (>= 0.0.0)
(Gem::LoadError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:188:in
`activate'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:66:in
`active_gem_with_options'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems.rb:59:in
`require_gem'
from C:/rubyclr/Src/Ruby/rubyclr.rb:7
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from -e:1
 
T

Tom Ward

OK, you need to get the activerecord gem, using:

gem install activerecord --include-dependencies

Tom
 
G

Gaech

Tom said:
OK, you need to get the activerecord gem, using:

gem install activerecord --include-dependencies

Tom

I type in command prompt
ruby -e "require 'rubyclr'"

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in
`alias_const_missing': uninitialized constant IDataErrorInfo
(NameError)
from C:/rubyclr/Src/Ruby/core.rb:258:in `const_missing'
from
c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:133:in
`send'
from
c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:133:in
`const_missing'
from C:/rubyclr/Src/Ruby/databinding.rb:30
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from
c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in
`require'
from C:/rubyclr/Src/Ruby/rubyclr.rb:21
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from -e:1
 
G

Gaech

Gaech said:
I type in command prompt

c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in
`alias_const_missing': uninitialized constant IDataErrorInfo
(NameError)
from C:/rubyclr/Src/Ruby/core.rb:258:in `const_missing'
from
c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:133:in
`send'
from
c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:133:in
`const_missing'
from C:/rubyclr/Src/Ruby/databinding.rb:30
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from
c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in
`require'
from C:/rubyclr/Src/Ruby/rubyclr.rb:21
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from -e:1
gem install activerecord --include-dependencies
Need to update 0 gems from http://gems.rubyforge.org
complete
Successfully installed activerecord-1.14.4
Installing ri documentation for activerecord-1.14.4...
Installing RDoc documentation for activerecord-1.14.4...
 

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,776
Messages
2,569,603
Members
45,196
Latest member
ScottChare

Latest Threads

Top