Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.
0
votes
1answer
21 views
ruby / rvm / rails installed but say command not found
I was pretty sure I had ruby and rails installed on my macbook. I tried to start a new rails app, but it said command not found. So, I found that ruby/rvm said the same thing. I reinstalled rvm, ...
0
votes
2answers
27 views
Array with several strings is concatenated
Array with more than one string separated with space produces array with one concatenated string. IMHO, it should raise syntax error. Is this behavior correct?
["1" "2" "3"]
#=> ["123"]
0
votes
2answers
19 views
Rails includes with eager loading => nested models not in to_json version?
I have a class TwitterUser that has many TwitterLists
class TwitterUser < ActiveRecord::Base
has_many :twitter_lists, :dependent => :destroy
end
When I do:
user = ...
0
votes
4answers
36 views
How do I shorten a one line if statement in ruby that only executes if field is not empty
I have the following if statement that fills a field with the result of a function, if the function doesn't return empty.
I think i've seen examples before where the empty check and the function can ...
-2
votes
1answer
47 views
Ruby custom create method
I scaffolded an Authorization(user_id, code, otherparam1, ...) and I want to add a custom_create method to the authorizations_controller which only require a code, the method generating the other ...
1
vote
0answers
14 views
Active admin custom filter with active record relations
Here is my problem:
I have three models:
Taxons
class Taxon < ActiveRecord::Base
has_and_belongs_to_many :categories, :uniq => true
Categories
class Category < ActiveRecord::Base
...
1
vote
1answer
27 views
“SyntaxError: unexpected }” when setting up backbone.js with rails [closed]
Ok, I'm baffled. I am trying to set up a rails/backbons SPA. I am following along with this railscast: http://railscasts.com/episodes/323-backbone-on-rails-part-1?autoplay=true
I get this error from ...
-1
votes
2answers
16 views
Look for text in a div that has multiple links under it with Watir
I am trying to verify that the text of a link is present in a . The div is not available until a link is clicked. After the link is click more links become available to click. Below is what the html ...
0
votes
1answer
24 views
Heroku error “We're sorry, but something went wrong”
I have a problem with publish my ROR project with Heroku.com service...
I have done all steps from this tutrial
but when I am running comand "heroku open" I have an error "We're sorry, but something ...
0
votes
2answers
41 views
How to parse HTTP response using Ruby
I've written a short snippet which sends a GET request, performs auth and checks if there is a 200 OK response (when auth success). Now, one thing I saw with this specific GET request, is that the ...
-1
votes
1answer
18 views
Why is a syntactic error in a subfile designed to be rescued by `require`?
As asked by liron in this question, a syntax error in a require-d subfile is rescued by the method require and is raised as an error of require. Why is it designed like this? What is the benefit of ...
2
votes
1answer
47 views
Using DateTime method in ruby
I'm developing an application using Visual Ruby. In that I'm fetching a date from a dropdown like below:
check_to_in_1 = @builder.get_object("cellrenderertext7")
then I split this date using the ...
0
votes
2answers
28 views
Easy way to compare mysql entries in Rails
In my database I have entries like:
username score date
User1 10 1/1/2013
User2 4 1/1/2013
User3 4 1/1/2013
User4 5 1/1/2013
...
User1 1 10/1/2013
...
4
votes
2answers
209 views
What is the use or effect of freezing Symbols and Numbers in Ruby?
In Ruby 1.9 you can have Fixnum, Float, and Symbol values that are unfrozen or frozen:
irb(main):001:0> a = [ 17, 42.0, :foo ]; a.map(&:frozen?)
=> [false, false, false]
...
10
votes
1answer
73 views
What do `def +@` and `def -@` mean?
In this Haskell-like comprehensions implementation in Ruby there's some code I've never seen in Ruby:
class Array
def +@
# implementation
end
def -@
# implementation
end
end
What ...
-1
votes
0answers
22 views
Finding in txt specific chars by index
I have a problem with Ruby homework.
There is a txt file with 1000 chars (One per each line)
So program asks user for 9 numbers 0..999
After that it should find and print 9 chars from file
Example ...
2
votes
2answers
44 views
Why is kernel_required.rb in my stack trace?
I forgot to put the word end, at the end of a if statement,
and got the following error:
/home/***/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:45:in ...
0
votes
0answers
14 views
Ruby can not find the module (LoadError) under Windows
I tried to connect to the database using Ruby (under Windows).
For that:
install Ruby in C:\Ruby193
install devkit (c:\ruby193\devkit). Run "ruby dk.rb init", "ruby dk.rb install"
downloaded ...
0
votes
1answer
63 views
+200
rbenv continually generating vagrant shim
I am using the latest vagrant with rbenv and various rubies.
I am using the latest vagrant, which no longer uses a gem. When I execute a vagrant command I see the following error:
rbenv: vagrant: ...
-1
votes
1answer
27 views
Call python code from Ruby
I want to run a python code from ruby.
I am using this gem.
Ruby code:
require "rubypython"
RubyPython.start
fileinput=RubyPython.import("fileinput")
RubyPython.stop
I get the error :
...
2
votes
3answers
109 views
+50
stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails
This is a question about what debugging strategy I should use when encountering a stack level too deep (SystemStackError) using Ruby and Rails.
I am seeing these errors when using either rspec or ...
1
vote
2answers
30 views
Ruby, How to add a param to an URL that you don't know if it has any other param already
I have to add a new param to an indeterminate URL, let's say param=value.
In case the actual URL has already params like this
http://url.com?p1=v1&p2=v2
I should transform the URL to this ...
0
votes
4answers
58 views
How to split a string into key-value pairs?
Say I have a string such as
"@a ipsum lorem @b dolor sit amet @c consectetur adipisicing"
That I want to convert to an array (or hash, or some pattern of keys and values)
{ @a => "ipsum lorem", ...
1
vote
2answers
38 views
ruby how to find the source code to sort_by?
Does anyone know how to find the source code to the method sort_by used in Array Enumerable?
I've tried sort_by.source_location and get
NameError: undefined local variable or method `sort_by' for ...
1
vote
1answer
24 views
How to implement an Mongoid Document like class?
I'm building a small script where I'd need to implement a Mongoid Document like class, where I include my base module and then I can build a class which looks like:
class MyClass
include ...
-1
votes
2answers
26 views
Troubles with Heroku cloud hosting
I have a problem with deploying my Ruby on Rails project into heroku cloud hosting - heroku cloud hosting
When I am pushing my code through Git bush I have a problem with installing sqlite3... but ...
0
votes
0answers
13 views
Stubbing Grape helper
I have Rails app with Grape API.
The interface is done with Backbone and Grape API provides it all data.
All it returns is user-specific stuff, so i need reference to currently logged in user.
...
0
votes
1answer
24 views
rspec password test failing
I've been racking my brain trying to figure this out. I'm not sure why, but for some reason my password digest hash isn't matching up. When I run the test I get this error:
expected: password_digest: ...
0
votes
1answer
28 views
Hidden value not being passed in rails app (Head first rails book)
I am following the Head first Rails book for creating an airline ticketing system although I am using version 3.2.13 of rails.
I have a hidden field for flight_id in a partial for adding new seats to ...
1
vote
1answer
32 views
Is the frozen behavior on Fixnum a specified behavior?
Here was the behavior that somewhat surprised me:
1.9.3-p392 :001 > n = 1
=> 1
1.9.3-p392 :002 > n.frozen?
=> false
1.9.3-p392 :003 > 1.freeze
=> 1
1.9.3-p392 :004 > n.frozen?
...
4
votes
2answers
66 views
When to use symbols versus strings in Ruby?
I've been reading a few articles about when to use symbols and when to use strings. But just to make it clearer and simpler, I want to ask: is it true that it is better to use a symbol instead of a ...
8
votes
2answers
144 views
Why aren't the arguments to File.new symbols instead of strings?
I was wondering why the people who wrote the File library decided to make the arguments that determine what mode the file is opened in strings instead of symbols.
For example, this is how it is now:
...
0
votes
1answer
44 views
passenger_base_uri not working on passenger 4.0.0rc4
We are running ruby 2.0.0-p0 with passenger 4.0.0rc (nginx/1.2.7) on ubuntu 12.04 server in production (rails 3.2.12). Just notice that the passenger_base_uri in our nginx.conf is not pointing to the ...
0
votes
1answer
40 views
Ruby - Nesting objects through input values
Hello my fellow companion!
What I'm trying to achieve is a system by which an Order form is compiled in two ways:
by fullfilling its own attributes (:sender_name, :sender_mobile etc..)
by selecting ...
6
votes
6answers
3k views
Change value of request.remote_ip in Ruby on Rails
For test purposes I want to change the return value of request.remote_ip. While being on my development machine it returns always 127.0.0.1 as it should but I would like to give myself different fake ...
0
votes
1answer
13 views
RubyMine - NoMethodError: Undefined method 'get' for nil:nilClass - Webdriver UserAgent
I am new to RubyMine and trying to debug an project that I did not write myself.
The error when I ran the Project.feature and it stopped at the first line 'Given I go to this Website'.
...
0
votes
0answers
9 views
Why does requiring 'watir-webdriver' in my macruby application in xcode cause this error?
I have installed watir-webdriver via macgem in root and in user, I have required rubygems and included /Library/Frameworks recursively in my framework search path in build settings for this project.
...
32
votes
2answers
25k views
how to get the current working directory's absolute path from irb
I'm running Ruby on Windows though I don't know if that should make a difference. All I want to do is get the current working directory's absolute path. Is this possible from irb? Apparently from a ...
1
vote
1answer
31 views
How can I identify unused variables and attributes in attributes, recipes and templates?
How can unused attributes be identified?
Cookbook attributes: If attributes/default.rb contains some attribute which is not used in cookbook recipes, ruby -wc and knife cookbook test obviously says ...
1
vote
3answers
49 views
How can I write a Ruby one-liner to read a small AR table into a hash?
I have a model called Category that contains about a thousand records. It changes extremely infrequently. I want to avoid millions of database hits by caching it, which is no big deal.
But I found ...
2
votes
2answers
440 views
Easiest Way to Convert lat lng/zip/city/state to Timezone in Ruby
I'm interested in getting the timezone of my users. I already have their city, state, zip, lat & lng and I would like to get their timezone. I've one service that does this conversion ( ...
1
vote
7answers
82 views
How do I sort one array with another array using sort_by?
I'd like to sort the first array:
filenames = ["z.pdf", "z.txt", "a.pdf", "z.rf", "a.rf","a.txt", "z.html", "a.html"]
by the following file's extensions array:
extensions = ["html", "txt", ...
1
vote
0answers
31 views
How to fix Ruby getting load path with stray utf-8 character
I've got a system that after a little use will result in Ruby being unable to run because of the following error
ruby: No such file or directory -- ¯ (LoadError)
The last few characters after the ...
1
vote
3answers
236 views
Error running 'requirements_osx_brew_libs_install…' on Mac 10.7
Trying to install brew on a last generation Macbook Pro and keep getting the following error:
Error running 'requirements_osx_brew_libs_install autoconf automake libtool pkg-config apple-gcc42 ...
2
votes
6answers
170 views
+200
Dynamic namespaced controllers w/ fallback in Rails
I have a somewhat bizarre requirement for a new Rails application. I need to build an application in which all routes are defined in multiple namespaces (let me explain). I want to have an application ...
0
votes
1answer
23 views
Twitter rate limit hit while requesting friends with ruby gem
I am having trouble printing out a list of people I am following on twitter. This code worked at 250, but fails now that I am following 320 people.
Failure Description: The code request exceeds ...
0
votes
1answer
14 views
Mongoid has_many relationship causes Rack cookie error in Sinatra
Writing an application using Mongoid 3.1 and Sinatra in Ruby 1.9.3. I have a model called Order that has_many Items. Whenever I try to append an Item to an Order.items, I run into problems. I have the ...
0
votes
2answers
46 views
Ruby: Rescuing the same error type twice
Is it possible to rescue the same error type more than once in ruby? I am needing to while using the Koala facebook API library like so:
begin
# Try with user provided app token
fb = ...
3
votes
1answer
46 views
What is the most reliable way to calculate astronomical events in Ruby?
Given a latitude and longitude, I need to calculate in Ruby the astronomical, nautical, civil twilight, as well as the zeniths of the moon and sun.
A gem which works locally (no network calls ...
-1
votes
1answer
49 views
unexpected $end, expecting keyword_end [closed]
I am using the code from question here. I am getting the following errors,
Example test : example1 - RUNTIME ERROR (tested program terminated unexpectedly)
Output:
user.rb:113: syntax error, ...




