Displaying 20 results from an estimated 32 matches for "wilger".
Did you mean:
dilger
2005 Dec 16
3
Productize on 1.0
Hi,
Has anybody tried using the Productize plugin on a recent Rails install?
The pages on RubyForge http://rubyforge.org/projects/productize/ seem to
indicate the development has sort of stalled, or perhaps it''s stable as
can be.
Just thought I''d ask for before I give it a go..
Cheers,
Jeroen
2005 Dec 17
2
Testing RoR
I jumped into RoR @ about 3 AM. I think I''ve got it running, but need a
simple sanity check. I''ve been through as many references as possible,
but thought that I''d ask the list here for references. This list sort of
almost being "live".
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Sep 16
1
Class Table Inheritance - ?
Is class table inheritance possible with MySQL and Rails? I saw John
Wilger''s cool yet complicated Postgres implementation. I have looked
for a solution, but I can not find one. Are there any plans for class
table inheritance for Rails in the future?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to t...
2005 Dec 31
1
Error when Testing AWS API (ArgumentError: illegal refid http://test.host/login)
...ne could point me in
the right direction (or confirm that it''s a bug and that I''m not just
going nuts), it would be much appreciated.
Also, the web service itself seems to work just fine when I test it by
hand using the web service scaffolding on the controller.
--
Regards,
John Wilger
http://johnwilger.com
-----------
Alice came to a fork in the road. "Which road do I take?" she asked.
"Where do you want to go?" responded the Cheshire cat.
"I don''t know," Alice answered.
"Then," said the cat, "it doesn''t matter.&quo...
2005 May 01
5
Example using Builder::XmlMarkup and .rxml files?
Greetings,
I''m a newby to both "R"s in RoR. I would like to use Builder::XmlMarkup
to generate my pages. If there is a working downloadable example
somewhere, that would probably be enough. Otherwise, here''s what
I want to do:
With the following controller:
class AccountsController < ApplicationController
layout ''accounts''
model :account
2006 Aug 17
1
expectations on stubs (stubba) or mock methods on existing classes?
...port_line )
end
I would expect that to either a) raise an exception because it''s
invalid or b) fail the test since the implementation of Product.import
does not currently call Product.create. Instead, the test passes.
Any ideas how I can make this work as expected?
--
Regards,
John Wilger
http://johnwilger.com
-----------
Alice came to a fork in the road. "Which road do I take?" she asked.
"Where do you want to go?" responded the Cheshire cat.
"I don''t know," Alice answered.
"Then," said the cat, "it doesn''t matter.&quo...
2004 Nov 19
18
SingleTableInheritance Considered Harmful
Here''s the text of a quick note I''ve added to the Inheritance wiki page.
I''m actually proposing that it would be a good idea to drop automatic
single table inheritance and force people to declare it explicitly.
There are two reasons for this:
1. Implicitly doing it unnecessarially limits your use of
inheritance where you really need it: in your object-oriented
2005 Feb 09
1
[DEFECT] ''validates_inclusion_of'' not working as expected (couldn''t post to Trac as it gave me an error)
...gems/actionpack-1.4.0/lib/action_controller/base.rb:274:in
`process''
/usr/local/ruby/lib/ruby/gems/1.8/gems/actionpack-1.4.0/lib/action_controller/test_process.rb:246:in
`process''
./test/functional/tasks_controller_test.rb:42:in `test_create''
---
--
Regards,
John Wilger
-----------
Alice came to a fork in the road. "Which road do I take?" she asked.
"Where do you want to go?" responded the Cheshire cat.
"I don''t know," Alice answered.
"Then," said the cat, "it doesn''t matter."
- Lewis Carrol, Ali...
2005 Mar 04
3
Boolean values
...; 1. Re: optimization (Bob Aman)
> 2. Re: bug in postgresql ''now'' time handling?? (Ara.T.Howard)
> 3. Part 2 of ONLamp.com Rails article is online (Curt Hibbs)
> 4. Rails and SCM Best Practices (Patrick Franz -- ML)
> 5. Re: Rails and SCM Best Practices (John Wilger)
> 6. Re: Rails and SCM Best Practices (Scott Barron)
> 7. Re: Rails and SCM Best Practices (evan)
> 8. Re: Rails and SCM Best Practices (Patrick Franz -- ML)
> 9. Re: Rails and SCM Best Practices (Patrick Franz -- ML)
>
>
> ---------------------------------------------...
2005 Aug 17
53
Everyone wants a RoR framework
It seems like everyone now has a RoR type framework:
Perl:
http://dev.catalyst.perl.org/
PHP:
http://cakephp.org/
Python:
http://www.django.com
ASP.NET:
http://www.castleproject.org/index.php/Main_Page
etc., etc.
Has a revolution begun with the birth of these "Web 2.0" frameworks?
Its going to be interesting when the tech media begins its mass hype
like it did SOAP, XML, etc. a
2005 Mar 04
5
Rails and SCM Best Practices
Hi all--
I''m starting a new Rails project and I''m preparing to import it into my
local Subversion repository. In the past, I''ve just imported the entire
set of files generated by ''rails'', but I''m starting to wonder if that is
the best way to approach things.
For instance, it makes sense to add the log/ directory, but probably not
the
2007 Jan 17
4
changing the default behaviour of to_xml for has-many: associations
I recently submitted a patch to work around an issue I was having &
added a new optional behaviour to the to_xml method but on further
reflection I wonder if the default behaviour should be changed.
The gory detail, documentation and test case is all here...
http://dev.rubyonrails.org/ticket/7004
Here''s a brief example...
class Person < ActiveRecord::Base
has_many: children
2006 Mar 07
0
Fwd: [Ruby on Rails] #4112: PostgreSQL views not supported when dumping schema.rb file
...perhaps we can put our
heads together to come up with a workable solution.
---------- Forwarded message ----------
From: Ruby on Rails <davidhh@wrath.rubyonrails.com>
Date: Mar 7, 2006 7:57 AM
Subject: [Ruby on Rails] #4112: PostgreSQL views not supported when
dumping schema.rb file
To: johnwilger@gmail.com
#4112: PostgreSQL views not supported when dumping schema.rb file
----------------------------------+-----------------------------------------
Reporter: johnwilger@gmail.com | Owner: David
Type: defect | Status: new
Priority: normal...
2006 Jan 05
2
model with type attribute
Dear all,
I have a table with a column named "type" and I ''d like to access the type
field of the correspondant model object but I get a deprecation warning when
I use the following code :
modelObject.type
"type deprecated use class instead"
How can I access such a named field in rails ?
Johan
Johan Duflost
Analyst Programmer
Belgian Biodiversity Platform (
2005 Dec 22
1
Ask Slashdot: Is Ruby on Rails Maintainable?
Ask Slashdot: Is Ruby on Rails Maintainable?
Posted by Cliff on Wednesday December 21, @12:51PM
from the would-you-want-to-edit-the-code-later dept.
kale77in asks: "I''ve become a big fan of Ruby over the past few months, but I''m not at all sure about Ruby On Rails. Automatic code generation sets of alarm bells in my mind; so that, to RoR''s promise of
2005 Dec 28
1
advice needed: damagecontrol or CIA?
Hi,
I''m looking to set up a continuous integration server for a rails
application. This application is under source control with darcs.
I''ve read about damagecontrol and CIA, and wonder what experience you
can share so I can make my mind.
CIA seems to work with a post-commit so I should be able to use it
with darcs. And as it is in the rails svn repository, I have good hope
2005 Dec 31
1
Custom Classes?
Ok, a bit of a possibly dumb question here.
When working on Rails apps and I want to add a few custom class rb files
to the project, where exactly should I put them? What folder is the
best to place them in that things in the model and controller folder can
see and use them?
Thanks,
- Mark
--
Posted via http://www.ruby-forum.com/.
2005 Dec 31
1
search engine friendly URL params?
I have a site which is a listing of realestate offerings, written
currently in PHP.
With complicated .htaccess rules, going to the url
site.com/listings/226/aid/29/ref/contact leads to the page
listings/prop_view.php?id=226&aid=29&ref=contact... the beauty of this
is that the link is SEO friendly and thus gains high rankings in the
engines because they will reach it.
question is,
2005 May 01
2
Active Record and Postgres table inheritance?
Active Record doesn''t appear to have support for table inheritance implemented
in PostgreSQL as described in
http://www.postgresql.org/docs/8.0/interactive/ddl-inherit.html.
Is anyone working on such a thing or is their some compelling reason to avoid
this feature?
I am new to Ruby and Rails, but it doesn''t seem like it would be to difficult
to adapt the current Active
2005 Jul 07
2
0.13 ajax sortable lists and acts_as_list
I''m trying to figure out a good way to get acts_as_list and the new
sortable lists to play nicely together, but they don''t seem like
they''re designed to mesh well. The ajax sortable lists post a
complete ordered list of ids back to the server after every change,
but acts_as_list is designed to deal with diff-like changes, rather
than reordering the whole list from