Displaying 6 results from an estimated 6 matches for "ahmy135".
2012 Jul 03
4
Rails compatibility with Ubuntu
Hi All,
I want to know the compatibility of Ubuntu with Rails. Anyone know
which Ubuntu version support Rails 2.x and Rails 3.x.
--
Mandeep Kaur
http://mandeepsimak.wordpress.com/
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2012 Jan 19
4
redirect_to with a hash instead of parameters
All,
I have numerous places in my codebase like this:
redirect_to :action => ''schedule_by_uid_and_run_date'', :uid =>
@schedule.first.train_uid, :year => @date.year, :month => @date.month,
:day => @date.day
I''d like to replace the :year, :month and :day parameters with a hash
containing the three parameters. @date is an instance of a Date class,
2012 Feb 07
10
Ruby Developer position
Please let me know your interest in following.
Location: Columbia, SC
Duration: 12 months+
Rate: $65/hr 1099/c2c
Required Skills:
RUBY, RAILS, GIT, MYSQL, CUCUMBER, RSPEC, JQUERY, EXCELLENT ORAL AND WRITTEN
COMMUNICATION SKILLS, TEST-DRIVEN DEVELOPMENT, LINUX, OS X, JSON, COMMAND
LINE, SQL, SSH, HAML, SCSS
Thanks
Sandeep
Sandeep Jain
Software People Inc.
www.softwarepeople.us
2010 Jun 24
0
Using searchlogic with acts_as_taggable_on
Hi,
i have 2 model, Merchant and Items and using acts_as_taggable_on
Merchant has_many Items, and i try to find Merchant with search logic
including the tags
class Merchant < ActiveRecord::Base
acts_as_taggable
has_many :items
end
class Item < ActiveRecord::Base
acts_as_taggable
belongs_to :merchant
end
This works
>> Merchant.tagged_with(''Tag 1'')
but
2010 Nov 13
0
Moneta or Rails key store value with file
Hi,
Im trying to find a key value store mechanism on rails 3 that either
use activerecord or file store.
I found moneta but couldn''t find how to use or initialize it on rails
3 environment.
any body could show how to do this ? or maybe there is something other
than moneta i could use.
I just need a uniform and fast way to access setting on my app like
Setting.post_per_page
thanks
2011 Jun 27
0
Delay Job on File upload handler
Hi,
I have developed application with rails 3.0.7 on heroku that target multiple
user with high volume of uploading file (size aprox 400kb).
My question is, does when one user submit a file, are the instance that
handle the request got bounded to that request so other request will have
to wait for it to complete ?
Also, does handling this kind of request are better in a delayed job to
improve