Displaying 9 results from an estimated 9 matches for "denner".
Did you mean:
fenner
2006 Aug 03
5
Database configuration across developers!
Hi,
I have what might be a silly question but is there any way to put some
of the database configuration information into a separate file? For
instance, in config/database.yml I have:
developer_database: &developer_database
adapter: mysql
username: me
password: something
host: 127.0.0.1
development:
<<: *developer_database
database: foobar_development
test:
<<:
2017 Feb 03
3
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
...h.com<http://www.bosch.com/>
Tel. +49(711)811-47379 | Fax +49(711)811-0 | Zeeshan.Haider at de.bosch.com<mailto:Zeeshan.Haider at de.bosch.com>
Sitz: Stuttgart, Registergericht: Amtsgericht Stuttgart, HRB 14000;
Aufsichtsratsvorsitzender: Franz Fehrenbach; Geschäftsführung: Dr. Volkmar Denner,
Dr. Stefan Asenkerschbaumer, Dr. Rolf Bulander, Dr. Stefan Hartung, Dr. Markus Heyn, Dr. Dirk Hoheisel,
Christoph Kübel, Uwe Raschke, Dr. Werner Struth, Peter Tyroller
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/atta...
2006 Jul 29
3
Engines question
I would like to get at all models in a rails application to be able to
add a field to every one of them as part of a migration. Something
like the following:
Appmodels.each { |x| add_column x.table_name.to_s, :foo, :text }
I understand I can get the table name using
ActiveRecord::Base#table_name, but how do I get all the models into an
array that I can use in the above manner?
--
Cheers,
Hasan
2006 May 03
2
How do you use the ''vendor'' directory with 3rd party libraries?
Hi,
I''m wondering how to use the ''vendor'' directory in a Rails app. I
know that you can put plugins and engines into the ''vendor/plugins''
directory and that svn:externals can be used for that, but I was
wondering how & where I put a 3rd party library? My specific case is
the pdf-writer code, which I''d rather have inside my app than as a
2006 May 05
2
Dumb polymorphic association question
Hi,
Why is it that polymorphic associations only work with the :has_many
and :belongs_to relationships? Why can''t it be a :has_one?
Matt
2005 Jul 15
1
How do you do functional tests?
Hi,
I''m just wondering: how do people do their functional tests?
I see two possible versions:
1. You test every controller, and every action, in isolation and with
varying criteria. For example, you might have a
''test_login_with_valid_details'' and a ''test_login_with_invalid_details'';
both test the same action but under different circumstances.
2.
2017 Feb 03
2
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
...Robert Bosch GmbH | Postfach 16 61 | 71226 Leonberg | GERMANY | www.bosch.com
Tel. +49(711)811-47379 | Fax +49(711)811-0 | Zeeshan.Haider at de.bosch.com
Sitz: Stuttgart, Registergericht: Amtsgericht Stuttgart, HRB 14000;
Aufsichtsratsvorsitzender: Franz Fehrenbach; Geschäftsführung: Dr. Volkmar Denner,
Dr. Stefan Asenkerschbaumer, Dr. Rolf Bulander, Dr. Stefan Hartung, Dr. Markus Heyn, Dr. Dirk Hoheisel,
Christoph Kübel, Uwe Raschke, Dr. Werner Struth, Peter Tyroller
-----Original Message-----
From: Tim Northover [mailto:t.p.northover at gmail.com]
Sent: Freitag, 3. Februar 2017 16:02
To: Hai...
2005 Aug 25
1
newbie questions about hosting address
...(Chris Korhonen)
2. Re: Everyone wants a RoR framework (M. Edward (Ed) Borasky)
3. Acts as list with STI (Fran?ois Beausoleil)
4. ActiveRecord and Threads (Ryan Daigle)
5. Re: Re: Fear of Commitment (Christopher Singley)
6. Re: global variables (Fran?ois Beausoleil)
7. Re: London on Rails (Matthew Denner)
8. Suggestions for new view renderer - CodePieces (Jan Moli?)
9. different session cookies in app (G?bor SEBESTY?N)
10. Double Render Error: Reason? (Vamsee Kanakala)
----------------------------------------------------------------------
Message: 1
Date: Thu, 25 Aug 2005 15:29:20 +0100
From: Ch...
2006 Nov 04
0
script/generate and --destination
Hi,
I notice looking at the code for the generate script that there it
"recognises" a --destination command line parameter (so I can do ''ruby
script/generate model --destination vendor/plugins/my_engine
my_model'') but it isn''t processed by the command line handling. I''ve
hacked it into my code but I was wondering if this is an up-and-coming
thing or