Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in the 1990s.
8
votes
4answers
2k views
Error while installing Ruby 1.9.3
I have an error while installing Ruby 1.9.3 through rvm.
rvm install 1.9.3-p0
Installing Ruby from source to: /home/alder/.rvm/rubies/ruby-1.9.3-p0, this may take a while depending on your cpu(s)...
...
7
votes
1answer
748 views
Ruby 1.9.3 breaks rake test
I have an existing rails 3 project that works just fine on ruby 1.9.2-p290. However upgrading to ruby 1.9.3-p0 causes rake test to spit out the following error:
...
6
votes
1answer
37 views
Blocks and objects
I have an object like this
class SomeObject
def initialize &block
# do something
end
end
class AnotherObject < SomeObject
def initalize &block
super
# do something with ...
6
votes
5answers
856 views
ruby_threadptr_data_type error
I'm starting up a new rails app with the latest version of rails (3.1.3). Rails crashes when I try to start up the server. First I fixed this bug, and now I'm getting this one
...
5
votes
2answers
68 views
Why can I assign an undefined variable to itself in Ruby and get nil? [closed]
Possible Duplicate:
Why a = a is nil in Ruby?
There's a, shall we say, "odd phenomenon" in Ruby with using undefined variables. It's like this:
# irb session follows
#
foo # ...
4
votes
1answer
61 views
Omission of curly braces for a hash in an array
I realized that the curly braces for a hash can be omitted if it is the last element in an array. For example, the forms:
[1, 2, 3, :a => 'A', :b => 'B']
[1, 2, 3, a: 'A', b: 'B']
seem to be ...
4
votes
1answer
225 views
How parallel are parallel tests in Ruby 1.9.3?
In Ruby 1.9.3, you're allowed to run multiple test cases at once. I'm not sure whether this is a feature of the language, the minitest library, or a feature of YARV, so apologies for any bad ...
3
votes
2answers
61 views
Negative object id
I seem to be getting negative values for object_id for some objects. Is this correct? If so, when is a ruby object's object_id negative?
3
votes
3answers
66 views
Reordering an array in the same order as another array was reordered
I have two arrays a, b of the same length:
a = [a_1, a_2, ..., a_n]
b = [b_1, b_2, ..., b_n]
When I sort a using sort_by!, the elements of a will be arranged in different order:
a.sort_by!{|a_i| ...
3
votes
3answers
467 views
Is it possible to run my Rails app on Heroku with Ruby 1.9.3? If so, how?
I tried this tip: https://github.com/thoughtbot/laptop/pull/14#issuecomment-3192270 .
On deploy I see
-----> Using RUBY_VERSION: ruby-1.9.3-p0
But my logs show the environment variable is not ...
2
votes
6answers
151 views
How to traverse this hash within one line?
Each key in a hash has a value that's also a hash.
{
100 => {
1 => 'ruby',
2 => 'enumerables'
},
50 => {
3 => 'can',
4 => 'cause'
},
...
2
votes
2answers
790 views
Update Rails app to use 3.2.0.rc2
Mac OS 10.7.2, Xcode 4.2.1, rvm 1.10.1 using ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin11.2.0]
After createing a brand new rails app Following the official rails blog post, attempting to ...
2
votes
1answer
243 views
Error installing ruby 1.9.3 from rvm on ubuntu 11.04
Error
ruby-1.9.3-p0 - #extracted to /home/bhaarat/.rvm/src/ruby-1.9.3-p0
Fetching yaml-0.1.4.tar.gz to /home/bhaarat/.rvm/archives Extracting
yaml-0.1.4.tar.gz to /home/bhaarat/.rvm/src ...
2
votes
3answers
220 views
gem install pg can not bind to libpq
After upgrading to Ruby 1.9.3 (from 1.9.2 using system RVM) on Ubuntu 10.04.3, I removed all of my gems, and attempted to reinstall pg (ala bundle install pg).
It then threw an error and informed me ...
2
votes
1answer
84 views
Convert a string to regular expression ruby
I need to convert string like "/[\w\s]+/" to regular expression.
"/[\w\s]+/" => /[\w\s]+/
I tried using different Regexp methods like:
Regexp.new("/[\w\s]+/") => /\/[w ]+\//, Similarly ...
2
votes
2answers
163 views
Ruby 1.9.3-p0 and RSpec causes frequent segmentation faults
Is it just me, or has Ruby 1.9.3 introduced frequent segmentation faults when running RSpec?
Since upgrading to 1.9.3, I find startup time is noticeably quicker, however I get segmentation faults ...
2
votes
1answer
420 views
Rails 3.1.1 test:benchmark on Ruby 1.9.3
I'm trying to use rake test:benchmark with Rails 3.1.1 and Ruby 1.9.3
I already tried the latest rake version: gem 'rake', '~> 0.9.3.beta.1'
and both the official and suggested ruby-prof gem: gem ...
1
vote
2answers
25 views
Paper clip mutiple files
I'm trying upload multiple files to an event.
Everything works except for the view. There are no fields showing for choosing files.
<%= form_for @event, :html => {:multipart => true} do |f| ...
1
vote
1answer
47 views
rails 3.2 and machinist issues
I've just upgraded to Rails 3.2.1 with Ruby 1.9.3-p0 and I'm using Machinist 2.0. Before updating a large project all my tests passed. The problem I"m having is when I create a blueprint within a ...
1
vote
1answer
109 views
ruby-debug-base19-0.11.26 installation errror
I'm trying to get ruby-debug working with ruby 1.9.3 and rails on OSX Lion.
I've been following http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug , but my problem is I can't get ...
1
vote
3answers
590 views
install ruby 1.9.3 using rvm on ubuntu
I have already installed rvm and ruby 1.9.2, both working properly.
Using rvm version 1.10.2.
I previously installed the rvm packages readline/zlib, but now I'm having big troubles with readline now.
...
1
vote
1answer
72 views
Can't deploy Rails app via Capistrano
I try to run my first Rails 3 app on vds. So, i decided to use capistrano for that. Also i have Phusion passenger, Nginx, RVM and ruby 1.9.3 there.
I use this link as tutorial - ...
1
vote
1answer
318 views
Why do I get an error installing Ruby 1.9.3 using rvm on ubuntu 11.04?
I have no Rubies install on the system through rvm:
~ % rvm list
rvm rubies
I have 1.8.7 installed on the system:
~ % which ruby
/usr/bin/ruby
~ % ruby -v
ruby 1.8.7 (2010-08-16 patchlevel 302) ...
1
vote
3answers
442 views
Unable to install gem ruby-debug19 on win7 with installd ruby 1.9.2 and 1.9.3
I've tried many solutions but nothing seems to work!
I use Ruby 1.9.3 and Rails 3.1.3 and I want to install the ruby-debug19 gem. This ist what I get from the PowerShell:
PS C:\Users\**\**\**> gem ...
1
vote
1answer
54 views
Type casting in Fixnum ** Fixnum
In ruby-doc, it says that <Fixnum> ** <Numeric> may be fractional, and gives the examples:
2 ** -1 #=> 0.5
2 ** 0.5 #=> 1.4142135623731
but on my irb, it sometimes gives a ...
1
vote
1answer
41 views
Unexpected behavior from Ruby 'super' keyword - Nokogiri inheritance
The rules of Ruby's super keyword is that if it is called without arguments, all of the original arguments are forwarded. If it is called with explicit arguments, the explicit arguments are ...
1
vote
1answer
98 views
How to use Array#sample(n, random: rng) syntax?
The documentation for Array#sample says it can take an rng:
If rng is given, it will be used as the random number generator.
How can a range function as a random number generator, or why is such ...
1
vote
2answers
287 views
Why is REE faster than 1.9.3 at executing RSpec?
I've always thought that 1.9.x was supposed to be faster than REE, but consuming more memory. But as it was recently pointed out to me, REE is actually faster than executing RSpec specs, and by a huge ...
1
vote
2answers
257 views
upgrading to ruby 1.9.3 with rvm breaks my rails app
I have upgraded ruby using the following commands with rvm:
rvm get head
rvm install 1.9.3
rvm reload
rvm use 1.9.3 --default
Now when I run rails s I get the following error message:
...
1
vote
4answers
708 views
Error installing ruby 1.9.3
I'm trying to install ruby 1.9.3 using rvm. However, when I type:
rvm install 1.9.2
I get the following error:
ERROR: Error running 'make ', please read ...
0
votes
0answers
4 views
Rails 3 and crontab - Crontab log is empty
I implemented gem whenever in my ruby on rails app. This gem generated config file and i have such data there:
config/schedule.rb
set :output, "/vol/www/apps/logs/cron_log.log" ...
0
votes
0answers
17 views
rails 3.2.1 very slow in development mode
Since i upgrade my app on my development server, the request are terribly slow. Event if the log seems to render quite quickly, it take 10-15 second for the loading to be complete (event if the page ...
0
votes
1answer
23 views
Constant Global object on a Ruby on Rails server
Working with Rails 3.2.1 and Ruby 1.9.3, where is the proper place to initialize a Global constant object such that it is only initialized once when the rails server is started.
Right now I am ...
0
votes
2answers
58 views
Error running 'bundle install' using Ruby 1.9.3
I'm going through the second edition of Ruby on Rails Tutorial (http://ruby.railstutorial.org/). I'm following each step, so I'm using Ruby 1.9.3 and when I run 'bundle install' inside my Rails ...
0
votes
0answers
17 views
Rails 3.1 video streaming - RoutingError
I try to implement streaming video on my wev-app. For that i use Rails 3.1 and JW Player.
I repeated things as in Readme:
1) Include the jwplayer.js in the head of your webpage:
...
0
votes
1answer
15 views
Flash video in Ruby on Rails 3 application
I want to play flash video (lets suppose that i already have file with name "something.flv") in my RoR application. I want to have box with start/stop buttons and video inside of that box. Please, ...
0
votes
1answer
34 views
Is it effcient to use a splat operator in a constructor?
In a constructor, it often happens that you want to turn the arguments into instance variables. A naive way to do it is:
class A
def initialize a, b, c
@a, @b, @c = a, b, c
end
end
...
0
votes
1answer
22 views
Is is possible to update ruby to version ruby 1.9.3 with rails 2.3 project (existing code)
Is it possible to update ruby to version ruby 1.9.2 with rails 2.3.11 project (existing code).
0
votes
0answers
13 views
On ruby-1.9.3 getting OpenSSL::SSL::SSLError from net-https (Mac OSX 10.6)
I have seen a lot of people with this error and no solution seems to fix it for me:
ruby-1.9.3-p0/lib/ruby/1.9.1/net/http.rb:799:in `connect': SSL_connect returned=1 errno=0 state=SSLv3 read server ...
0
votes
2answers
56 views
How to disable warning for a particular file
Is there are way to disable warning: already initialized constant when loading particular files?
0
votes
2answers
32 views
How do I add encoded query values to a URL?
I am looking for a convenient and functional way to add encoded values to a URL query string in Ruby.
Currently, I have:
require 'open-uri'
u = URI::HTTP.new("http", nil, "mydomain.example", nil, ...
0
votes
2answers
50 views
Class (Type) checking
Is there a good library (preferably gem) for doing class checking of an object? The difficult part is that I not only want to check the type of a simple object but want to go inside an array or a ...
0
votes
2answers
29 views
Number extends Module and when in Module's Extended Method
When an instance of an object extends a module and extended is called on the module does the base already extend module?
module M
def self.extended base
# when this is called has base extended
...
0
votes
1answer
67 views
Padrino with RVM gemsets: uninitialized constant ActiveSupport::Deprecation
I'm getting an error trying to run an app, not even trying to do anything sophisticated either, just get the basic thing running... Just wondering if anyone can give me any pointers as to how to debug ...
0
votes
0answers
51 views
Strange OpenSSL availability issue. Setup: Leapord 10.5.8 | RVM | Ruby 1.9.3 | Rails 3.1.3
I have been exploring Rails & have just started building a Facebook tab application.
I selected using the fb_graph gem, as I saw nov keeps it really well updated!
But, this is giving me good ...
0
votes
2answers
37 views
Inside a thread
In the following code, I expect 1000 lines of 'a' to be printed, but it does not output anything. Without Thread.new{ and }, it works. What am I doing wrong?
Thread.new{1000.times{puts 'a'}}
0
votes
1answer
51 views
Thinking sphinx doesn't start - “Failed to start searchd daemon”
I try to start thinking sphinx on my server but it doesn't want to work.
I do:
$ rake thinking_sphinx:index && rake thinking_sphinx:start
And i get:
Generating Configuration to ...
0
votes
2answers
28 views
How to refer to the current thread
When I want to refer to the current thread within the environment of a thread, several strategies seem to work:
t = Thread.new{p t}
Thread.new{|t| p t}
Thread.new{p Thread.current}
Thread.new{p ...
0
votes
2answers
81 views
error while installing rails and sqlite3
Following this tutorial here, to install ruby on rails on ubuntu 11.10 with sqlite3
when I run the following command
sudo gem install rails
I get the following error :
ERROR: Could not find a ...
0
votes
0answers
35 views
Mechanize: undefined method 'info' for Nil class in Ruby 1.9.3
I'm trying to use the Ruby gem Mechanize in an app I'm building, but I'm getting an error.
Performing the following in IRB with Ruby 1.9.3-p0:
require 'Mechanize'
agent = Mechanize.new
page = ...