Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.

learn more… | top users | synonyms | ruby jobs

0
votes
0answers
3 views

`parse!': missing argument: -p (OptionParser::MissingArgument)

So, I am trying to deploy to heroku but it seems like one problem after the other. In this case when running: $ bundle exec rails server -p $PORT I get the following error: [personal_blog]$ bundle ...
1
vote
1answer
22 views

Why do we even need to create a new instance obj in `new` method?

def new @post = Post.new ... end def create @post = Post.new(params[:post]) ... end Since in create method, we will initiate a new obj by the parameters we gave anyway, why ...
0
votes
1answer
13 views

Errors when deploying to Heroku [logs included]

I'm having trouble deploying to Heroku, I've just fixed a postgresql error but now have an ActionView error amongst others. Not sure how to fix this one. please advice. the git for the blog: ...
0
votes
0answers
10 views

Can Capistrano notify me if Unicorn fails to start new processes

My Unicorn story: I deploy, the deployment fails (stacks or something else), the response is deployment complete, I have no idea the code served is the correct code unless I look at the logs. Even if ...
1
vote
0answers
12 views

When do you need to pass arguments to `Thread.new`?

Local variables defined outside of a thread seem to be visible from inside so that the following two uses of Thread.new seem to be the same: a = :foo Thread.new{puts a} # => :foo Thread.new(a){|a| ...
0
votes
0answers
50 views

Sum returning null

I am having a problem with a Ruby SQL look up function: it always returns a null. Here is the terminal output: SELECT COUNT("point_store_items"."point_cost") FROM "point_store_items" INNER JOIN ...
0
votes
2answers
20 views

How do I fix my ruby regex

I want to write a regexp that matches any of the following four characters: /, *, -, + But I'm having trouble with / and * If I write /*/+-/ there are problems I tried using Regex.escape but it's ...
0
votes
1answer
21 views

Does this block the event loop?

I have a sinatra app that is using thin as it's web server. I interact with my database via ActiveRecord. If in an endpoint, I do this: get '/test' do Model.create(.....) end Does the ...
0
votes
4answers
30 views

Can't deploy to heroku [heroku log included]

I'm having trouble deploying to Heroku, I've installed postgresql but I don't think I've configured it properly. This may or may not be the problem, but I have a hunch it has something to do with it. ...
1
vote
1answer
8 views

Getting a Twilio 404 Error Rails Receiving SMS

I'm trying to create an app that accepts an SMS message through Twilio, and then creates a check-in/out transaction that is tied to both employee models and item models. A simple SMS-based item ...
0
votes
1answer
24 views

New York Public Library search query

I am attempting to access the NY Public Library digital collection through their api. The ruby code I am using to make the call is: require 'sinatra' require 'pp' require 'httparty' get '/' ...
1
vote
2answers
17 views

Fresh Ruby gem from Bundler - cannot load my version.rb file?

I wanted to make a fresh Ruby app, so I decided to use bundle gem foo to do it. This gave me the whole: lib/ foo/ version.rb foo.rb Gemfile Rakefile foo.gemspec README.md structure. Now ...
0
votes
0answers
23 views

Ruby, kidcode.rb:3:in `Search': wrong number of arguments (1 for 2) (ArgumentError) error

I've been trying to make a binary search preocedure, but it keeps giving me the same error, help! thank you! def Search(list, targetValue) if list.size <= 0 then alert "Failed ...
0
votes
1answer
12 views

Should I be using Feedzirra in the model?

I'm playing about with the Ruby Feedzirra gem and have managed to acheive what I set out to do by using it in the controller. Though everything I've seen has mentioned using it in the model. I was ...
0
votes
0answers
7 views

rack set request.env omniauth.hash variable

How would I go about passing request.env['omniauth.auth'] to one of my routes? Is it an HTTP header, url parameter, or something else? I'm trying to authenticate with javascript, so in a sense my ...
0
votes
1answer
15 views

calling a class method from scheduler.rake in ruby

Can you call a class method from a rakefile (scheduler.rake)? I am using the Heroku Scheduler add-on and wrote a task that calls a class method but I receive an error when I run 'heroku run rake ...
0
votes
0answers
12 views

Run code after rails initializers?

