0
votes
4answers
97 views
what Applications can you make with the programming language Ruby?
what Applications can you make with the programming language Ruby? Can you name a few commercial/famous ones written only in Ruby?
What i really like to know is can you just learn Ruby instead of …
1
vote
3answers
41 views
Managing many Ruby on Rails applications of different versions
I'm learning Ruby on Rails with the AWDR book and have had to be specific about which version of Rails and Ruby that I am running on my local machine. I have just discovered that I need to roll back …
1
vote
7answers
52 views
Getting ruby function object itself
In Ruby, everything is supposed to be an object. But I have a big problem to get to the function object defined the usual way, like
def f
"foo"
end
Unlike in Python, f is the function result, …
1
vote
3answers
48 views
Set the display precision of a float in Ruby
Is it possible to set the display precision of a float in Ruby?
Something like:
z = 1/3
z.to_s #=> 0.33333333333333
z.to_s(3) #=> 0.333
z.to_s(5) #=> 0.33333
Or do I have to override …
1
vote
4answers
26 views
Using Rails’ ActionView Helpers outside of Rails
What do I need to do to get number_to_human_size to work in a script outside of rails?
4
votes
4answers
74 views
Programmable transparent forward proxy
I'm looking for a way to script a transparent forward proxy such as the ones that users point their browsers to in proxy settings.
I've discovered a distinct tradeoff in forward proxies between …
6
votes
7answers
117 views
Passing hashes instead of method parameters
I see that in Ruby (and dynamically typed languages, in general) a very common practice is to pass a hash, instead of declaring concrete method parameters. For example, instead of declaring a method …
0
votes
1answer
13 views
Is there a way to easily parse the year from the [site.time] property in Jekyll?
Is there a way to just pull the year (or any other element... month, day, etc) from the site.time property that is available to your template file in Jekyll?
Right now it returns, for example: Sat …
1
vote
2answers
16 views
how to put elements from model into select_tag
i have a database Country filled with (obvious) contries. now i would like to display them in the select_tag in my view (like a drop down list).
i tried puttin in options_for_select sth like …
0
votes
2answers
83 views
how to make my first Ruby effort more idiomatic
It would be helpful to pick up Ruby for my new gig so this morning I wrote the following. It takes a PGN file of chess games I've played and indexes them by first move. I'd appreciate any …
2
votes
2answers
37 views
Efficient Ruby LRU cache
What's the most efficient way to build a cache with arbitrary Ruby objects as keys that are expired based on a least recently used algorithm. It should use Ruby's normal hashing semantics (not equal?) …
0
votes
2answers
30 views
adding values to a select box from a controller function (Ruby on Rails)
I have a Rails web application with a select box:
<%= select_tag :foo %>
I'm looking to write a function in the controller which would populate this select box with some values. What code …
8
votes
18answers
410 views
Find the longest common starting substring in a set of strings
This is a challenge to come up with the most elegant JavaScript, Ruby or other solution to a relatively trivial problem.
This problem is a more specific case of the Longest common substring problem. …
1
vote
2answers
58 views
What version of Ruby to use in Why’s (Poignant) Guide to Ruby
I've been following Why's (Poignant) Guide to Ruby for the past few days, and I've noticed some problems with running his examples.
I'm at a crossroads now as to whether I've made a few typos that I …
0
votes
2answers
27 views
undefined local variable or method ‘within’ for User:class
Hi there!
I am working with a book to teach myself Ruby-on-Rails. Ruby version is 1.2.3 and rubygems V 1.3.5.
I start the console by ruby script/console and enter:
user = User.new(:screen_name …
