Displaying 20 results from an estimated 3000 matches similar to: "Rails Core Weekly June 19 - July 2 2006"
2006 Aug 06
0
Rails Core Weekly July 16 - August 6
Rails Core Weekly July 16 - August 6
Rails Core Weekly summarizes the rails-core mailing list, a list
dedicated to Ruby on Rails internals and its development. RCW is
brought to you by Rodney Ramdas and proofread by the good people of
The Caboose (http://blog.caboo.se/) for accuracy.
RSS feed and RCW home:
http://www.pinupgeek.com/articles/category/rails-core-weekly-news
The ruby on rails
2006 Jun 11
3
[SUMMARY] Rails Core Weekly June 5 - June 11
Dear list,
This weeks RCW has a slightly different format than before. After all,
since what we want is less bloat, this RCW is less verbose. Please do
let me know what you think off-list.
*Interesting stuff on the Rails Timeline*
_Fixed and commited to trunk:_
An issue with not null columns in SQLite3 migrations(<a
2006 Jun 04
0
[SUMMARY] Rails Core Weekly May 29 - June 4
Rails Core Weekly May 29 - June 4
Dear List,
Another week has passed, here''s RCW, the McCartney Edition:
This weeks kicks of with Josh Susser fixing has_and_belongs_to_many
#create method to properly populate joins with new records
:http://www.ruby-forum.com/topic/67478#new. Check out his test:
def test_create_by_new_record
devel = Developer.new(:name => "Marcel",
2006 Jul 16
1
Rails Core Weekly July 2 - July 16
This is another edition of Rails Core Weekly, affectionately known as
RCW. A much nicer pre-web 3.0 version is available from the following
url:
http://www.pinupgeek.com/articles/category/rails-core-weekly-news
We have an Atom/RSS feed available there as well.
Rails Core Weekly summarizes the rails-core mailing list, a list
dedicated to Ruby on Rails internals and its development. RCW is
2006 Jun 18
0
Rails Core Weekly June 11 - June 18
This is another edition of Rails Core Weekly, affectionately
known as RCW. A much nicer pre-web 3.0 version is available
from the following url :
http://www.pinupgeek.com/articles/category/rails-core-weekly-news
We have an Atom/RSS feed available there as well.
Rails Core Weekly summarizes the rails-core mailing
list, a list dedicated to Ruby on Rails internals and
its development. RCW is
2006 May 28
0
[SUMMARY] Rails Core Weekly (May 23 - May 28)
Rails Core Weekly May 23 - May 28
[ http://wrath.rubyonrails.org/pipermail/rails-core/2006-May/001500.html ]
On may 23 I just missed an opportunity to report on a patch
(http://dev.rubyonrails.org/ticket/5167) politely submitted by
Francois Beausoleil that adds a generator for observers. Marcel
Molina Jr. hates repeating himself so a generator for observers is
most welcome. The patch is applied
2004 Sep 10
0
[viral@debian.org: [rcw@debian.org: Re: Patches to abcde to include support for flac format.]]
(Viral: I'm forwarding your message to the FLAC mailing list)
----- Forwarded message from Viral <viral@debian.org> -----
Date: Fri, 3 Aug 2001 00:00:07 +0530
From: Viral <viral@debian.org>
To: mdz@debian.org
Subject: [rcw@debian.org: Re: Patches to abcde to include support for flac format.]
Hi,
I patched abcde so that it can encode flac files. The patch will not
be included in
2003 May 29
0
Course***Advanced R/Splus Programming in Princeton, San Francisco, etc***June/July 2003 by XLsolutions Corp.
XSolutions Corp (www.xlsolutions-corp.com) is proud to announce
a 2-day "Advanced R/Splus programming" taught by R Development
Core Team Guru!
*********Princeton, NJ ----------> June 19-20, 2003
*********San Francisco ----------> July 24-25, 2003
*********Boston, MA ----------> TBD
*********Washington DC ----------> TBD
Early-bird discount ends May 31!
2008 May 20
0
6 Courses: Upcoming June-July 2008 R/S+ Course Schedule by XLSolutions Corp
Our June-July 2008 R/S+ course schedule is now available. Please check
out this link for additional information and direct enquiries to Sue
Turner sue at xlsolutions-corp.com Phone: 206 686 1578
Can't see your city? Please email us!
www.xlsolutions-corp.com/courselist.htm
(1) R/S System: Advanced Programming
*** San Francisco / July 28-29, 2008 ***
*** Seattle / July 28-29, 2008
2006 May 10
0
Courses - R/Splus Advanced Programming ***by the R Development Core Tean Guru In Seattle and San Francisco ***June/July***
XLSolutions Corporation ([1]www.xlsolutions-corp.com) is proud to
announce
our*** R/S Advanced Programming ***courses in Seattle and San
Francisco
this summer by the R Development Core Team Guru!
(1) R/Splus Advanced Programming *** Seattle/June 8-9, 2006 ***
*** San Francisco / July 13-14, 2006
***
2009 Jan 20
0
alias_method_chain in Facebooker Causing Stack Level Too Deep
I installed the Facebooker plugin and upon placing it on a staging server, I
keep running into stack level too deep errors. It seems to stem from
Facebooker using alias_method_chain to override some of the
ActionController methods. I believe it''s getting loaded twice causing
confusion. I''ve tried various methods include wrapping a unless
respond_to?(:method) around the
2006 Dec 26
0
alias_method_chain vs. redefined method with super
I''m trying to fully understand the subtleties of using
alias_method_chain to refine method behavior versus redefining a method
and calling super. I have a simple data model (a music collection) that
I often use to evaluate web frameworks, and I''m trying to get it working
on Rails 1.2.0RC1.
Specifically, I have three classes which subclass a common Artist class:
- Band
2007 Apr 12
0
Does Ferret have problems with #alias_method_chain ?
Hi all,
I have this in my class:
class Party < AR::B
acts_as_ferret :store_class_name => true, :remote => true,
:fields => (self.content_columns.map(&:name) rescue []) +
%w(main_identifier)
class << self
# #count is also defined, omitted for clarity
def find_with_destroyed_scope(*args)
with_destroyed_scope do
2006 Aug 16
0
acts_as_paranoid and alias_method_chain
when i require acts_as_paranoid I''m getting: undefined method
`alias_method_chain'' for #<Class:ActiveRecord::Base> (NoMethodError)
It happens in acts_as_paranoid''s init.rb. here''s the whole file. the
alias_method_chain is near the bottom. please advise.
class << ActiveRecord::Base
def belongs_to_with_deleted(association_id, options = {})
2009 Oct 21
3
alias_method_chain and ActiveSupport::TestCase
I''m trying to add some functionality to the setup method of all my
tests.
I added a method called setup_with_ts in the test_helper and chained
it using alias_method_chain :setup, :ts and that works great for every
test that does not define setup in the test.
So for my unit tests i tried also defining the same method
setup_with_ts in a
class ActiveSupport::TestCase
def setup_with_ts
2007 Sep 14
1
Bug#441342: Nut can kill power to UPSs that never went on battery
tags 441342 upstream
thanks
Hi Robert,
thanks for your report and investigation.
We will check to fix this and give you news back.
2007/9/9, Robert Woodcock <rcw at debian.org>:
> Package: nut
> Version: 2.2.0-2
> Severity: important
>
> I recently set up nut at work to monitor the 15 APC Smart-UPS 1500s we have
> in our server room. Since we currently only have one
2007 Mar 22
0
`alias_method_chain': undefined method `find' for class `ActiveRecord::Base' (NameError)
I can''t seem to be able to override the :find method in the model base
class, for example, in /lib/usermonitor.rb:
module ActiveRecord
module UserMonitor
def self.included(base)
base.class_eval do
alias_method_chain :find, :user
def current_site
Thread.current[:user]
end
end
end
def find_with_user(*args)
...
end
end
2006 May 31
0
Asterisk Bootcamp in Europe :: June 12-16 and the Asterisk SIP Masterclass in Chicago, July 2006
** Asterisk Bootcamp in Stockholm, Sweden
The next Asterisk Training is the Edvina.net Asterisk Bootcamp - the
class we have been giving for over a year under the brand name
"Astricon Training". The same teacher, the same material and a new name.
All students have a PC and will install a fully working Asterisk PBX.
During the week, we will build a business PBX configuration as
2010 Sep 21
1
reshape is re-ordering my variables
Is it an undocumented (at least I missed it if it's documented) feature
of the reshape function to do numeric variables followed by character?
I ask because that seems to be the case below.
> str(rcw)
'data.frame': 23 obs. of 21 variables:
$ ICU : int 1 18 17 9 22 19 6 16 25 26 ...
$ Q6.RC.1 : chr "SM" "JF" "IW"
2009 Dec 29
1
undefined method `alias_method_chain' for I18n::Backend::Simple:Class
Hi,
We are running RE:
ruby 1.8.7 (2009-06-12 patchlevel 174) [sparc-solaris2.10], MBARI
0x8770, Ruby Enterprise Edition 2009.10
I tried a simple web app with a controller rendering a text and is
working in my PC but on the server I get:
Error message:
undefined method `alias_method_chain'' for
I18n::Backend::Simple:Class
Exception class:
NoMethodError
Application root: