Displaying 8 results from an estimated 8 matches for "selder".
Did you mean:
elder
2008 May 22
14
Specifying certain tables NOT to be cleared each example?
Is it possible to specify that certain tables not be cleared on each
example.
I''ve inherited a project where a good amount of enumerated data is
stored in the database (US States, statuses, about 15-20 tables worth.
Over all, it''s a reasonable decision that leads to solid production
code (acts_as_enumerated is good). This data is read-only and
relatively static; any
2007 Jan 31
1
RESTful Resources/ Caching Issue?
...e cache.
I''m assuming this has to do with the similarity of the URL
http://www.myhost.com/xxx/1
vs.
http://www.myhost.com/xxx/1;edit
Needless to say this is an annoyance as best (can''t cache pages
associated with RESTful objects) to a pretty big bug at worst.
Thanks,
Andrew Selder
--~--~---------~--~----~------------~-------~--~----~
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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2008 Mar 04
2
Action Mailer throwing underscores on template name
I''ve recently run into a problem with one of my applications that
refuses to send emails using ActionMailer.
Looking at the log, it become obvious what''s happening, the system is
looking for templates with underscores at the end. Notice the
exception_notification_ .
For example:
ActionView::ActionViewError (No rhtml, rxml, rjs or delegate template
found for
2008 Jun 01
0
Mixing mocking frameworks?
...nicely with Mocha being declared in the spec.opts file.
I think it would be nice to be able to set a mock framework per
example group or spec file.
I''ll grab a fork and start looking at it, but if you have any
suggestions, they''d be greatly appreciated.
Andrew
--
Andrew Selder
Lead Developer
Boston Logic Technology Partners
aselder at bostonlogic.com
www.bostonlogic.com
www.logicmaps.com
www.logicrentals.com
2008 Jun 03
5
Autotest/RSpec 1.1.4/Rails 2.1 Infinite Loop?
I just got back from RailsConf, and upgraded on of my development apps
to 2.1, and now autotest is going into an infinite loop. It runs tests
continuously instead of waiting for files to be saved before rerunning.
Has anybody else seen this, or know how to get around it?
Thanks,
Andrew
2008 Jun 02
4
Cannot find sqlserver adaptor for ActiveRecord
I have been trying to find the adtiverecord adaptor for MS SQL server
and attempted to install with the command found on the
http://wiki.rubyonrails.com/rails/pages/HowtoConnectToMicrosoftSQLServer
wiki page:
gem install activerecord-sqlserver-adapter --source=http://
gems.rubyonrails.org
I then got the error message:
ERROR: could not find activerecord-sqlserver-adapter locally or in
a
2008 Jun 20
0
Queries in development log using ODBC adapter
Hi all.
I''m in a project right now where I''m using the ODBC adapter to connect
to a MS Sqlserver DB (believe me, it''s not my choice).
Is there any way to get the SQL queries being generated a la the log
when using MySql?
Thanks,
Andrew
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2008 Aug 01
1
Escaping SQL when using connection.execute?
Hi all,
Here''s the situation: I''m writing a Rails app that connect to a SQL
Server DB via the ODBC adapter. As an outside, non-negotiable
requirement, and writes to the DB must be performed using stored
procedures. (I know, I know... it sucks).
When constructing the query string, how do I go about escaping the
parameters I want to insert.
My first thought was Rail''s