I've got a bit of code in the initializers which hooks up mongo_mapper to my mongo instance. I want to run another bit of code, but only after that initializer has ran. Is there a way to do a second ...
0
votes
0answers
36 views

Rails development server is slow and takes a long time to load a simple page

There are similar threads about Rails being slow in development mode, but none of the solutions in those threads has made any difference for me. I've tried installing gems that boost performance and ...
1
vote
1answer
12 views

Mechanize throwing “bad argument (expected URI object or URI string)” using user_agent_alias

I'm trying to fetch images from Twitter but it crashes if I use user_agent_alias. I need to specify the user agent. But why it happens using agent alias? Is that normal? Try yourself with and without ...
-1
votes
1answer
55 views

How do you cluster every n elements in an array in Ruby?

For example, if you are given an array containing 22 hashes, and you want to group every 4 hashes into a new array which is also under another array. the last 2 elements will be inside a separate ...
2
votes
2answers
47 views

Ruby, Interpolating an Array of Strings

When I interpolate an array of strings, it includes the escape characters for the quotes '\"', how would I interpolate it sans quotes? string_array = ["a","b","c"] p "#{string_array}" # => ...
2
votes
4answers
50 views

Create multilevel constant in ruby

Given that I have a constant name of Foo::Bar::Baz, how can I drill down through each of these levels and determine if the constant exists?
0
votes
1answer
11 views

rmagick stuck in an infinite loop that creates an image over and over

I'm using rmagick to create a montage. After I submit a request, it gets stuck in an infinite loop, and the request continues to create the same image over, and over, until I manually restart server: ...
1
vote
3answers
59 views

What is between { }?

There is a piece of code: def test_sub_is_like_find_and_replace assert_equal "one t-three", "one two-three".sub(/(t\w*)/) { $1[0, 1] } end I found it really hard to understand what is between ...
0
votes
1answer
14 views

Trouble deleting ActiveRecord object, foreign key constraint fails

Rails 2.3 What I've tried... >> Import::Subscription.all(:conditions => ["account_id = ?", "44"]).destroy_all NoMethodError: undefined method 'destroy_all' for #<Array:0x106ab4d78> ...
1
vote
2answers
20 views

What is the design pattern for asserting a property of an item in a list, in test?

I would like to assert (in rspec really) that at least one item in the tags list is non-public. it 'lets you select non-public tags' do get :new flag = false assigns(:tags).each do |tag| if ...
2
votes
0answers
21 views

vim-ruby-debugger style breakpoints with Pry in Vim

Right now, when I want a breakpoint in vim or Sublime Text, I drop a line like the following into the code: binding.pry if Rails.env.test? Pry (and its associated plugins) provide a nice ...
0
votes
1answer
7 views

How should I get Heroku Toolbelt to use 2.0.0 instead of system default on OS X?

I installed Heroku Toolbelt on my Macbook Pro (running OS X 10.7.5) by way of the PKG file. Unfortunately, heroku is not utilizing my rbenv-specified global ruby version (2.0.0-p195), but seems to be ...
1
vote
3answers
25 views

How do I tell bundler to ignore gems that don't exist?

My organization has a number of in-house gems that are used in automated testing, but are not required for a production deployment. I am trying to use Bundler and so in my Gemfile I've wrapped those ...
0
votes
1answer
10 views

Net::HTTP Timeout with Sinatra App

I wrote a simple sinatra service to transfer images from sites to Amazon s3. It reads the images into memory instead of storing the files. The application works great locally but it timeouts when ...
0
votes
0answers
5 views

Adding vendorarchdir to ruby's default gem path search

I'd like to install (architecture-specific) gems under CONFIG['vendorarchdir']. Two related questions. First, is this (vendorarchdir as a gem path) a bad idea? It seems reasonable to me given that ...
-2
votes
1answer
52 views

NoMethodError: undefined method '+' for nil:NilClass

