0
votes
1answer
15 views
Ruby net-dns reverse lookups
I am trying to get reverse DNS lookups working with the net-dns gem for ruby.
From the rdoc
res = Net::DNS::Resolver.new
ip = IPAddr.new("172.16.100.2")
packet = res.search(ip)
…
0
votes
1answer
32 views
Installing bcrypt-ruby gem on Windows
I'm trying to install bcrypt-ruby on Windows Vista.
So far, I have been able to install nmake.exe from a MS knowledge base article and cl.exe from installing Visual Studio 2008 Ex …
0
votes
1answer
12 views
How can I show updates with gem?
Hi
I want on my webserver a script that checks automatical over cron if there are gem updates without installing updates. I don't find anything about this task in the gem docs.
1
vote
1answer
18 views
raise MysqlError; raise Mysql::Error both work, how did this happen?
Greetings,
I was working on mysql exceptions and I came across this interesting issue, in which a raised exception is responding to two different exception names. How did this ha …
0
votes
0answers
12 views
Ruby AlterEgo: Is there a way to find out what was the transition called in on_enter/on_exit/anywhere?
As title, I am talking about the alter-ego gem (http://alter-ego.rubyforge.org). I need to determine if I am going to execute my validation depending on the transition called. The …
0
votes
1answer
35 views
Problem with Ruby Gem and Sanitize
Hi,
I'm trying to install the Ruby gem sanitize. I've already installed nokogiri:
>gem list nokogiri
*** LOCAL GEMS ***
nokogiri (1.4.0)
but when I try and install sanitize …
2
votes
2answers
26 views
Rails gem with javascript files
I'm trying to create a ruby gem for rails out of a plugin I've created. The problem is that my plugin 'shortcuts' uses a few javascript files which need to be in the public/javasc …
0
votes
1answer
38 views
How to enter a remote directory on Ruby NET:SFTP ?
How to enter a directory like the command - cd, thus operate remote files without a path prefix ?
Here is my current code.
Net::SFTP.start do |sftp|
sftp.rename!(REMOTE_PATH …
1
vote
8answers
2k views
cannot install ruby gems - zlib error
I'm trying to install some Ruby Gems so I can use Ruby to notify me when I get twitter messages. However, after doing a "gem update --system", I now get a zlib error every time I t …
0
votes
1answer
37 views
Forking a gem for a Rails project
I've found myself twice in this situation: I install a gem on my system and start using it from my Rails project. Eventually I need to make some changes to that gem. How should I p …
0
votes
0answers
48 views
Best YouTube gem for Ruby?
Is there a definitive gem for the YouTube API? I'm trying to use youtube_g, but it seems to break on some basic stuff.
0
votes
2answers
51 views
OAauth gem in rails problem.
I'm trying out OAuth for twitter api authentication and ran into a brick wall when my code spits out the message:
(instance of OAuth::Consumer needs to have method `marshal_load' …
1
vote
3answers
1k views
Installing RMagick on Mac OS X with MacPorts
With the MacPorts version of ImageMagick 6.4.4 installed, I'm getting an error installing the RMagick gem.
/opt/local/bin/ruby extconf.rb update rmagick
checking for Ruby version …
2
votes
3answers
102 views
How to distribute a Ruby application with the required gems
I've developed a Ruby application (a small game), and I would like to 'distribute' it to other people.
However, I am not sure what to do about the required gems. If I just send m …
1
vote
3answers
164 views
How do I convince Rubygems (1.3.3) that I really do want it to install dependencies?
For any gem that has dependencies, I get the following (with the names changed as applicable):
Attempt 1:
sudo gem install mojombo-jekyll -s http://gems.github.com/
ERROR: Error …
