0
votes
2answers
38 views

Ruby on Rails, Showing the hashmap array?

I was wondering is there a way to show the hash map array? I'm not sure if its the right terminology? But I wanted to see the columns from the database to see if I'm calling the correct hash keys. ...
0
votes
1answer
21 views

Calling Array#delete_at on a cloned hash changes the original hash too?

I ran into a bit of a strange issue, if I attempt to call delete_at on a cloned Hash which happens to have an array as one of it's key-values it will also delete from the original Hash. Is there any ...
-2
votes
1answer
50 views

How do I implement a tree shaker operation? [closed]

I need an operation which I call shake_tree. I have implemented it using a recursive algorithm, using only basic ruby-Fortran (referencing the old quote "You can write Fortran code in any language."), ...
0
votes
1answer
51 views

Ruby object initialization: params, hash, vanilla?

I ran into some confusion over when/why or if it is just a matter of preference when initializing a method with a hash type structure. class Person1 attr_reader :name, :age def ...
0
votes
5answers
75 views

issue with sum of values for similar keys in ruby

I have the following array [["a", " 3"], ["a", " 5"], ["b", " 5"], ["c", " 2"], ["a", " 5"], ["a", " 5"], [ "b", " 4"], ["c", " 1"], ["c", " 2"], ["d", " 3"]] I am looking to get the following ...
1
vote
1answer
36 views

Built-in way to flip ruby hash associations

Assuming I have a ruby has with one-to-one correspondence, is there some built-in method to reverse associations in a ruby hash? I would prefer doing this without explicitly looping through the keys. ...
2
votes
1answer
44 views

How to build a hash in javascript and post it to the server

I'm building a RESTful web application with ruby + sinatra. The data is stored in a MongoDB database and I use MongoMapper to do this. One of my models has a nested hash key: {'Key' => ...
2
votes
2answers
52 views

How to retrieve Ruby/Sinatra params from array of params?