I can’t seem to fix this error: NoMethodError: undefined method '+' for nil:NilClass This is my code from the file that I am loading: def test_person_name fred = Person.new("Fred", "Jones", ...
0
votes
0answers
29 views

Sporadic error with Nokogiri

I want it to parse html. The error is the following: /usr/local/rvm/gems/ruby-1.9.3-p392@clickjogos_www_users/gems/activerecord-3.2.12/lib/active_record/connection_adapters/mysql2_adapter.rb:216: ...
0
votes
1answer
22 views

REST API test cucumber steps best practise

Trying to write up cucumber feature steps for REST API test. I am not sure which approach is better: Given I log in with username and password When I add one "tv" into my cart And I check my cart ...
0
votes
0answers
11 views

MacRuby access MySQL possibly via REST

I am trying to get a MacRuby application put together that interfaces with a MySQL database I have set up. I currently use DataMapper with Sinatra to create a Web App but I would like to build a ...
0
votes
0answers
12 views

jquerymobile using Select menus with Ruby on Rails error

I have two models Promotions and Goods when i create a promotion must associate it with a good, so in the view i used <div class="field"> <%= f.label :good%><br /> <%= ...
0
votes
0answers
9 views

Not able to install selenium-webdriver gem in cygwin cmd

I have been trying to gem install selenium-webdriver, but keep running up against the same error. I've followed steps from the following to no avail: ...
0
votes
0answers
12 views

My Ruby install \bin\ruby.exe is not getting found when running rake_task for rspec

I can run rspec directly but with a Rakefile as simple as require 'rspec/core/rake_task' task :default => [:spec] RSpec::Core::RakeTask.new do |task| end I get something like this output ...
0
votes
1answer
14 views

RSpec controller tests returning 301 in every request

I'm building a build server running on Jenkins to test a rails app on every commit to 'master' in git. My problem is: I've created a new "staging" environment so the build can be run in a real ...
1
vote
1answer
40 views

Overide ActiveRecord ID

in my Rails 4 app i would like to override Active Record to create records with ids that have 7 digits of random numbers. Such as 4526378 instead of 1. I found a way to do this but im not sure its the ...
1
vote
3answers
32 views

Set the a path containing [ ] on a URI

Hello I am trying to use URI to create an uri, but it seems that brackets ([]) are not accepted: uri = URI.parse("http://example.com") uri.path = URI.escape("/test[1].png") ...
0
votes
1answer
23 views

Remove all installed Gems except for specific versions

I'm tasked with writing an automated cleanup script that removes unused versions of RubyGems on our Build system. The system doesn't use Bundler, so what we've done is manually keep track of which ...
1
vote
1answer
28 views

How can I convert a Time from some timezone to UTC, taking into account Daylight Saving, in Ruby?

I have an app where different users are in different parts of the globe (I know their timezone), and they can enter dates and times, and I need to store everything in UTC on the DB. Normally to ...
-3
votes
1answer
26 views

Scraping Images from Pinterest on Heroku - is it possible?

I'm trying to read a specific pin page from pinterest and getting a 403 (Permission Denied) as a response. Here's the code: url = 'http://pinterest.com/pin/498844096195830377' open(url) This ...
0
votes
0answers
23 views

Visual Frame Around Command Line Application

I am writing a command line application in Ruby using GLI. My app uses the Bio gem to query PubMed and print out bibliographic information for the results, one by one, to the terminal. The user is ...
0
votes
0answers
13 views

Rendering nested form for field with filter checking in Ruby on Rails3

As a new to Ruby on Rails, I have stuck to render the nested_form_for fields with a filter checking. The nested form model already has some data in it which is said to be default data. Now on editing ...
0
votes
1answer
21 views

How can I use Digest and Basic authentications with HTTParty in the same class?

I have the following class performing some requests: the first request uses a digest auth the second request uses a basic auth When I run the second request I have the following error: only one ...
0
votes
0answers
23 views

Single model different view and CRUD functionality in RubyOnRails3

As a new to Ruby on rails, I stumble on a part of my app. I read the basics of RoR framework and know the 'convention over configuration' feature of rails MVC. I have two tables, one is apps_events ...
1
vote
0answers
14 views

How to embed googlebooks search api in view?

I have a code GoogleBooks.search('The Great Gatsby') of this gem that I can work out from command-line. But how do I make search possible from a textfield in view?. One way I know is having a ...
2
votes
1answer
10 views

ActiveSupport::DescendantsTracker.descendants not returning descendants

This question is similar / related to another stack overflow question about Looking up all the descendants of a class in Ruby. A wonderful question full of the information that I was looking for - ...

1 2 3 4 5 1471