Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.
0
votes
2answers
35 views
How do I “expect” before block to change something in rspec?
I have a test suite structured this way:
let(:cat) { create :blue_russian_cat }
subject { cat }
context "empty bowl" do
let!(:bowl) { create(:big_bowl, amount: 0) }
before { meow }
...
0
votes
1answer
37 views
ruby not understanding this behavior when iterating through array
I am having a problem with the following array iteration. I'd like to create an array jt with the phrase "food" and "drink" as can be seen from the output from first command which is constructed from ...
1
vote
1answer
45 views
Having Trouble Generating a Ruby Migration
I wanted to generate a new migration for a site running Rails 2.3.14 and Ruby 1.8.7. I wrote the command
ruby script/generate migration AssetTable
Expecting the script to generate a file ...
0
votes
0answers
22 views
Interactive Ruby Console: NameError: unitialized constant | railties Gem
I'm attempting to run this example from Michael Hartl's Rails tutorial in the interactive Ruby console. Looking at the filepath in the error message, I think that the railties gem may be the source of ...
1
vote
2answers
29 views
Rails optional belongs_to
I'm writing a Rails frontend for inventory management. I want users to be able to register products, so I have:
class User < ActiveRecord::Base
has_many :products
# <snip>
end
and
...
-2
votes
1answer
54 views
String to Array in Ruby
I need String "---\n- aaaadddhh ddddggg\n- bbbdddddf ff ddd\n- cccf\n" convert to Array in Ruby
it should produces:
["aaaadddhh ddddggg", "bbbdddddf ff ddd", "cccf"]
1
vote
1answer
27 views
Rails route that allows POST to a few endpoints and all methods to the rest?
I have a Rails controller with about 60+ actions. I need to change it to allow only POST requests on about 20 actions and any request method for the rest of them.
Is there a way to do this so I don't ...
5
votes
2answers
69 views
how to use truly local variables in ruby proc/lambda
Beginner Ruby question. What is the simplest way to change this code, but leaving the block completely intact, that eliminates the side effect?
$ irb
irb(main):001:0> x = lambda {|v| x=2
...
4
votes
7answers
95 views
How to return true if only one specific key in a hash has a true value (all the other values are false)
For instance:
options = { fight: true,
use_item: false,
run_away: false,
save_game: false }
I want a boolean expression that evaluates to true iff only :fight is true, and the rest are false (as ...
0
votes
1answer
19 views
How to validate the height and weight from a form field when entered with lbs or ' and " symbols on ruby
I am relatively new to ruby and ruby on rails and I am trying to validate a form to ensure that the height and weight of a person is entered with numeric values but the fields can take the lbs after ...
0
votes
1answer
18 views
Why does Rails runner shebang not work on Debian but work on OS X?
I have a Rails script that I run on both OS X Lion and Debian GNU/Linux 7.0 (wheezy). It's down to a simple script:
#!/usr/bin/env /opt/thermyos.com/server/script/rails runner
ENV.each do |k, v|
...
0
votes
0answers
17 views
nokogiri encoder error with cyrillic letters - is that a bug?
The following code produces:
encoding error : output conversion failed due to conv error, bytes 0xE8 0xED 0xF4 0xEE
I/O error : encoder error
When cyrillic letters are included in XML, text ...
1
vote
1answer
23 views
Include an instance method from a module and then outputting a class variable that was defined in the base class
I'm attempting to include a method from a module in a class, and have the method that is included access a class variable of the base class that's doing the including, but it's not working like I ...
0
votes
2answers
28 views
Need to loop through an array in rspec, test not running
I have a test that needs to loop through 5 elements in an array then verify that all the elements are displayed as list items on the page. I have the code below, it's the last test with the comment ...
0
votes
1answer
30 views
function in a Matrix manipulation
I'm trying to set an function as a matrix element and then I want this function to be called when matrix-multiplication is done..
Pseudo Example :
f = lambda {|x| Math.log(x) }
m1 = Matrix[ [f,0], ...
0
votes
1answer
35 views
converting a hours from a time stamp into a hash listing the hour and frequency in Ruby
Ok, so I'm pretty new at this, I hope I explain this correctly. I'm using Ruby, and I have a program which takes a CSV file and performs some various functions on it. What I'm concerned with here is ...
1
vote
1answer
11 views
GitlabHQ installating on Ubuntu 12.04
I am facing some problem in installing Gitlabhq on Ubuntu 12.04
I am getting this error
$ sudo -u git -H bundle install --deployment --without development test postgres
/usr/local/bin/bundle:9:in ...
2
votes
1answer
45 views
Rails vs CodeIgniter performance when retrieving many records [closed]
EDIT - This is not a thread meant to bash Rails! I love Rails and I am merely trying to fully understand the differences.
EDIT 2 - Found a pretty neat article, it looks like it may have everything ...
3
votes
1answer
31 views
Is there a pry debug setup that works with ruby 2.0?
I'm using ruby 2.0.0-p195 on OSX. pry-debugger does not work (step/continue/next all appear to work like step). Is there a pry debugging gem that works with ruby 2.0?
update: pry-debugger and ...
0
votes
0answers
17 views
Custom Shuffle Method Encountering Unexpected kDO_COND
I'm writing a custom shuffle method as a training exercise. The goal is to take an array as input, then spit out a new one with all the values shuffled randomly. It seems like I got the gist of the ...
0
votes
1answer
18 views
How to set a method dynamically as other class method
Im new to Ruby, and im creating a cli app with Thor and some additional gems. My problem is that i take user input (from the console) and pass the data as a variable to a existing method (This method ...
0
votes
0answers
10 views
Can I change the XML node content using the Nokogiri .content method?
the goal of the code below is to take an XML code.
Take out of it the tag vco:parameter, clone it
Replace both name and value and insert it back into the XML text.
However, when I'm trying to replace ...
2
votes
1answer
39 views
anything faster than .include? [duplicate]
I'm currently working with arrays and i decided to try and speed up one of my functions with replacing and iterative search of a sorted array with .include? much to my surprise the total run time of ...
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
0answers
15 views
Rails 2 - Problems running project
I work with JRuby and Rails 3.2 but now I've found I got to work on a project on Rails 2.
I know some basic things about Rails 2 like the command jruby ./script/server to start the server instead of ...
0
votes
1answer
19 views
Generic way to mock something in Ruby
How could I mock any method without using any gem?
Suppose I have access to an complex object like request
How could I make
request.location.country
to return a mocked value.
I read I can mock ...
1
vote
1answer
37 views
Group by part of attribute in hash
I have a model called coverage that looks like this
1.9.3p429 :005 > Coverage.new
=> #<Coverage id: nil, postcode: nil, name: nil, created_at: nil, updated_at: nil>
Here is an ...
0
votes
1answer
16 views
Reloading Sinatra page based on time interval
I have a value stored in a variable called value. Value is being run in a background task that makes it go up by one every second or so.
Now, I have
get '/' do
"#{value}"
end
How can I ...
0
votes
0answers
13 views
Ruby 1.8.7 on windows with cygwin
I am completely new to Ruby, and i am required to use ruby 1.8.7. I was able to install it on windows and when I run the 'gem' command on windows command line it works. I was also able to run hello ...
2
votes
2answers
34 views
Eval a string without string interpolation
AKA How do I find an unescaped character sequence with regex?
Given an environment set up with:
@secret = "OH NO!"
$secret = "OH NO!"
@@secret = "OH NO!"
and given string read in from a file that ...
1
vote
2answers
48 views
Split string into a hash?
I have the following example string:
"email=bob@example.com&user_id=13&last_seen=January 14, 2013"
And I need is converted to a hash:
{ :email=>bob@example.com, :user_id=>13, ...
0
votes
1answer
16 views
RestClient POST doesn't display status on header-only response
I have a Rails action which responds with head :ok, rather than rendering any content. I'm calling this action using RestClient, like so:
resp = RestClient.post("#{api_server_url}/action/path", ...
0
votes
1answer
39 views
Why is the colon missing after “http” in my URL?
Here is my reset password Haml file:
%p= link_to 'Changme', edit_password_url(@user, reset_password_token: @user.reset_password_token)
The first strange thing is that there is no route ...
0
votes
1answer
35 views
UTF-8 in Rails on Mac OSX
We recently ran into the requirement of accepting UTF-8 characters in one of our models. We set up the field to use the proper encoding in the database (mysql, locally mariadb in my case). We all run ...
0
votes
1answer
21 views
Is it safe to distribute a Dropbox client secret with the application?
Is it safe to distribute a Dropbox client secret with the application?
For example, if I wanted to release an open source project, I would need to embed the client secret into the application (since ...
0
votes
0answers
9 views
NewRelic reporting when using Rack::Timeout
We're running in an environment (Heroku) in which requests longer than 30 seconds will be interrupted. Therefore our web server (Unicorn) is set to abort after 15 seconds. We have noticed that when a ...
0
votes
0answers
28 views
Storing a persistent variable in Sinatra(ruby)
I have an application that basically reads data from one source, which has an id and a value, and outputs it to another source if the id is less then the $highestid global variable, which is basically ...
0
votes
1answer
18 views
How to use omniauth to authenticate users from a custom Rails application?
I'm currently working on a rails Spree application(v 1.3.x).
I have also another application that i have created couple of months ago just suppose myfirstapp.com that is live and so many users have ...
-1
votes
0answers
30 views
Metaprogramming class instance variable creator for a specific class in Ruby
Edit: Okay - so class variables aren't the best (or even viable) way to do this. Could it be done by just defining a function that returns
Let's say we want to embed some metadata about a family of ...
9
votes
1answer
83 views
The magic of Enumerator#feed
There is this Enumerator#feed method, I discovered by accident. It is defined as:
feed obj → nil
Sets the value to be returned by the next yield inside e. If the value is not set, the yield ...
0
votes
1answer
32 views
Integration test for a method that redirects to an external website
This method redirects to an external website. How do I test this behaviour? I know that the method works correctly because I tested in the browser, but I can't get the test to pass.
def create
...
0
votes
1answer
22 views
Capybara 2.0 and rspec-rails — helpers don't work in spec/features
I'm trying to use a method from a helper module, but rspec doesn't seem to recognize helpers for tests under spec/features. Note that the only change to spec_helper.rb was adding require ...
1
vote
4answers
48 views
Write method group_by on my own
I need to write the method group_by by myself. This is what I have so far:
module Enumerable
def group_by(&b)
solution = {}
self.each {|key,val|
b.call(var)
solution = { ...
0
votes
1answer
25 views
Scopes doesn't work with STI
I want to do STI in Rails.
class AbstractUser < ActiveRecord::Base
self.table_name = 'users'
belongs_to :organization, :inverse_of => :users
# reporter user
has_many :requests, ...
0
votes
1answer
25 views
superclass mismatch: get class object (ruby)
class A
end
class B
end
class Y < A
end
class Y < B # TypeError: superclass mismatch for Y
end
Is there a way to get the class the raises the superclass mismatch?
I would like to know that it ...
0
votes
1answer
19 views
Ruby: Make a selection from a drop-down list box
I am writing scripts in Ruby that supports Capybara. I will have to select a value from a dropdown list box and I am using "xpath" to find the element and make the selection.
The code is given below:
...
1
vote
1answer
20 views
Ruby: Assert_raise alternative?
I'm working out Ruby Kons and I stopped in about_Hashes. It took me a bit to understand what asserts are and how they work and I think I get it but suddenly assert_raise appears! I'm confused and now ...
0
votes
1answer
20 views
why is page object name erroring in ruby?
So here is my delema... I'm trying to get page object up and running, something I've done a thousand times before, but i'm getting a name error now. Is it just too early in the morning or am I ...
0
votes
1answer
39 views
how to do a many to many model for this project in rails
I'm having trouble creating a many to many model for my project.
Basically i have a Matches & Teams model.
Teams are created prior to the Matches.
Once the match is created then i would like to ...
0
votes
0answers
7 views
ruby aws-sdk : How can I get the website endpoint for a bucket that is configured as a website?
I am trying to simply get back the website endpoint for a bucket but can't seem to find a method in the documentation of how to do this. I am sure there is a way to do it. I am thinking I might just ...


