Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.
-2
votes
4answers
66 views
using array's delete_if command [closed]
Lets say,
script = Array.new
script.push("/home/dexter/constant.sh")
script.push("/home/dexter/constant_validation.rb")
script.push("/home/dexter/jobs/reporter.rb")
Now when I use array's delete_if ...
0
votes
1answer
29 views
How can I simplify or clean up this anagram method?
I have a method here that takes an array of strings and groups the ones that are anagrams of each other together, with each group forming a sub-array of the main anagram_groups array.
The output is ...
0
votes
0answers
14 views
Rabl initializer error after deploying to production
After deployiny my rails application to my production server using capistrano, I ran into an issue with my Rabl initializer file:
Uninitialized constant Rabl
However, I can access the Rabl object ...
0
votes
1answer
22 views
When trying to run source ~/.rvm/scripts/rvm I get a “Badly Placed ()'s” error
I have installed RVM on my machine running Mac OS X 10.8.3 from the tcsh shell. I am trying to run: source ~/.rvm/scripts/rvm in the terminal and I get a Badly placed ()'s error.
Any advice? I ...
0
votes
1answer
34 views
How to model an owner and members with a has_many :through association?
In my rails application I have Event and User models. The business rules dictate that an Event has one owner and many members, and the owner must be a member. The inverse would be User having many ...
0
votes
2answers
27 views
Ruby 1.9+ hash syntax with numbers [duplicate]
How would I use Ruby 1.9 syntactic sugared hash key/value initialization with numbers?
for example, if I want
{ :00 => 4, :01 => 1, :02 => 3 }
I get an error with the following code
...
0
votes
1answer
18 views
Error message: -bash: /etc/profile.d/rvm.sh: No such file or directory
After installing Ruby successfully on my mac, every time I start the terminal, I get this message:
Last login: Sun May 19 00:47:06 on ttys000
-bash: /etc/profile.d/rvm.sh: No such file or directory
...
-2
votes
1answer
20 views
Options to learn in Ruby besides IRB and FXRI [closed]
Was wondering uses other options to test their coding lines (i'm very new to ruby) in windows.
For some reason fxri does not work in the later versions and i dont like using irb.
(i used the 1 click ...
1
vote
2answers
23 views
Redirect to previous page wherever it is directed to the login page
I'm using Rails 3.2 and Authlogic. I have the following code:
class ApplicationController < ActionController::Base
private
def store_location
session[:return_to] = request.url
end
...
0
votes
0answers
10 views
Libvlc BegPoint and endPoint in Ruby
Can I call libvlc in ruby or otherwise to play a video/audio from from a specific start point to end point?
-2
votes
2answers
33 views
Echoing Ruby output in HTML [closed]
I don't understand the use of puts. I think puts only prints in the terminal. Is that correct? Here is a piece of code taken from Twilio:
require 'twilio-ruby'
# put your own credentials here - ...
0
votes
0answers
69 views
Stack Level Too Deep Error In Rails
I'm getting this error in Rails and there's no other information to help me figure out why.
SystemStackError in UserController#students
stack level too deep
My user controller is as follows
class ...
0
votes
0answers
15 views
how to invoke a method from an Entry Widget in Ruby Tk
I'm looking for an option or a way to bind an event, which invokes a method from an Entry-Widget.
Like the command option for button-widgets: command { method } or
like binding an event for ...
0
votes
0answers
18 views
RestSharp Accept header change
I am using RestSharp for developing client side. Also I am using Ruby Grape gem for my custom API on server side. Grape gem can do versioning by setting Accept HTTP header f.e to ...
0
votes
1answer
51 views
I just can't get my valid password test to pass
I'm trying to get my valid password test to pass. When I run it it seems that the password_digest hash is different. I don't know what to do to get them to match.
I was mostly using the book "Ruby on ...
1
vote
3answers
56 views
Can a ruby object call super on a “grandparent”?
If I have a class Salad with a method chew and I use super in it, it will call the next available chew method available going up the chain of ancestors. What if I want to "reach two levels up" (to ...
-1
votes
1answer
46 views
Stuck with HTTP GET authentication in Ruby
I am trying to write short script to do HTTP authentication using GET request
This makes GET request.
def try_login(u, p)
path1 = '/index.php'
path2 = ...
0
votes
1answer
20 views
Trying to run a method that returns a value depending on whether another object exists. nil:NilClass Error
Within my user model I'm trying to get some methods to work relating to the 'start date' when the user begins their account.
By default, I want the "end_date" method to return the present date. When ...
0
votes
1answer
18 views
ActiveRecord find with joins and associations?
I have a model TwitterUser that has_one website as shown in the model below:
class TwitterUser < ActiveRecord::Base
has_one :website, :foreign_key => :id, :primary_key => :website_id
end
...
2
votes
1answer
28 views
uninitialized constant Object::Element in Opal RB
Trying my hand at Opal/JQuery. My app.rb file looks like this:
require 'opal'
require 'opal-jquery'
class HTMLObject
def initialize
end
def write_to_body
end
end
class HTMLParagraph ...
0
votes
1answer
36 views
Ruby ternary operator structure
puts bool ? "true" : "false"
is proper, but
bool ? puts "true" : puts "false"
is not. Can somebody explain to me why this is?
Side note:
bool ? ( puts "true" ) : ( puts "false" )
works fine ...
0
votes
2answers
27 views
watir open each link of a page
I need to scrape some info on a website that has a table where each row contains a link.
I want watir to click each link in that table, grab some info from the generated page and go back to the ...
0
votes
2answers
54 views
How to get a value out of a hash in Ruby? [closed]
I have the following hash (@myhash) in Ruby:
[
{
"id" => "123456789",
"name" =>"Random name",
"list_type" =>"random type of list"
}
]
How can take the value ...
0
votes
1answer
20 views
how to associate a new user's email internet domain with a network on my website? (rails 3)
For example, if a user signs up using email johndoe@xyz.com, I want this user to be part of the "XYZ" network on my website. People will be only allowed to join their respective networks. There will ...
5
votes
2answers
55 views
Sorting multiple values by ascending and descending
I'm trying to sort an array of objects based upon different attributes. Some of those attributes I would like to sort in ascending order and some in descending order. I have been able to sort by ...
1
vote
3answers
105 views
use of ! in Ruby
I am new to ruby! And i am trying to learn the use of "!" .
I am aware that ! is included to so that the user's string is modified in-place; otherwise, Ruby will create a copy of user_input and ...
1
vote
3answers
40 views
“Gemfile syntax error” after editing Gemfile, running bundle install or bundle update
I am a Rails newbie and trying to follow http://railstutorial.org guide.
I am using:
gem 2.0.3
bundler 1.3.5
rails 3.2.13
ruby 2.0.0-p195
When I perform bundle update or bundle install after ...
1
vote
1answer
27 views
How to determine multipart/form-data filetypes using Ruby?
I'm using the Griddler gem in a Rails 3.2 app to handle incoming emails with attachments.
The documentation indicates that attached files are multipart/form-data files.
Is there an easy ruby way to ...
0
votes
1answer
31 views
Ambiguous column name in Ruby on Rails with SQLite database?
I am getting this error in my Rails app:
ActiveRecord::StatementInvalid in PaymentsController#index
SQLite3::SQLException: ambiguous column name: date: SELECT COUNT(*) FROM "payments" INNER JOIN ...
0
votes
1answer
49 views
Breaking changes in Rails 4 JSON rendering?
I started a new app atop Rails 4 and I've noticed what seems to be a breaking change in how JSON rendering is implemented by default, but I can't find it written up anywhere so I was wondering if ...
0
votes
3answers
53 views
How can I extract part of a string that is in quotes
Say I have this string:
foo = "This is a string 'with a string inside it!'"
How do I extract 'with a string inside it!' from foo?
1
vote
0answers
31 views
How does module_eval / class_eval / instance_eval counts the line numbers
I have found the line_number passed to class_eval, module_eval and instance_eval doesn't match the line numbers reported by the error. This behaviour is not explained by the ruby-doc which says: (use ...
0
votes
0answers
14 views
How to get Yardoc to output to STDOUT?
I've looked for templates that come with the gem (I can only find the default HTML outputter), I've searched the help and online docs for a switch that will redirect to STDOUT. I can't find anything ...
0
votes
2answers
20 views
Why does having a literal space between regex tokens lead to different matchdata objects?
For example, consider the following expressions:
no_space = "This is a test".match(/(\w+)(\w+)/)
with_space = "This is a test".match(/(\w+) (\w+)/)
The expression no_space is now the matchdata ...
9
votes
1answer
79 views
How is the __LINE__ and __FILE__ constants implemented in Ruby?
It seems the __FILE__ and __LINE__ constants are dynamically updated with the current file and line numbers under execution, I am wondering how is the behaviour implemented in Ruby?
I've greped the ...
1
vote
1answer
28 views
strange ruby behavior with a constant
Could someone explain me, why my original constant LIST from the beginning is getting manipulated at the end? I thought constant could be just once initialized. I want to store the manipulations in a ...
1
vote
2answers
104 views
Can't install Ruby on Rails with RVM on Ubuntu 13.04
I am trying to install RVM on my Ubuntu machine.
I have used curl to get RVM, but some RVM commands (install, requirements) throw this apt-get error:
There has been error while updating 'apt-get', ...
1
vote
2answers
41 views
String is .blank? but neither empty nor whitespace
I'm trying to use the squish method to reduce multiple white spaces in a string to single white spaces. However, I have a string with mutliple spaces which are not reduced. When I check for ...
0
votes
1answer
36 views
Ruby get last * in a string
I have a string with different data and stars as well. How can I get the index of the last *?
For example
hello * there * *
Now how can I get the index of the 3rd *?
0
votes
2answers
51 views
Commands in ruby terminal application
I have just written my first terminal application in ruby. I use OptionParser to parse the options and their arguments. However I want to create commands. For example:
git add .
In the above line, ...
0
votes
1answer
17 views
Destroy dependent objects in Rails using one transaction
Please, help to optimize object destroing in Rails application: I have relatively big database, and when I want to delete user from it all dependent objects removing takes > 1 minute. It's very long. ...
0
votes
1answer
18 views
rails security: converting parameters to symbols for hash lookup
I have a hash of constants I refer to throughout my code like:
CATEGORIES = {
business: '1002',
education: '1003',
entertainment: '1004',
# etc...
}
In one of my controllers I need to ...
0
votes
2answers
46 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"]
-2
votes
2answers
54 views
ruby / rvm / rails installed but say command not found [closed]
I was pretty sure I had ruby and rails installed on my macbook. I tried to start a new rails app, but had an error
command not found
So, I found that ruby/rvm also had the same error. I reinstalled ...
1
vote
0answers
28 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
...
0
votes
5answers
68 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
31 views
Finding in txt specific chars by index [closed]
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 ...
-1
votes
1answer
27 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 ...
0
votes
1answer
42 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 ...
1
vote
0answers
31 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 ...



