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

learn more… | top users | synonyms | ruby jobs

3
votes
2answers
262 views
+100

Loading gem at runtime in Rails 3

I have Rails 3.0.x application. I would like to load gems on runtime, without using Gemfile. What I would like to accomplish is to load my application as usual, with regular gems being loaded by ...
0
votes
0answers
66 views
+100

Losing an Attribute When Saving Through an Association w/ Scope (Rails 4.0.0.rc2)

The Code (Rails 4.0.0.rc2) class Track < ActiveRecord::Base has_many :artist_tracks has_many :owning_artists, -> { where(:artist_tracks => { :artistic_role_id => 1 }) }, ...
0
votes
2answers
85 views
+100

How to send the count value using JSON in ROR

I want to send the count value,for count the post i am using thumbs up gem in ROR. Now i want to send the count in json,the vote as post action in def show def index @posts = Post.all ...
4
votes
1answer
93 views
+50

Where is documentation on the embedding API for the Ruby interpreter?

I am looking for a comprehensive, online, documentation resource regarding the embedding of the Ruby interpreter into C or C++ programs, and the API(s) for that purpose. The section on this in the ...
1
vote
1answer
80 views
+50

Ruby seems to corrupt once a day

I have a Red Hat EL6 server (for production). I installed ruby and rubygems from source. # uname -a Linux servername 2.6.32-279.el6.x86_64 #1 SMP Wed Jun 13 18:24:36 EDT 2012 x86_64 x86_64 x86_64 ...
0
votes
0answers
31 views
+150

How to add nested layouts in rails 4 with turbolinks

I am trying to create a page with a nested layout as explained in the rails guides. Problem is that after creating the nested pages, the loading of the nested pages is slowed down a lot because it ...
6
votes
8answers
2k views
+300

Sorting UTF-8 strings in RoR

I am trying to figure out a 'proper' way of sorting UTF-8 strings in Ruby on Rails. In my application, I have a select box that is populated with countries. As my application is localized, each ...
0
votes
0answers
26 views
+100

Accessing the resource inside load/dump

consider the following example module DataMapper class Property class CustomType < DataMapper::Property::Text def load(value) # do stuff and return formatted value end ...
4
votes
4answers
113 views
+200

Rails route scope default based on current_user

I have a route something like: scope ":department", department: /admin|english|math/, defaults: { department: 'admin' } Is it possible to make the default department for this route to be based on ...
1
vote
0answers
37 views
+50

How do I cache a personalised fragment in Rails 4?

My app (Rails 4) allows users to vote on posts. Is it possible to cache the post, but personalise the vote cache so it shows one personalised for current_user? For example, whether the user voted or ...