search for: yehudakatz

Displaying 10 results from an estimated 10 matches for "yehudakatz".

Did you mean: ehudkatz
2006 Jul 21
4
pre-alpha Rails Admin Console
...w days. The admin console, autoDB, provides and AJAXed, automated scaffolding-type system that''s pretty and very customizable. More details at http://trac.visualjquery.com/admin_console/ and my original post from last week, which has screenshots and some more details, is at http://www.yehudakatz.com/admin-console. That site is a bit outdated, but you can get a sense of what the project is about. Interested folks should definitely take a look. That said, it''s very much pre-alpha code with a lot of unimplemented stuff (like validations) and poor documentation. I intend to relea...
2007 Dec 07
9
Merb-style development exception pages for Mac OS X
...tyle exception pages where there''re links to open the files listed in the stack trace in TextMate and the source around each line a lot so I stole the idea (and the code!) and made a patch for Rails: http://dev.rubyonrails.org/ticket/10401 Here''s how it looks like in Merb: http://yehudakatz.com/wp-content/uploads/stacktrace.gif What do you guys think? Personally I find it very convenient to be able to click the line numbers and go right to the source in TextMate. Oh and the styling does need some work, feel free to spruce it up a bit. Cheers, Chu Yeow --~--~---------~--~----~------...
2010 Apr 23
2
Routing a Sinatra application
Hello, I wish to route a sinatra application in my Rails 3 app. As said by Yehuda, it should be possible. http://yehudakatz.com/2009/12/26/the-rails-3-router-rack-it-up/ However I see the route isn''t recognized and I get ActionController::RoutingError problems. It works well with simple rack apps however (the test in actionpack with a lambda passes well). I''ve written a test case which fails. But I c...
2006 Jul 19
1
Admin Console
...still need to make a few modifications, and clean up two or three weird bugs that I noticed today, but I''m gearing up for a release in the next couple of days. I also anticipate making a screencast on how to use the console this weekend. I described the console earlier at http://www.yehudakatz.com/admin-console.html To recap, it''s a drop-in engine that will provide almost painless CRUD+ operations (CRUD + drag/drop acts_as_list + activate/deactivate). It automatically generates a bunch of cool widgets, and has some fairly nice styles. I have removed the file widget for now,...
2006 Jul 17
2
DB Admin Console
...ult options) * The back button can be added or removed * Required conventions at the moment * the main name field in a model is called ''title'' * this will probably change to become customizable You can see a screenshot of the list view and the edit form at http://www.yehudakatz.com/admin-console.gif The point of this rather long explanation is to elicit feedback about where I should go with this. I would like to release it as a plugin (probably an Engine), and would like to make it more sanely put together before I do so: * GUI, database-held configuration via a Admi...
2006 Jul 17
0
My earlier post re: DB Admin Console
I''ve put up a brief, better laid out version of my earlier post with embedded screenshots. Take a look at http://www.yehudakatz.com/admin-console.html In case you missed it, it''s a preliminary post about a plugin I''ll be releasing this week for an automated administrative console for database tables. -- Posted via http://www.ruby-forum.com/.
2007 Jan 28
0
assert_select alternative
...ements passes all of the assert_elements inside the block--assert_select tests whether the assert_selects in the block are true for the list of matched elements). I felt as though this was the more intuitive solution, and you can read my reasoning on my blog. You can read about it at http://yehudakatz.com/2007/01/27/a-better-assert_select-assert_elements -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email...
2011 Feb 12
10
GemFile error + General Help?
Hello, I''m a complete beginner in Ruby on Rails, so excuse me if this is a ridiculous question. Just to bare in mind, I''m using Mac OSX (Snow Leopard), Rails 3, and sqlite3 as a database. I''ve checked, and everything is up to date (Rails, Ruby, Gems). I am simply creating a test application, and I understand the way to run that is by running the ''rails
2010 Feb 04
3
Rails Edge: gem bundle error
Hi. Having installed Ruby 1.9 from source, I decided to have a look at Rails3 aka Rails edge from git. Therefore, I followed wycats instructions (http://weblog.rubyonrails.org/2010/1/1/getting-a-new-app- running-on-edge), but keep getting an error related to Bundler: $ sudo gem bundle --backtrace ERROR: While executing gem ... (NoMethodError) undefined method `path'' for
2011 Jun 17
7
Encoding
What''s a good solution for fixing character encoding problems for compatibility between ascii and utf-8? The database is postgres and is encoded in utf-8. Once in awhile there will be a compatibility error from strings from a webform. Is there a command to fix this besides using a_string.force_encoding(''utf-8'')? Even this doesn''t seem to always work either.