My ExtJS frontend sends such a param hash to my Sinatra backend: {"_dc"=>"1365959782607", "page"=>"6", "start"=>"250", "limit"=>"50", ...
3
votes
2answers
44 views

How do I return a hash with a case statement?

I am trying to write a function that takes the day number of the date, for example, today (March 29) is the 88th day of the year. It then returns a hash containing the month, and the day in the month: ...
1
vote
4answers
115 views

How to make Ruby hash of arrays from array

I'm a Perl developer trying to learn Ruby... So, I'll demonstrate in Perl what I'm trying to accomplish in Ruby and then summarize at the end... #!/usr/bin/perl -w use strict; use Data::Dumper; # ...
1
vote
2answers
72 views

Using JSON to write an array of hashes to a file?

Currently I am doing this: badLinks = Array.new badLinksFile = File.new(arrayFilePath + 'badLinks.txt', 'w+') badLinksFile.puts badLinks.to_json The array badLinks contains the hashes and is: ...
2
votes
2answers
67 views

Using Ruby to replace numeric data using simple hashmap

I'm trying to come up with a simple way using Ruby to scramble (or mask) some numeric data, in order to create a dummy data set from live data. I want to keep the data as close to the original format ...
1
vote
3answers
53 views

summing values in a hash

What is the best way to sum hash values in ruby: @price = { :price1 => "100", :price2 => "100", :price3 => "50" } I do something like this right now: @pricepackage = @price[:price1] + ...
1
vote
0answers
63 views

How to make HashWithIndifferentAccess as default for params in Sinatra controllers?

Is it possible to make HashWithIndifferentAccess as default for params in Sinatra controllers like Rails, so that i can use symbols instead of strings in controllers? post '/books' do ...
0
votes
2answers
98 views

ruby nested hash

i just had a quick question, consider this piece of code: class Hash def value_for(keys, value) common = self while keys.size > 1 and !common.nil? common = common[keys.shift] || { ...
5
votes
2answers
98 views

Why isn't this Ruby hash what I thought it would be?

I have this code: $ze = Hash.new( Hash.new(2) ) $ze['test'] = {0=> 'a', 1=>'b', 3 => 'c'} $ze[5][0] = 'one' $ze[5][1] = "two" puts $ze puts $ze[5] And this is the output: ...
0
votes
2answers
82 views

Create a hash map from an array that returns the largest value

I have an array of questions where each question has a category_id and a value. I'd like to map these so that when the key (category_id) already exists in the hash, then the values are added ...
0
votes
1answer
497 views

Creating array of hashes in ruby

I want to create an array of hashes in ruby as: arr[0] "name": abc "mobile_num" :9898989898 "email" :abc@xyz.com arr[1] "name": xyz "mobile_num" :9698989898 "email" ...
2
votes
3answers
76 views

How to combine one hash with another hash in ruby

I have two hashes... a = {:a => 5} b = {:b => 10} I want... c = {:a => 5,:b => 10} How do I create hash c?
0
votes
1answer
145 views

Ruby: Return data grouped by multiple columns

I'm trying group data for a web service. The web service is running on Ruby on Rails and I'm working in my API controller (lets call it the index action of my projects_controller. The table schema ...
-3
votes
2answers
54 views

How to iterate only a specific value position in a ruby hash?

I know the first value of all @@logHash keys contains IP addresses. I want to iterate just that position to create keys for a new hash if its not a duplicate key. Here is what I have but I know it ...
-1
votes
3answers
401 views

Hash maps in ruby [closed]

Given: hash = { "value" => 4, "details" => "I am some details"}, {"value" => 5, "details" => "I am new details"} can I do something like: hash.each do |key, value| puts "#{key} is ...
0
votes
4answers
111 views

Ruby - mapping an array to hashmap

I have an array, and a function that returns a value given a value. Ultimately I want to create a hashmap that has the values of the array as key value, and the result of f(key_value) as the value. ...
1
vote
5answers
102 views

Ruby Hash.new weirdness [duplicate]

Possible Duplicate: Strange ruby behavior when using Hash.new([]) This is a simple one, as I'm lost for words. Why is this happening: 1.9.3-p194 :001 > h = Hash.new([]) => {} ...
0
votes
1answer
25 views

Map an array to an array

I have an array of data and an array of keys that are in a specific order: original_data = ['hello', 'world', 'one', 'two'] keys = [:greeting, :location, :first, :second] I would like to map the ...
0
votes
1answer
60 views

Ruby make 1.8 Hash#select behave like 1.9 Hash#select

In Ruby 1.9: {1=>2,3=>4}.select{|k,v| v>2} gives {3=>4} In Ruby 1.8: {1=>2,3=>4}.select{|k,v| v>2} gives [[3,4]] How can I write a simple piece of code that will give {3=>4} ...
0
votes
2answers
125 views

Looping through XML to create an array of hashes in Ruby

I have the following XML <CallResult> <Success>true</Success> <Result> <ZoneInfo> <Id>3</Id> <Name>test-room</Name> ...
3
votes
3answers
123 views

Getting an array of keys from a hash ordered by the hash's values

I have a hash which is something like this {"red" => 3, "blue" => 1, "yellow" => 3, "green" => 1, "black" => 4} I want to sort and display the top three colors in the order of the ...
0
votes
2answers
96 views

calculating the sum of specific array values in ruby?

Pivotal Tracker is a project management tool that I use. I'm using the Pivotal Tracker Ruby Gem to access the API. I'm trying to create a hash of each member with the number of points that they have ...
4
votes
2answers
1k views

Swapping keys and values in a hash

In Ruby, how do I swap keys and values on a Hash? Let's say I have the following Hash: {:a=>:one, :b=>:two, :c=>:three} That I want to transform into: {:one=>:a, :two=>:b, ...
0
votes
2answers
203 views

merge rows csv by id ruby

I have a .csv file that, for simplicity, is two fields: ID and comments. The rows of id's are duplicated where each comment field had met max char from whatever table it was generated from and another ...
-1
votes
4answers
168 views

Ruby mixed array to nested hash

I have a Ruby array whose elements alternate between Strings and Hashes. For example- ["1234", Hash#1, "5678", Hash#2] I would like to create a nested hash structure from this. So, ...
1
vote
2answers
325 views

Ruby - looping through an array, appending a hash - odd behaviour

I'm confused about the way an array is updated when I loop through it. Here's a made up example that shows the behaviour. people = [{"name"=>"Edward", "age" =>"43", "height"=>"tallish"}, ...
1
vote
2answers
83 views

Looking up an array of keys on an array of hashes in ruby like excel vlookup

This post is very similar to my previous one, but the data structures are different here: Joining an array of keys to a hash with key value pairs like excel vlookup My data from my Mysql2::Result ...
1
vote
1answer
210 views

Joining an array of keys to a hash with key value pairs like excel vlookup

I've got an unsorted array of keys like this: keys = ["ccc", "ddd", "ggg", "aaa", "bbb"] and a hash hash = {"ddd" => 4, "aaa" => 1, "bbb" => 2, "eee" => 5, "fff" => 6} I'd like to ...
4
votes
2answers
133 views

Hash.new{[]} - anything wrong with it?

Looking at @mu is too short's answer to another question, I tried a variation: def anagrams(list) h = Hash.new{ [] } list.each_with_object(h){ |el, h| h[el.downcase.chars.sort] <<= el } end ...
0
votes
2answers
1k views

How to use Koala Facebook Graph API?

I am a Rails newbie. I want to use Koala's Graph API. In my controller @graph = Koala::Facebook::API.new('myFacebookAccessToken') @hello = @graph.get_object("my.Name") When I do this, I get ...
0
votes
1answer
125 views

using gets.chomp twice in a one line call to a nested hashmap - ruby

what is the best way of using gets.chop for the following example? user = {} user["list"] = [ {gets.chomp => {gets.chomp.delete(' ') => rand(1000000000000)} } ] I can think of: a = gets.chop ...
0
votes
3answers
54 views

What are values mapped to?

I don't understand how Ruby hashes work. I expect these: a = 'a' {a => 1}[a] # => 1 {a: 1}[:a] # => 1 {2 => 1}[2] # => 1 How does this work? {'a' => 1}['a'] # => 1 The ...
0
votes
3answers
229 views

Iterate Hash constants in Ruby

I have the following Ruby module: module Test Constant1 = { :key1 => :value1, :key2 => :value2 } Constant2 = { :key1 => :value1, :key2 => :value2 } end ...
1
vote
3answers
713 views

Usage of integers as hash keys

Is it appropriate to use integers as keys in a Ruby hash? Every example from documentation shows a string or symbol being used as a key, but never an integer. Internally, would integers somehow get ...
-1
votes
1answer
152 views

Ruby: Understanding Hash from Rufus-Scheduler

I am writing an app that is utilizing the Rufus-Scheduler Ruby Gem. This is what a returned hash looks like when display ALL running jobs... {"Rufus::Scheduler::EveryJob_2154902980"=>#, @jobs=[#, ...
0
votes
1answer
330 views

ruby hash to java hashmap using rjb

How can I pass a ruby hash to a java constructor which will store it in a HashMap? I tried the following code, but it throws a "can't convert to java type" exception: ...
13
votes
6answers
828 views

Is there a clean way to avoid calling a method on nil in a nested params hash?

I'm interested in getting the nested 'name' parameter of a params hash. Calling something like params[:subject][:name] throws an error when params[:subject] is empty. To avoid this error I usually ...
0
votes
2answers
562 views

Ruby - efficiently storing data in deeply nested Hash?

I'm writing a script the stores db info in a hash to be later available for easy access. My code looks something like this: my_hash = {} connection.query("select * from ...").each_hash do |row| ...
0
votes
0answers
279 views

Ruby: getting a hash of file names and directories

I'm writing a small Ruby program to list directory differences between two folder locations. I'm using Dir["path"], which returns an array. I'm iterating over that array to put it into a hash map ...
78
votes
1answer
26k views

Check if a specific key is present in a hash or not?

I am working on rails and I want to check whether user key is present or not in session hash. How can I check this? PS: I don't want to check whether this value is nil or not. I want to check weather ...
2
votes
8answers
990 views

How do I map unique values from a multi-level array to a hash of value=>array?

I have an array that looks something like this: [[100, "one"], [101, "one"], [102, "one"], [103, "two"], [104, "three"], [105, "three"]] What I would like to do is create an array of hashes ...
0
votes
1answer
145 views

Reducing the depth of a Hash object

I have a hash object from an ActiveRecord. I'm going to be calling to_json on it, but I am looking to reduce the depth of the object that is being returned. Here is what my find looks like: @tags = ...