For issues relating to developing in Ruby, version 1.9.3.
0
votes
0answers
4 views
How can I get around the “entity expansion too large” error in Ruby 1.9.3-p392?
I have looked at this SO answer, which says the new limitation can be overcome with this:
REXML::Document.entity_expansion_text_limit = <some large number>
Unfortunately, that doesn't work ...
-1
votes
1answer
21 views
Can't install the pg gem
On Mac OS X 10.6.8, I get the following error when trying gem install pg. Trying to push my Rails website to Heroku. A pretty standard install of Ruby 1.9.3p194.
$ cat ...
1
vote
1answer
14 views
Nginx + passenger segmentation fault error
I'm experiencing a segmentation fault error on an nginx server handling a rails 3.2 application.
I tried to update all the application gems, tried to update nginx to the latest version but without ...
0
votes
1answer
28 views
ERROR — : reaped #<Process::Status: pid 4335 exit 1> worker=0
I am trying since 2 days to deploy on my vps (Ubuntu 12.04 Server (64 bits)) using : ruby (1.9.3-rc1), rails, capistrano, nginx and unicorn.
I also follow railscast tutorial from Ryan Bates showing ...
0
votes
0answers
38 views
Optimize LDAP Active Directory search filter query for user email using a substring
In my Rails 3.2.11 app(using ruby 1.9.3-p327) I'm trying to search for users in AD LDAP by their email.
I am using net-ldap 0.2.2 gem .
The current filter that I'm using is:-
filter = ...
0
votes
0answers
14 views
rails generate broken with NoMethodError
I am having some troubles with my Rails environment - running a command like:
$ rails generate scaffold_controller model_name
results in the following trace:
...
0
votes
0answers
9 views
Ruby CSV library: CSV::Table push method usage outputs data in improper format
1.9.3dev :078 > header = CSV::Row.new(['Date', 'Meals'], [], true)
=> #<CSV::Row "Date":nil "Meals":nil>
1.9.3dev :079 > table = CSV::Table.new([header])
=> ...
0
votes
0answers
9 views
Weird calculation in ruby 1.9.3
I've recently upgraded one of my old rails project from 1.8.7 to 1.9.3, then I ran into the following problem:
When I'm doing the calculation 188 * 0.01, it returns 1.8800000000000001 instead of ...
1
vote
1answer
110 views
quote_char causing fits in ruby CSV import
I have a simple CSV file that uses the | (pipe) as a quote character. After upgrading my rails app from Ruby 1.9.2 to 1.9.3 I'm getting an "CSV::MalformedCSVError: Missing or stray quote in line 1" ...
1
vote
0answers
58 views
Problems with god
So I have problems starting god reliably. I might need to restart multiple times before everything succeeds.
OSX 10.6.8
Ruby 1.9.3-p236
god 0.13.2
I have a configuration file where I specify ...
0
votes
1answer
30 views
Mac Automator (OS 10.7) not reading Ruby 1.9.3?
I have some Ruby code in a .rb file that I am trying to run with Automator as opposed to the Command Line. Here is a sample of the code (filename is "filelines_revise.rb"):
lines = ...
0
votes
1answer
33 views
typo, push to heroku, Invalid RUBY_VERSION specified:
Getting message
Invalid RUBY_VERSION specified: Unfortunately,-a-fatal-error-has-occurred.-Please-see-the-Bundler-troubleshooting-documentation-at-http://bit.ly/bundler-issues.-Thanks!
! Valid ...
0
votes
1answer
16 views
How to run tests in order they are written?
I am trying to write test for testing sphinx search. I need user to pass some params to api, and based on that params shpinx to perform search.
I have following 3 test
in test_helper.rb I have ...
1
vote
0answers
97 views
Is it possible to setup Octopress on Windows 7 and Ruby 2.0.0? [closed]
Is it possible to setup Octopress on Windows 7 and Ruby 2.0.0?
Or- am I forced to install Ruby 1.9.3 ?
I have at work - Windows 7 64.
Thanks...
0
votes
1answer
55 views
Ruby on Rails/Rack Builder “Use” Method Wrong Number of Arguments
I am new to Ruby and Rails. I am playing with Rack, trying to get a basic understanding of this peice of the Rails puzzle, following along with Rob Conery in his Tekpub/Rails 3 tutorial vid.
...
0
votes
0answers
13 views
Trouble Calling the draw_quad Method from Another Class in Gosu
I don't get any complaints from Ruby or Gosu, but this code does not actually draw the quad to the screen. Note: I'm of course calling map.new(...).draw in the main Gosu draw method.
...
0
votes
0answers
16 views
What is the difference between TCPServer.new(port) and TCPServer.open(“X.X.X.X”, port) in Ruby?
I've read the Ruby documentation but I didn't really get what the difference is between these two objects.
TCPServer.new(port) and TCPServer.open("X.X.X.X", port)
All I know is that .new only ...
0
votes
0answers
26 views
Error while trying to update to ruby 1.9.3 on mountain lion
I am trying to update ruby from 1.8.7 to 1.9.3 on mountain lion. I have rvm 1.19.5 installed, and when I type "rvm install 1.9.3" I get this error:
You requested building with '/usr/bin/gcc-4.2.1' ...
0
votes
1answer
25 views
What really do ObjectSpace._id2ref method return?
I have an example:
def a
puts "Hello"
end
r = ObjectSpace._id2ref(a.object_id) # r is a reference to a
r == a #=> true
r #=> nil
Why then it is impossible to call a with r?
0
votes
1answer
38 views
High CPU Usage in Gosu Drawing Program with Ruby
I have been tinkering with making a drawing application in Gosu using Ruby, but am running into some high CPU usage. I know one possible cause.
First, I am simply adding a primitive to an hash every ...
0
votes
1answer
50 views
Rails model is not setting attribute
am very new on rails development
Rails 3.2.13 / ruby 1.9.3
I have this model
class Post < ActiveRecord::Base
attr_accessible :content, :title
attr_accessor :testing
def asignar
...
-1
votes
2answers
63 views
ruby arrays can each_with_index do steps?
I have a txt file of records:
firstname lastname dob ssn status1 status2 status3 status4 firstname lastname dob ...
I can get this into an array:
tokens[0] = firstname
...
tokens[8] = firstname ...
0
votes
1answer
74 views
Using Socket and Threads Why Is my Chat Server so Slow and CPU Usage so High?
So my code works fine except for when iterating through arrays and sending a response to multiple chat clients the latency between each client's reception of the response is nearly a second. I'm ...
1
vote
1answer
57 views
SSL Connection error in Ruby 1.9.3-p392+
In Ruby 1.9.3-p385 or earlier, I can successfully run the following piece of code:
require 'uri'
require 'net/http'
uri = URI('https://secure.example.com')
http = Net::HTTP.new(uri.host, uri.port)
...
1
vote
1answer
32 views
Segmentation fault after launch rspec test
We're working in a RoR app (Ruby v. 1.9.3, RoR v. 3.2.12, rvm v. 1.8.14) and when we launch a rspec test, we obtain the following crash (I can't copy here, it's too long):
...
2
votes
2answers
112 views
Why python implementation of miller-rabin faster than ruby by alot?
For one of my classes I recently came across both a ruby and a python implementations of using the miller-rabin algorithm to identify the number of primes between 20 and 29000. I am curious why, even ...
4
votes
1answer
1k views
What are the major differences between Ruby 1.9.3 and Ruby 2.0.0 [closed]
Just wondering what the differences between the two distributions of MRI Ruby are. Should I use this in production code, etc.
Thanks!
4
votes
2answers
166 views
Rails/Rack: “ArgumentError: invalid %-encoding” for POST data
Our ruby on rails site has a URI that one of our partners POSTs XML data to.
Since we don't want to deal with XML, we literally just stuff the raw data into a database column and don't go any further ...
3
votes
2answers
59 views
Random permutation iterator
Need to augment Enumerable module with new iterator, that returns elements of collection in random order. The only information about collection - it responds to each. No other assumptions about ...
0
votes
1answer
72 views
Passenger using Ruby system version instead of Ruby from RVM
I'm using RVM (1.19), Passenger (3.0.19), Apache on a Debian environment.
I tried update the ruby version from 1.8.7 to 1.9.3 using RVM. The following steps were executed:
rvm install 1.9.3
rvm ...
0
votes
1answer
92 views
“bad ecpoint” SSL error on fresh RVM Ruby 1.9.3 install on OSX Mountain Lion
Trying to use Ruby 1.9.3 & rest-client to make https requests like:
RestClient.get('https://google.com')
always gives me a SSL error,
OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 ...
0
votes
2answers
2k views
Problems installing Ruby 1.9.3 with Rvm
I am trying to install ruby 1.9.3 using this guide: http://www.moncefbelyamani.com/how-to-install-xcode-homebrew-git-rvm-ruby-on-mac/.
When I run rvm install 1.9.3 I get this error
Searching for ...
1
vote
1answer
784 views
Can't install Ruby 1.9.3 via rvm in OS X Lion even with “--with-gcc=clang”
I've been checking other questions around here from people having trouble installing ruby 1.9.3 in Lion with RVM, problem seemed equal to mine so I tried solutions provided with no success:
I first ...
0
votes
0answers
134 views
error when I run 'bundle install' on Windows
I got this error while running bundle install, I'm using Ruby 1.9.3
Fetching source index for https://rubygems.org/
C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/net/http.rb:799:in connect': ...
0
votes
1answer
62 views
Confusion with Ruby's `GC#start`
Program - I
p RUBY_VERSION
a = "A"
b = "B"
p "#{a}"
p "#{b}"
p "Garbage Count => #{GC.count}"
b = "D"
p "Garbage Count => #{GC.count}"
GC.start
p "Garbage Count => #{GC.count}"
p ...
0
votes
1answer
44 views
Why does `ObjectSpace._id2ref` give different outputs on Ruby 1.9 and Ruby 2.0?
Why does ObjectSpace._id2ref give different outputs on Ruby 1.9 and Ruby 2.0?
Ruby 1.9.3p392 i386-mingw32
class Foo ; end
Foo.object_id #=> 17569464
...
0
votes
2answers
38 views
Confusion with instance variables object id allocation in Ruby
I was trying to understand the instance variable initialization and declaration. Doing so I tried the below code. But in the half of my thinking path,I got something interesting as below:
class ...
1
vote
1answer
57 views
Where does `singleton` methods reside in Ruby?
I was playing with singleton class in my IRB. And doing so tried the below snippets.
class Foo ; end
#=> nil
foo = Foo.new
#=> #<Foo:0x2022738>
foo.define_singleton_method(:bar , ...
1
vote
2answers
92 views
How does the `Object#define_singleton_method(symbol, method)` works in ruby?
From the Doc of define_singleton_method
I got two syntax to define the singleton method as below :
define_singleton_method(symbol) { block } -> proc :
With the above syntax I tried the below ...
0
votes
1answer
31 views
Couldn't understand the difference between Object#taint and Object#trust in Ruby
How does the below Object#methods differs from each other?
taint and trust
untaint and untrust
0
votes
1answer
35 views
How to pass a string var into Hash#rassoc?
I'm trying to get key by value, but want to set a request dynamic throw the string variable.
presidents = { 1 => "Washington", 2 => "Adams", 3 => "Jefferson" }
request1 = gets
request2 = ...
0
votes
1answer
85 views
Rails link_to Non-Resourceful Route with String Parameter
I'm working on a flight tracking application in Ruby (1.9.3) on Rails (3.2.11). This application has a Flight class, which has, among other things, a string column tail_number to track the tail number ...
0
votes
2answers
155 views
RSpec should_receive not reaching method in class
New to ruby/rspec and trying to test that a method raises an exception. I may be going about this entirely incorrectly.
#require 'rspec'
describe "TestClass" do
it "should raise exception when my ...
0
votes
0answers
52 views
Automatic downloading stopped due to the proper MIME type mismatch
I have written one script to download files automatically from the web as below:
#Automatically download files to a given folder profile settings
...
0
votes
1answer
21 views
Force order on a result return from ActiveRecord
I have the following Array (for example):
array = [234,675,11,233,99]
I than Run something like the following ActiveRecord Query:
User.where(id: array)
Array returned will be randomly ordered.
...
4
votes
1answer
158 views
Why am I getting segmentation fault errors in Ruby?
While running RSpec, sometimes I am getting the following error. Simply saving the file runs RSpec and sometimes it disappears.
[BUG] Segmentation fault
ruby 1.9.3p374 (2013-01-15 revision 38858) ...
2
votes
2answers
232 views
implement a rails before_filter in ruby without rails
I am using g a logger in all of my classes.
I want each msg to begin with class name and method name like so:
Class_name::Method_name
this is what i'm doing now :
class FOO
def initialize
end
...
0
votes
4answers
54 views
Why does Array#shuffle! not work with the nested array?
Here I was trying to see how Array#shuffle! works with array objects. So I started playing with it in my IRB:
[1,2,3]
#=> [1, 2, 3]
[1,2,3].shuffle!
#=> [3, 1, 2]
In the above code I ...
0
votes
1answer
141 views
How to play a wav file in Ruby?
What is a good way to play an audio file from Ruby that is wav format?
OSX or Ubuntu...
Ruby 1.9.3
2
votes
2answers
156 views
Ruby 1.9.3 add unsafe characters to URI.escape
I am using Sinatra and get parameters from the url using the get '/foo/:bar' {} method. Unfortunately, the value in :bar can contain nasty things like / which leads to an 404, since no route matches ...


