0
votes
1answer
548 views
Ruby Integer to Binary string
I need to encrypt a integer, but all the crypto libraries only support strings.
What is the proper method to convert a integer to a binary string in Ruby? (not '10111', I think that it's AS …
4
votes
What is good forum software to add to an existing Rails application?
Beast and RForum are the two that I know of. …
9
votes
4
votes
Getting the Hostname or IP in Ruby on Rails
From coderrr.wordpress.com:
require 'socket'
def local_ip
orig, Socket.do_not_reve …
1
vote
RSpec mocking an :each block
This should do the trick:
describe Parser
before do
@parser = Parser.new
end
it "should extract a filename into extracted" do
linetext = [ "RCS file: hello,v\n", "bla …
4
votes
Is there a better HTML escaping and unescaping tool than CGI for Ruby?
The htmlentities gem should do the trick:
require 'rubygems'
require 'htmlentities'
coder = HTMLEntities.new
coder.decode('…') # => "…"
coder.decode('…') # …
