Ruby 1.9 is a shortcut for ruby versions 1.9.1, 1.9.2 and 1.9.3. Ruby is a dynamic language that focuses on simplicity and expressiveness.
0
votes
0answers
15 views
Wireformat in dnsruby
I'm trying to convert a DNS query (Dnsruby::Message) to wireformat and add some junk characters to it. And then run my application to make sure it catches the extra junk in the query.
I'm using ...
0
votes
0answers
45 views
Tool to compile a standalone Ruby script?
Is there a tool that can pull all external dependency source into one big script (not a Windows exe)?
0
votes
1answer
74 views
Perform a loop for a certain time interval or while condition is met
I am trying to have a check fire off every second for 30 seconds. I haven't found a clear way to do this with Ruby yet. Trying something like this currently:
until counter == 30
sleep 1
if ...
0
votes
1answer
137 views
Upgrading Rails 3 app from Ruby 1.8.7 to 1.9.3 stops respecting latin1 encoding specification in database.yml
I'm upgrading a Rails 3.2.13 application from Ruby 1.8.7-p370 to Ruby 1.9.3-p385. After upgrading, special characters are garbled in text retrieved from the database. For instance "café" appears as ...
0
votes
4answers
53 views
Ruby hash - how to use hash value when populating object?
For a pack of playing cards:
How can I use the suit hash (below) when creating a pack?
I have:
class PackOfCards
SUITS={H: 'Hearts', S:'Spades', D:'Diamonds', C:'Clubs'}
...
2
votes
3answers
891 views
Why is my rake call causing an 'undefined method `source_index`' error?
I am trying to run bundle exec rake db:migrate then encountered the following error.
bundle exec rake db:migrate --trace
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** ...
3
votes
2answers
63 views
Howto upgrade Ruby 1.8.7 to 1.9 on client computers
Of course I know howto install RVM and maintain multiple versions that way, and since I'm a developer I have all the requirements on my own macs (things like xcode etc). Everything is working fine on ...
1
vote
1answer
72 views
How to use the below description mentioned symbols?
Where are these symbols defined, and what are they used for?
:w2_end
:w2_beg
:w1_beg
:w1_end
I found those in my IRB by using the line Symbol.all_symbols .
My Ruby version and IRB versions are:
...
3
votes
4answers
52 views
What is the name of the <=> operator in Ruby? How do they call it?
In Ruby there is the <=> operator. In the API they do not name its name, just:
The class must define the <=> operator...
Comparable uses <=> to implement the conventional ...
1
vote
1answer
50 views
Ruby: How to specify character encoding of the file in the command line (-Eex[:in] option)?
I cannot set the encoding for a file, all the time I get an error. I've tried all the ways:
C:\ruby\sbox>ruby -W3 -Eex=utf-8 gserver.rb text.txt
ruby: unknown encoding name - ex=utf-8 ...
3
votes
3answers
75 views
What does the multiplication symbol :* do?
In particular, using inject, the following scripts,
puts (1..5).inject {|x, y| x * y} and
puts (1..5).inject(:*),
both have output 120 as I expected.
However, the script
print [[1,2], [3,4], ...
3
votes
1answer
162 views
IRB - Ruby 1.9.x hash syntax: {if: true} is not equal to {:if => true}
Long story short, I was writing a method that included an options argument, that will do certain stuff if the value for the key :if, evaluated to true. When I trying the hash in IRB using the new ...
2
votes
1answer
45 views
File Comparison in Ruby Program
Is there a plugin/gem that i can use to compare two files inside Ruby code and return the differences?
Or is there some tool which i can integrate with Ruby and call in ruby code?
0
votes
0answers
69 views
rake repeats the same test many times
I'm adding a new (plain old) ruby class to my Rails app. I have a minimal unit test for the class:
require 'minitest_helper'
class ReportOptionTest < MiniTest::Unit::TestCase
def setup
...
0
votes
5answers
75 views
Understanding Ruby symbol as method call [duplicate]
class A
def test
"Test from instance"
end
class << self
def test
"Test from class"
end
end
end
p A.send(:test) # "Test from class"
p ...
0
votes
2answers
69 views
How does enum#with_object differ from enum#each_with_object?
The documentation says:
enum#each_with_object
:-
Iterates the given block for each element with an arbitrary object, obj, and returns obj
enum#with_object:-
Iterates the given ...
0
votes
0answers
47 views
cannot load such file — simple_captcha_helper
I am using Ruby 1.9.3, Rails 2.3.8 in both development and production. My development environment is Mongrel on Windows and production Passanger on Ubuntu Linux.
I am using simple_captcha for image ...
-1
votes
2answers
28 views
How to check if an url has numbers with fileEntityId or not?
I have some urls as below:
https://example.com/file/filegetrevision.do?fileEntityId=738007
9&cs=4Pzbb2jPu3EHBzv8RQHrGcPm4hZZkRC-CfH0my4dP0M.arv
...
0
votes
0answers
18 views
How should I click on the button under <noscript>..</noscript> using selenium-webdriver?
<form method="post" action="https://example.com/aems/login.do">
<input type="hidden" name="SAMLResponse" value="ttterseerx43t"/>
<input type="hidden" name="TARGET" ...
0
votes
1answer
239 views
With Nokogiri i am getting error “initialize': getaddrinfo: No such host is known. (SocketError)”
I worte the below code, just to start the Nokogiri to mee the requirement and when I ran it for testing got the error:
D:\WIPData\Ruby\Scripts>Nokogiri.rb
...
0
votes
0answers
49 views
Ruby MySQL gem client option for ssl CA certificate
I'm using the mysql-win gem (http://rubyforge.org/projects/mysql-win/) with my Ruby script. It's been working fine but now I need to connect to the MySQL server using SSL but am unable to find an ...
0
votes
0answers
63 views
Unable to install em-synchrony gem
I'm trying to setup the gem environment for my app on prod. Apparently, I got to know that RVM is not recommended to be used in prod env. So, I'm doing a non RVM setup.
I'm on Ruby 1.9.3 and Rails ...
0
votes
0answers
45 views
Resolv::DNS - how do I force TCP?
Does anyone know how do I force TCP when using Resolv::DNS?
It seems that when I ask for ANY records, the output is truncated and I get partial results. When I perform many queries (one for each ...
0
votes
2answers
36 views
default value are not properly reflected for the same keys from 2 different but closely related ruby code
Please follow the below code :
Part-I
> h = { "a" => 100, "b" => 200 }
=> {"a"=>100, "b"=>200}
> h.default = "Go fish"
=> "Go fish"
> h["a"]
=> 100
> h["z"]
=> ...
5
votes
1answer
173 views
Splat on a hash
A splat on a hash converts it into an array.
[*{foo: :bar}] # => [[:foo, :bar]]
Is there some hidden mechanism (such as implicit class cast) going on here, or is it a built-in primitive feature?
...
0
votes
1answer
90 views
What are tainted objects, and when should we untaint them?
When do Ruby objects need to be made tainted and when should we untaint them? How does the concept of tainted object make a Ruby script run in safe mode? Can anyone elaborate on this to make the ...
0
votes
1answer
47 views
Confusion with -T,-F,-K,-i commandline options in Ruby
Can you bit help me to understand how the below options work in real life?
-T [level]
-K [kcode]
-F pat
-i [ext]
1
vote
1answer
72 views
Ruby Command Line Options - verbose mode ON and placing code into Imput Loop
Can any body tell how the below three options differs from each other in Ruby?
Part-I
--verbose
-v
-w
Part-II
-n
-p
All are doing the same job which is verbose mode ON. But logically how are ...
-2
votes
1answer
58 views
How can you represent a 2D array of arbitrarily sized dimensions? [closed]
What are some good ways to represent a 2D array that extends in arbitrary length in both dimensions?
Working in Ruby.
0
votes
2answers
54 views
numbers as key in ruby 1.9.x syntax
How would I create a hash with numbers as keys under the new ruby syntax? for example {abc: 123} creates a hash with the symbol abc as the key, but {123: 'abc' } throws an exception (as does ...
1
vote
1answer
108 views
Change Rubinius Ruby Version
Is there anyway to change the Ruby version that Rubinius (rbx) uses by default without having to specify the option each time by a flag?:
rbx -X19
0
votes
1answer
48 views
Rubinius Syntax Errors
While working with LocomotiveCMS using Rubinius I ran into a bunch of syntax errors. All were along the lines of expecting '|'. No one was posting issues about this so I figured I would ask: How do I ...
0
votes
0answers
99 views
Does a Javascript Ruby 1.9.x interpreter exist? [closed]
repl.it is a Javascript Ruby interpreter, but only for the almost 5 year old 1.8.7 version of Ruby. Is there a Ruby 1.9.x interpreter in Javascript? I read that Codecademy uses repl.it, but I just ...
0
votes
1answer
97 views
How do I determine the length of a Fixnum in Ruby?
In the script I'm writing, I want find the length of a Fixnum in Ruby. I could do <num>.to_s.length, but is there any way to directly find the length of a Fixnum without converting it into a ...
0
votes
2answers
102 views
regular expression in ruby Regexp
I'm using ruby 1.9.2
string = "asufasu isaubfusabiu safbsua fbisaufb sa {{hello}} uasdhfa s asuibfisubibas {{manish}} erieroi"
Now I have to find {{anyword}}
How many times it will come and the ...
0
votes
1answer
104 views
How to test background process in RSpec?
Found this simple way to run a separate process in Sinatra: Run background process in Sinatra
get '/start_process'
@@pid = Process.spawn('external_command_to_run')
end
How would you test this in ...
2
votes
1answer
312 views
How to run Sinatra job in background?
When responding to a request, is it possible to send the response and then continue processing?
Or do you need to run a background process? What is the simplest solution?
Sinatra app on Heroku, Ruby ...
1
vote
2answers
117 views
Storing methods in a lambda and sending to an object
Is is possible to call functions on (send messages to) an object if the functions are stored in a variable as a lambda?
Say I have an array like %w(a b c)
I can then chain methods like:
%w(a b ...
2
votes
1answer
58 views
Why does this enumerator.to_a returns []?
I just encounter this piece of code
Enumerator.new((1..100), :take, 5).to_a
# => []
Does anyone know why it returns an empty array and not an array of 5 integers?
7
votes
1answer
98 views
Why this code is not compiling on ruby 1.9 but is on ruby 1.8?
Sorry for the title, I don't know how this syntax is called.
For instance:
ary = [ [11, [1]], [22, [2, 2]], [33, [3, 3, 3]] ]
# want to get [ [11, 1], [22, 2], [33, 3] ]
Ruby 1.8
ary.map{|x, ...
2
votes
2answers
180 views
How to fix a Ruby “no such file to load — xsd/qname” error?
I'm trying to run the FlightXML2 Ruby library for accessing the FlightAware API. (The library's code is here: https://github.com/flightaware/flightxml2-client-ruby)
When including the library file ...
2
votes
1answer
47 views
Errors from `ObjectSpace._id2ref`
What is the difference between the following two kinds of errors that ObjectSpace._id2ref returns?
0x... is recycled object (RangeError)
0x... is not id value (RangeError)
0
votes
2answers
84 views
Practices for controlling a Ruby application “from the outside” [closed]
So, I have a long-running Ruby process, that does a wide variety of things, depending on what's it told to do (EventMachine TCP server with binary messages). Now, I would like to give certain people ...
2
votes
1answer
70 views
Not getting correct output from to_s
One of the examples in Peter Cooper's Beginning Ruby for polymorphism involves the to_s method. He gives this example:
puts 1000.to_s
puts [1, 2, 3].to_s
puts ({ :name => 'Fred', :age => 10 ...
-3
votes
3answers
78 views
Ruby Syntax “:attr =>” vs. “attr:”? [closed]
Is this code aquivalent
class Product < ActiveRecord::Base
validates :legacy_code, :format => { :with => /\A[a-zA-Z]+\z/,
:message => "Only letters allowed" }
end
to this code:
...
1
vote
2answers
73 views
How do I see all the methods/ properties in Object Class
I have started learning Rails 3.0 and decided to spend sometime learning Pure Ruby 1.9 and wonder if there is a way to View the Object Class since it is always available. Like is there a command that ...
1
vote
2answers
460 views
How MATURE is Ruby 1.9.3 on Ubuntu 12.04 [closed]
Does anyone have a good guide to installing ruby 1.9.3 on Ubuntu that does use RVM? I have been developing in 1.8.7 for about a year, and am wanting to ugprade to 1.9.x.
After spending countless ...
0
votes
1answer
143 views
internal server error (500) in development mode, no debug page or log output in rails: utf-8
rails app in development mode gives internal server error and not the usual error page with trace. no info in log/development.log either. no matter what server. on any request.
What is wrong?
4
votes
2answers
570 views
Rubinus or MRI 1.9.3 (YARV)?
So, I have a few questions that I have to ask, I did browse the internet, but there weren't too many reliable answers. Mostly blog posts that would cancel each-other out because they both praised ...
0
votes
1answer
264 views
Nil can't be coerced into Fixnum
I have the following function:
def valid_credit_card?(number)
digits = number.scan(/./).map(&:to_i)
check = digits.pop
sum = digits.reverse.each_slice(2).map do |x, y|
[(x * ...

