Displaying 20 results from an estimated 45 matches for "onkey".
Did you mean:
monkey
2007 Sep 07
6
ActiveRecord::Base#update_all expected behaviour
Hi
I noticed that if in my code I use the following:
Photo.update_all("title = ''Ruby rocks'' ", "id IN (#{@photo_ids})")
All my objects are properly updated but none of the filters/callbacks
are triggered. Is that what''s expected?
I have a before_update filter set on the Photo class and it gets
totally ignored, I guess the only way to solve this
2008 Jan 02
3
Submitted a patch, got pluses, what now?
Hello Rails people,
I submitted a patch recently to get rid of an annoying exception raised when
an AR
object is created - http://dev.rubyonrails.org/ticket/10556 , had some
people review it,
got some pluses... What am I supposed to do now?
Can anybody advise or just review the patch and take care of the issue?
Thanks!
--
Best regards,
Yuri Leikind
2007 Jul 25
5
set_default_values rocket science - continuing after_initialize/after_find misfeature
...1925
It also lets you make use of other attributes ( set by supplying
attributes to Model.new call or even those set by set_default_values
call ) in setter method/proc.
If people like this approach, I''ll add tests to patch, else will just
close the ticket :)
--
Cheers!
- Pratik
http://m.onkey.org
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to rubyonrail...
2007 Aug 21
2
counter cache
Hi,
I have two models, employees and departments, and i am using
counter_cache to count the number of employees in a department.
This works great, but employees can change their departments, and the
counter cache does not get updated to reflect this.
Is their a built in way to do this, or do i have to implement my own
before_save hook
thanks
--~--~---------~--~----~------------~-------~--~----~
2007 Aug 07
3
XSendFile problem
I am trying to user XSendFile in my application.
I have installed the plugin and in the environment.rb included this line
XSendFile::Plugin.replace_send_file!
but it is unable to read the files.
Earlier i had used send_file but it increases the mongrel size and slows
down the application.
Any suggestions about how to make it work?
--
Posted via http://www.ruby-forum.com/.
2007 Dec 11
2
Patch 10463: has_many through using uniq does not honor order
Hi,
I''ve just submitted a patch for ActiveRecord;
http://dev.rubyonrails.org/ticket/10463
The patch includes new fixtures because I could not find a applicable
combination among the existing fixtures. I hope that''s okee.
Please +1 or comment it.
Thanks,
Remco
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
2007 Aug 23
3
test/mocks/ in rails directory structure
...t && test/mocks/test directories ?
If someone does, test/mocks/development doesn''t really seem like a
nice place for putting development environment mocked classes. May be
mocks/ should be moved to RAILS_ROOT ? Or may be it should be removed.
Views ?
--
Cheers!
- Pratik
http://m.onkey.org
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to rubyonrail...
2007 Aug 07
2
Making Validations Optional
Hello,
I am working with URL validations. I want this validation to be
optional if the data exists in the form submission. I have tried
several things.
validates_format_of :website,
:if => params[:organization][:website],
:with => /((http|https):\/\/)?[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]
{2,5}(([0-9]{1,5})?\/.*)?/,
:message => "Please enter a valid url"
Of
2007 Dec 02
5
walkthrough: Rails 2.0 startup process
I haven’t found a complete big-picture walkthrough for the Rails
startup process when I looked for one recently.
There are some really useful resources about this but they are for
Rails 1.2 and each of them only covers certain parts of the process.
Thus, I’ve taken some notes while reading to the Rails code and
compiled the following guide from them.
2010 May 27
1
Question on Rails 3 : forms && ORM && ActiveModel
...terface, can I use that to have the
desired effect?
Also, where can I find some good and up to date tutorials on Rails3 ?
2) ORM lazyness
I like that Django''s ORM and in DBIx::Class, the resultsets
constructed are lazy. I see that in Rails 3 there''s a new Query
API ... http://m.onkey.org/2010/1/22/active-record-query-interface
Is that ready for use, is it development?
Or should I just use something like Sequel ... can that be plugged-in
to Rails?
Thanks,
--
Alex
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" gro...
2007 Aug 02
4
ActiveRecord Limitation (Advance)
Or is it ?
Need to be able to :-
@search =
Form.find(:all, :include=>[:form_type, :form_type_items], :conditions=>....)
I need in the Form model a :form_type_items, the question is, what is
the relationship type?
Current Models:-
Form
belongs_to :form_type
FormType
has_many :form_types
has_many :form_type_items
FormTypeItem
Belongs_to :form_type
Form
----------------
| id |
2007 Aug 09
4
no route found to match "/rails/info/properties" with {:method=>:get}
After a new install (Ruby, Rails en Gem) on a newly installed OS. I''m
getting a ''no route found to match'' error. I Googled a bit, and saw
that more people had this problem with older rails versions. I''m on
Ruby 1.8.6, Rails 1.2.3 and Gem is 0.9.4, on a Mac running OS 10.4.9.
Any suggestion is welcome.
Regards,
Robert.
2007 Oct 18
9
with_scope issue
I have the following code:
class User < ActiveRecord::Base
has_many :requests do
def find_active(options = {})
with_scope :find => { :conditions => ["requests.active = ?",
true] } do
find(:all, options)
end
end
end
end
Executing user.requests.find_active results in the following SQL:
SELECT * FROM requests WHERE (( requests.user_id = 10 ) AND
(
2007 Jul 18
16
Edge Rails namespaced routing
Hi,
I was wondering if anyone came across a similar scenario when working
with namespaced routes with edge rails.
Consider an application with controllers customers and products that
also have other resources.
map.resources :customers do |customer|
customer.resources :notes
customer.resources :tags
end
map.resources :products do |product|
customer.resources :notes
customer.resources
2007 Oct 24
5
Utility that checks outdated patches
I just noticed I frequently encounter patches that need to be updated
because of applied changes. Maybe this can be automated? Not
automating the "updating of the patch" part, but the part where a
comment is posted to the ticket so the submitter is informed.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2008 Dec 23
3
rake doc:guides error
I have Rails 2.2.2 installed and get the following message when I try
to generate the rails guides:
Family-iMac:expences Dad$ rake doc:guides
(in /Users/Dad/Documents/Rails/Apps/expences)
rake aborted!
Don''t know how to build task ''doc:guides''
(See full trace by running task with --trace)
Family-iMac:expences Dad$ rake doc:guides --trace
(in
2007 Aug 03
6
Problems saving an uploaded image to an app folder
In my app, the user can upload images. Rather than shoving the image
data in the database, i want to put the filename and content type into
the db, then rename the image with its record''s id number, and then save
it into a local folder in my app folder. (hardcoded for now)
All the details are being saved to the db ok, so as far as i know the
"picture_file=" method is fine.
2007 Jun 28
23
DRYing link_to with a symbol
Hi, I just put in a patch that allows you to DRY up this:
<%= link_to @company.name, @company %>
to this:
<%= link_to :name, @company %>
The symbol indicates the method to be called on the object passed in
the link_to options.
http://dev.rubyonrails.org/ticket/8789
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
2007 Jun 30
1
HABTM ReadOnlyRecord
Hi.
I get this error:
** ActiveRecord::ReadOnlyRecord **
When i try to update a table called characters_learning_abls that is a
habtm relation between characters and learning_abls.
The characters_learning_abls table looks like this:
**
character_id int(11) unsigned
learning_abls_id int(11) unsigned
amount double
**
Why cant i update this table though the
**
2007 Aug 02
1
Foreign Key Use
Hi can any1 guide me ,How can i use foreign Key concept in rails, I m
using Migrations to create tables, Also i want to know diffrent fields
we can use while creating tables. I mean like String,Date time,
timestamp,,,,Plz tell me various fields so that i can Make proper use of
them as per requirement.
Thank u in advance
--
Posted via http://www.ruby-forum.com/.