For issues relating to developing in Ruby, version 1.9.2.
1
vote
1answer
105 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" ...
3
votes
0answers
81 views
DBI::InterfaceError: Could not load driver (uninitialized constant MysqlError)
I have included gems,
dbd-mysql (0.4.4)
dbi (0.4.5)
mysql (2.8.1)
on rails console when I run the following code,
require 'rubygems'
require "dbi"
require 'dbd-mysql'
dbh = ...
0
votes
1answer
37 views
Should I use Net::HTTP when I want to make POST request to an action
I have an action create and another action register_and_create. The first creates subscription and the seconds creates user and subscription. But I will have to copy the code of create action in ...
0
votes
0answers
73 views
How to to create a download link to a file in the rails app, then send the link in email
I am trying to create a download link to download a file that's listed in the public folder of the app. I want to be able to send this link by email so the user can can click on the link and download ...
0
votes
1answer
77 views
rails webrick httpserver encoding issue
I was trying to open a small and simple http server to share some files on LAN (or online on public IP). On a bit of research i found python -m SimpleHTTPServer does the job but it has horrible ...
0
votes
1answer
56 views
undefined method `selector' for #<ActiveRecord::Relation:0xbb8710c> when using mongoid to save a record
undefined method `selector' for #<ActiveRecord::Relation:0xbb8710c>
I am getting this error while trying to execute the follwoing code:
c = Content.first
c.is_processed = true
c.save # or ...
0
votes
0answers
29 views
Maven to Generate Documentation for Ruby Code
I have a multi-module maven project heavily with java modules (I have about 10 java modules).
For this project, recently we started writing tests using ruby, cucumber and feature files. Now, I want ...
0
votes
1answer
161 views
Getting error installing ruby 1.9.2-p320 using RVM
I am running Fedora 18 on x86-64 architecture. I am able to install Ruby 1.9.3 using RVM. But, when I try to install Ruby 1.9.2, it's giving me following error:
ruby-1.9.2-p320 - #extracting ...
1
vote
1answer
57 views
functional test sending file data in params fails after moving from 3.0 / 1.8.7 to 3.2 / 1.9.2
I am migrating a rails 3.0 app on ruby 1.8.7 to a 3.2 app on 1.92. All tests are passing but one. There is a lot of text below, but the problem is not complicated to see. I just had to be a little ...
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 ...
1
vote
1answer
256 views
Heroku: bash: bundle: command not found
My heroku deployment is crashing with following errors.
2012-12-12T17:16:18+00:00 app[web.1]: bash: bundle: command not found
2012-12-12T17:16:19+00:00 heroku[web.1]: Process exited with status 127
...
2
votes
0answers
43 views
How to run rails 2.2.2 application with ruby 1.9.2
I have an existing rails application in Rails 2.2.2 version using Ruby 1.8.6 (MRI).
Can anyone please let me know that, how to run the application using Ruby 1.9.2. As, it is mandatory for me to run ...
1
vote
1answer
361 views
How to set Padding Mode with Ruby/OpenSSL decryption / encryption?
I am starting with the following C# encryption code, and want to decrypt with Ruby. My problem is that I don't know how to set the padding mode in Ruby/OpenSSL. I specifically need to use PKCS7.
C# ...
1
vote
0answers
40 views
RoR not creating nested record on before_save
I have a model Site which has_many photos.
In site model I have
before_save :defaults
def defaults
if self.photos.length ==0 && !SiteDefault.default_photo.nil?
photo = Photo.new
...
1
vote
1answer
47 views
How to convert string containg comma into array in ruby 1.9.2?
I have a string like below
"\"123\",\"Columbia, Gem Of The Ocean\""
I want to convert it into array and I should get an output like below
["123","Columbia, Gem Of The Ocean"]
But when i use ...
9
votes
2answers
3k views
Error installing debugger-linecache: ERROR: Failed to build gem native extension
I am trying to bundle install but it is showing the above error or debugger..Please find the detailed error from the terminal
Installing debugger-linecache (1.1.1) with native extensions ...
0
votes
1answer
33 views
Class variable is getting overridden
I've run into a weird problem using hashes as a class variable. After I run the following code, I expect that the class variable @@class_hash should contain {:one => {'a' => 'one'}, :two => ...
3
votes
2answers
191 views
Ruby to_s conversion to binary (Splat operator in argument)
If I run the following code, the first two lines return what I expect. The third, however, returns a binary representation of 2.
2.to_s # => "2"
2.to_s * 2 # => "22"
2.to_s *2 # => ...
0
votes
1answer
193 views
I cant install oj ruby gem on windows 7 64
I tried to install oj ruby gem
gem install oj -v '1.3.5'
Here's the output log
C:/Ruby192/bin/ruby.exe extconf.rb
Creating Makefile for ruby version ...
7
votes
1answer
352 views
Ruby zerofill a string
Formating an Integer to be filled with zeros is easy in Ruby:
sprintf( "%010d", 345 ) #=> "0000000345"
But when I try to fill a String with zeros I can't find an easy solution:
sprintf( ...
0
votes
1answer
110 views
Paperclip generating wrong URLs in Heroku
Paperclip is generating wrong URLs in Heroku.
I have an Audio model which has a mp3 field as follows:
class Audio < ActiveRecord::Base
has_attached_file :mp3,
:storage => :s3,
...
12
votes
4answers
922 views
Rails server won't start because of new relic error
When I try to start my Rails server, I am getting the following error:
I am using ruby 1.9.2
=> Booting WEBrick
=> Rails 3.1.8 application starting in development on http://0.0.0.0:3000
...
0
votes
1answer
146 views
RSpec testing work with files: Errno::EACCES
I'm currently issuing a problem with running tests with rspec. All the test files (*_spec.rb) may run successfully. In same rare cases an error -- Errno::EACCES may appear and one of the tests may ...
0
votes
0answers
50 views
Time.zone.at different from Time.zone in Ruby On Rails 3
Here is what I am doing in console:
1.9.2p290 :018 > Time.zone = 'Brasilia'
=> "Brasilia"
1.9.2p290 :020 > Time.zone.now
=> Fri, 17 Aug 2012 13:08:06 BRT -03:00
1.9.2p290 :021 > ...
0
votes
1answer
95 views
Ruby on Rails Time.zone.now
I am using Time.zone.now to get the user's time.
I think that this is wrong. Can you confirm that it is wrong? How can I get the user's time?
Who is setting Time.zone on my server?
3
votes
2answers
148 views
Ruby: code “updgrading” from 1.8.6 to 1.9.2
i'm interested in updating code which is written in ruby v1.8.6 to 1.9.2. Are there any useful links to read about (probably with some warnings and recommendations)?
Just to be clear, so, i'm not ...
0
votes
2answers
576 views
I can't install ruby 1.8.7
I want to install ruby 1.8.7 and uninstall ruby 1.9.2 from main. Please don't suggest rvm as I do have that. But ruby 1.9.2p0 is sticked to my system.. I tried sudo apt-get remove ruby, it removes ...
0
votes
1answer
63 views
Can I set $? in a test?
I have a Ruby program. That program goes
IO.popen('blah') { ... }
if $?.success?
...
Most of the time $? is a Process::Status object. Occasionally it's nil instead. That crashes the program. ...
1
vote
1answer
63 views
Is it possible to check to the position of an iterator in Ruby?
Is there a way to get the position of an iterator (how many times it has iterated)?
values = (1..100)
values.each do |value|
if ... % 10 == 1 then puts iterator.count end
end
Or do you have to ...
3
votes
4answers
2k views
Heroku db:pull Taps Load Error: no such file to load — pg
I have gotten the following errors using ruby 1.9.2-p320 with Heroku's Taps-using 'db' commands such as:
heroku db:pull --app my-app
Which produces errors like:
Taps Load Error: no such file to ...
0
votes
2answers
347 views
How to overload contructor in Ruby? [duplicate]
Possible Duplicate:
In Ruby is there a way to overload the initialize constructor?
BigDecimal does not take a float as in initial value, so I am writing a constructor to handle it. It seems ...
0
votes
1answer
145 views
Ruby: How to get colors in testrb
Is there any way to get colors via testrb that does not involve adding test-unit to the gemfile and using bundle exec on 1.9 (everything colored in 1.8)?
ruby test/xxx_test.rb -> colors
testrb ...
0
votes
0answers
68 views
No definition for ossl_*
Installing Ruby 1.9.2 from source on ARM Linux.
Runing make throws bunch of No definition for ossl_*
I'm not sure what that means. OpenSSL is installed in /opt/bin
After installing openssl is not ...
3
votes
1answer
198 views
Can I reference a complete Ruby Net::HTTP request as a string before sending?
I'm using Net::HTTP in Ruby 1.9.2p290 to handle some, obviously, networking calls.
I now have a need to see the complete request that is sent to the server (as one long big String conforming to HTTP ...
1
vote
2answers
1k views
Initialising new rails project after upgrading to Ruby 1.9.3
I have been working on Ruby on rails project for a while now, when I followed the instructions in the newest instalment of Agile Web Development in Rails and installed the newest edition of Ruby. ...
3
votes
1answer
317 views
rake asset:precompile takes 28 minutes on 1.9.2
I have a pretty large rails app (Rails 3.2.3), using the asset pipeline. There are are quite a few files in the assets folder.
Under 1.8.7, running rake assets:precompile takes 4 minutes. This is ...
2
votes
1answer
794 views
Can't remove bundler in RVM
I have 1.9.2 Ruby installed in RVM. When I do a gem list I get this:
bundler (1.1.3)
When I try to remove it I get:
gem uninstall bundler
INFO: gem "bundler" is not installed
When I try to run ...
0
votes
0answers
102 views
Segmentation Fault Error wrt RedCloth and Ruby Debug gem
I tried to run a very basic command to view my Routes wrt all controller actions, using rake routes . I get the below error
...
1
vote
2answers
434 views
key in ruby new hash
There is a weird issue with Ruby 1.9.2's new hash syntax. How can I put any Object as key in hash in 1.9.2?
in 1.8.7 hash it works:
a="b"
{"a" => "some",a => "another value",:a => "3rd ...
0
votes
0answers
44 views
Unexpected error in Sinatra
In sinatra, I am executing this piece of Code containing values in Hash object:
@posts[0]["attachment"]["media"][0]["href"] # where @posts belongs to Koala::Facebook::API::GraphCollection class
...
0
votes
0answers
225 views
Rails stopped working. localhost:3000 shows ArgumentError on rails server startup
I did something really, really dumb: I attempted to upgrade the version of Rails my project is using simply by entering in a new version and restarting the server. Yes, incredibly stupid. Well, as ...
4
votes
1answer
2k views
capybara - Find with xPath is leaving the within scope
I am trying to build a date selector with Capybara using the default Rails date, time, and datetime fields. I am using the within method to find the select boxes for the field but when I use xPath to ...
0
votes
2answers
854 views
Regular Expressions with lookahead in Ruby
My current regex battle is replacing all commas before a number in a string. The regex must then ignore all following commas. I've been screwing around on rubular for about an hour and can't quite ...
1
vote
2answers
190 views
How to print a string with a backward slash in Ruby
I have a string str = "xyz\123" and I want to print it as is.
The IRB is giving me an unexpected output. Please find the same below:-
1.9.2p290 :003 > str = "xyz\123"
=> "xyzS"
1.9.2p290 ...
0
votes
2answers
107 views
How to get the max of an arbitrary function in Ruby?
Consider some function foo:
def foo(input)
input * 2
end
How to get the max value of input for some array a?
a = [3, 5, 7, 9, 6]
Something like the following (which doesn't work) should return ...
0
votes
2answers
365 views
How to get the size of browsing window in width and height using ruby code
I want retrieve the width and height of browser in pixel(px) using ruby code. I don't have any idea how to do this.
Please help
0
votes
2answers
97 views
How to sum array members in Ruby excluding specific value?
I have an array of as given below.
For example:
array = [20%,*,30%, 10%]
I want to add the values except '*' using ruby, Please give me some clue for that
0
votes
1answer
476 views
Ruby 1.9 + Net::FTP => Encoding::UndefinedConversionError
i upgraded from Ruby 1.8.7 to 1.9.2 (and Rails 3.2.2) and have the problem that Net::FTP#gettextfile is throwing an Encoding::UndefinedConversionError
I'm trying to download a xml file which is ...
0
votes
2answers
218 views
How to select single column using ruby activerecord query
I am having two classes under migration dir.
class1
create_table :table1 do |t|
t.integer :name
end
end
class2
create_table :table2 do |t|
t.integer :table1_id
t.integer :name
...
1
vote
2answers
150 views
How to update a single field in has_many object
I am having a user object which has one-to-many relation with Address object. My class looks like this
class User
has_many :address
end
class Address
belongs_to :user
end
I want to update only ...
