4,057 reputation
416
bio website
location
age
visits member for 1 year, 4 months
seen 2 days ago
stats profile views 151

2d
awarded  Notable Question
May
15
asked Ruby 1.8 BigDecimal
Apr
29
revised Change version of Ruby on Rails
added 686 characters in body
Apr
29
answered Change version of Ruby on Rails
Apr
24
comment edit link does not work for editing comments in ruby on rails blog
In edit action add @article = @comment.article
Apr
24
comment edit link does not work for editing comments in ruby on rails blog
Its because you are using Comment.new (ie) form_for ([@article, Comment.new]) do |f| try form_for ([@article, @comment]) do |f|
Apr
18
answered Rails background task on post request, returns json on completion
Apr
18
revised Permutating Result Set of My Query, Something is wrong
added 62 characters in body
Apr
18
answered Permutating Result Set of My Query, Something is wrong
Apr
17
answered There is no real 'prepared statement' in rails?
Apr
15
awarded  Popular Question
Apr
14
revised RoR: concatenate two variables and passing parameters?
added 175 characters in body
Apr
14
answered RoR: concatenate two variables and passing parameters?
Apr
12
comment After_save, After_create (order) (Ruby on rails)
You can edit your answer to before_save but you can't have id before creating record. So you can't do this.
Apr
12
comment After_save, After_create (order) (Ruby on rails)
Have you checked? See this: api.rubyonrails.org/classes/ActiveModel/…
Apr
12
comment After_save, After_create (order) (Ruby on rails)
I guess #{field_name}_changed? works for before_save. Once record is saved it will lost the changes history.
Apr
12
comment After_save, After_create (order) (Ruby on rails)
id_changed? is an method in rails or custom method?
Apr
11
revised Gender method not accessible in rails, even though it's in the table
added 90 characters in body
Apr
11
comment Gender method not accessible in rails, even though it's in the table
(cloth.size == "2T-3T" || "4T-5T") will return false when cloth.size value is 4T-5T
Apr
11
answered Gender method not accessible in rails, even though it's in the table