2
votes
4answers
54 views
Ruby: Creating nested FOR loops (varying depth) for varying number of Arrays.
I have varying number of arrays within one giant array. (is this the right approach?)
parentArray = [[array],[array2],....]
how can i create a series of nested loops for each co …
0
votes
2answers
42 views
recursive nested loops.
Example Scenario: Note, this can be as deep or as shallow depending on the website.
Spider scans the first page for links. it stores it as array1.
spider enters the first link, it …
0
votes
2answers
21 views
One Controller Action or Two for Ruby on Rails pages
I currently have one model, one controller with one action to list all the items in the model.
What I need to do is display different data from the model in two separate views. I …
2
votes
3answers
20 views
In ruby, how to decrypt a string which is encrypted by “crypted” method
In ruby, I encrypt a string using "crypt" method, for example:
str = "123"
strencrypt = str.crypt("aa")
I want to decrypt from strencrypt and obtain the original string. How can …
1
vote
1answer
31 views
Sort collection of object in rails ?
I know I can use something like User.sort {|a, b| a.attribute <=> b.attribute} or User.find and order, but is it a way like comparable interface in Java, so every time I called …
1
vote
1answer
22 views
Running C processes in Rails
Hi there
I make a call just like this:
value = ./simulated_annealing
Which is a C Object file, but Rails tells me it cannot find that file. I
put it in the same dir that the res …
1
vote
2answers
33 views
Initialize in Ruby
I used to have this
public constructor_name() {
this(param)
}
public constructor_name(int param) {
this.param = param
}
in Java and what about ruby do we have this kind of …
0
votes
1answer
35 views
Best way to model these Rails relationships
Hi,
I have the following scenario that I want to model the best way for a Rails application.
I have a contact model that belongs to a company. A contact can create an enquiry so …
0
votes
0answers
16 views
How to upload video on YouTube with Ruby
I am trying to upload a youtube video using the GData gem (I have seen the youtube_g gem but would like to make it work with pure GData if possible), but I keep getting this error: …
3
votes
6answers
162 views
What is a scripting engine?
I've seen here that what sets a programming language apart from a scripting language is the scripting engine. But I don't understand how it works, so I don't know the difference.
…
1
vote
2answers
24 views
Linking to external files in ruby?
Sorry if this question is very easy, but I can't find the answer anywhere. How do you refer to an external ruby file in a ruby script if, for example, the file you want is in the s …
0
votes
2answers
27 views
What gems should I use to have a Ruby app talk to an LDAP server?
My overall goal is to let users of my Rails app authenticate against our organization's ActiveDirectory server over LDAP. (Did I say that right?)
I'd like to try the Ruby ActiveLD …
3
votes
7answers
120 views
Ruby App MVC framwork (not web)
Has anyone heard of a Ruby MVC framework for Apps/Scripts?
When Rails appeared - it was a revolutionary tool because it brought MVC to the masses of web developers and for once fo …
0
votes
1answer
26 views
Bonjour in Ruby
I'm aware of dnssd, being a Ruby library for Apple's Bonjour protocol for network discovery for Mac OS X only, but is there a (relatively recent/complete) library that is cross pla …
0
votes
5answers
83 views
how to write a block that returns a string in ruby
A function takes a string as argument, example fn("string"). i want to pass in different values depending on three of more condiitons, and one approach which is slightly unreadable …
