similar to: what about Austin railers?

Displaying 20 results from an estimated 700 matches similar to: "what about Austin railers?"

2006 Jan 17
6
database.yml and remote mysql database
I can''t seem to connect to a remote database. Here is what I''ve tried. the database,username,password, and host have been changed to protect the innocent. development: adapter: mysql database: database username: username password: password host: host port: 3306 Here is the error /usr/lib/ruby/1.8/yaml.rb:133:in `load'': syntax error on line 11, col 2: `
2006 Aug 05
5
error with db:migrate
I''m new to ROR, and am working my way through the Agile Web Development Book. In the test application, the authors tell me to test my database connection by performing "rake db:migrate". When I do, I get the error "Don''t know how to build task ''db:migrate''" I''ve been looking around at the files, and I see a reference to a
2006 Feb 20
3
rails temporary table?
hi all any one know how to create a temporary table and fill it, like: #------------------------------------------------------------ create temporary table test1 select * from test; #------------------------------------------------------------ regards. -- Posted via http://www.ruby-forum.com/.
2006 Jan 09
5
Paypal IPN - unable to access breakpoint during POST?
Hi all, I''m trying to debug some code in my paypal instant payment notification action. Why can I not access the breakpoint placed inside the action that paypal POSTs to? It just doesn''t find the server, but it works fine when placed inside other actions. I''ve appended the code to the end of this post. Thanks everyone! Tom -- def paypal_ipn notify =
2006 Jan 14
11
accessing models from migrations
Ok, so now Users need to be associated with Organizations. I''ve created a migration and added a ''organization_id'' column to the users table. I want the default organization_id to be the first Organization. So I have :default => Organization.find(:first). But it''s complaining about not being able to find the constant ''Organization''. Any
2006 Jan 19
4
multiple database in the same actions?
Hi, I read the example in http://wiki.rubyonrails.com/rails/pages/HowtoUseMultipleDatabases, it show us how to connect to other database, each time we start a new action, however, this doesn''t work while you try to connect to two different database within the same action. SO I wonder is it possible to bind to two or more database within the same action???? Thanks you very much Saiho
2006 Aug 05
5
rake migrate error: nil.first
My migrations were working fine until today. I dropped and re-created the database.But, when I go to apply my migrations, rake migrate aborts with this error. You have a nil object when you didn''t expect it! You might have expected an instance of Array. The error occured while evaluating nil.first Any idea what might be wrong? The migrations look right. It''s talking to the
2006 Jan 01
11
Migration db_schema_import always fails.
I have not been able to get DB migrations to work at all in Rails 1.0 for me. On multiple platforms I continually get the same errors. It took me awhile to figure out some initial things, such as Migrations don''t seem to support Enum column types, and doesn''t really support Foreign key relationships (the constraints at least). After changing my DB schema to jive more with the
2005 Oct 05
2
Seattle Railers gathering for a beer
This is a general invite to any/all Railers in the Seattle area who want to get together for beer/food. Nothing formal, just a "get to know ya" gathering. Details: Thursday, Oct 13 (next week), 7pm Bellevue Red Robin - *http://tinyurl.com/d678c* -- ~~~~~~~~~~~~~~~~~~~ D''Andrew "Dave" Thompson http://dathompson.blogspot.com
2006 Jan 27
0
Mad Railers First Meeting
Hi all, We are very pleased to announce the first meeting of Mad Railers, the Madison, WI Ruby on Rails Users Group. Here are the details: When: Monday, February 13, 2006 from 6 p.m. - 9 p.m. Where: Madison Area Technical College Downtown Education Center 211 N. Carroll St. Madison, WI 53703 Room D240 Google Maps Link:
2006 Mar 01
5
single transaction migrations
Hi! It seems that migration doesn''t use single transcation to execute the needed migrations for the database upgrade, so if I have database at version 5, and I wrote some migrations 6..10, and error occurs while executing migration 7, the database stays in state 6? I also think that migration taks could use some more verbosity, for example if migration fails, there''s no
2006 Jun 25
0
ITalian Railers!
non dimenticatevi di rails.it! l''ho scoperto oggi e penso che dovemmo metterci tutti un po'' di impegno! :) saluti, mek from venice/it
2005 Dec 17
0
Looking for Madison, WI railers
Hi all, I''m checking to see if there is a rails users groups in Madison, WI. If not I intend to start one with another convert. I even have a free room to hold meetings with parking and data projectors on a local campus. -Eric _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Apr 14
3
Boston Rails work/Meeting Railers
Hey all, Been working with/excited about Rails since November, when I quit working for The Man in order to freelance. Have a couple of Rails projects completed. Having worked with web app dev since 1999, it''s been a breath of fresh air. Now I''m at a point where I need to meet more people in person that are excited about Rails, or are interested in working on Rails projects in
2006 Mar 08
12
favorite FTP client of railers
Hi, Which FTP client would fit in nicely with OS X and Textmate. Thanks, Peter
2006 Mar 01
5
rails models, logging and testing
Hello, I am using rails 1.0 and I have following questions. Please help me. [1] How can I do logging in the rails models? I checked the wiki but didn''t find anything which I explained how to do logging in models. [2] Say I have a certain model, when I declare a function in the model, and try to use that function from a view or a unit test, I get an error. For views the error occurs
2006 Mar 08
1
SXSWi
Hey all, I apologize if I''ve missed discussion of this, but I assume there are a decent number of people going to SXSWi this weekend. I know there is the Austin on Rails meeting (http://austinonrails.org/) setup. Any other intersting Rails-related events/panels? Anyone want to swap "Panels I Intend to Go To" lists? Anyone want to beat up some PHP/ASP/JSP nerds? Just
2006 Jan 27
17
Is it just me, or is Ruby exploding?
I am being barraged with Ruby, Rails and Rich Internet application work right now. Almost enough that I could quit the day job and make a go of it, forgetting about Java altogether. Places in the greater Miami area are turning on to Rails and Ruby -- much of it fueled by the stronger voices in the local Java community. Am I alone in this, or do many of you see absolutely explosive growth in Ruby,
2006 Jul 17
5
quantic phenomena in migrations
I have an application with 15 migrations under version control. In a Mac and and in a Windows, a rake migrate from scratch runs them all just fine. But in a different Windows machine rake migrate stops after migration 3 for no apparent reason. --trace seems normal. No error is reported. Both Windows are XP SP2. They all have the same svn revision and Rails-related software, database is
2006 Aug 04
3
Migration::alter statements ??
Hi, Where to put the execute statements in migration scripts? e.g, I would like to create a table and add a foreign_key reference. def self.up ?? execute "alter table ...." create_table :my_table do |t| t.column :user, :string end ?? execute "alter table ...." end Should the execute statement be above the table creation or below the table creation? Logically I