Re: [Ironruby-core] uninitialized constant OpenSSL::Digest::SHA1

2012-05-07 Thread Craig Thompson
Well, I got it to work... But I'm not sure why. In the ActiveSupport 3.0.1 gem, I made a change to line 59 in the message_verifier.rb. I changed it from: OpenSSL::HMAC.hexdigest(OpenSSL::Digest.const_get(@digest).new, @secret, data) To: OpenSSL::HMAC.hexdigest(OpenSSL::Digest::Digest.new(@dig

Re: [Ironruby-core] uninitialized constant OpenSSL::Digest::SHA1

2012-05-02 Thread Craig Thompson
Thanks for all the responses. The thing that baffling me is that IronRuby has an install that includes Visual Studio integration. So, it would seem that I should be able to get Hello World to work... I must have some specific "oddity" to my system that is hosing the IronRuby/Rails install. Cra

[Ironruby-core] uninitialized constant OpenSSL::Digest::SHA1

2012-05-01 Thread Craig Thompson
Trying to create a simple "hello world" application. So far I simply deleted the /public/index.html file and created a home controller. When I try to browse to the page, I get an uninitialized constant OpenSSL::Digest::SHA1 error. Couple of pieces of information. OS is Windows 7 and I am using t