search for: larrywright

Displaying 9 results from an estimated 9 matches for "larrywright".

2006 Sep 10
11
Using partials with Markaby
I''m trying to use a partial from within Markaby. I haven''t been able to figure out how to access a parameter passed into the partial. Here''s the code I''m using: h1 "Create a new note" if @note render :partial => ''form/errors'', :record => @note end ... (that snippet, as well as the partial is stolen shamelessly from Restolog
2006 Jan 12
7
user-defined columns
I am breaking ground on a new project and one of the issues I expect to encouter is the ability of users to define their own columns. For example, one of the features of this application will be the ability to store information about people''s skills and then search for and schedule them based on this information. Since every organization''s needs are different, it would be ideal
2006 Jul 21
9
How 37s affects Rails
Ok, no one has said it yet so I will. http://37signals.com/svn/archives2/bezos_expeditions_invests_in_37signals.php?102#comments How is this going to affect Rails? Or is it? -- Posted via http://www.ruby-forum.com/.
2006 Jul 01
22
TextDrive complaints
Hi all, I have deployed my Ruby On Rails application on TextDrive. At first everything seamed to be fine. However, lately, response time of my application is incredible slow. Worse, lately there is also a lot of downtime. I have contacted their support desk, however, they do not respond (at all, or very, very late). Has anyone else these experiences with TextDrive? And if so, what did you do
2006 Sep 15
7
OT: TinyMCE in Rails
I''m having a problem getting the text area the size I want it to be. In my view at the top I have this init calls <script type="text/javascript" > tinyMCE.init({ mode: "textareas", theme: ''advanced'', theme_advanced_toolbar_location: ''top'' }); </script> Then in my form: <%= text_area
2006 Jan 16
23
Read data from Excel
A client of mine has a ton of data stored in Excel spreadsheets. I''m building a web application for her (backed by a real db of course) and want to import all that data. Is there a library available to read data from Excel? Is there an easy way to upload the spreadsheets and then read the data? Thanks, Ken Kousen -- Kenneth A. Kousen, Ph.D. President Kousen IT, Inc.
2006 Jun 22
18
Ruby on Rails Live CD
I''m pleased to announce the initial release of the new Ruby on Rails LiveCD Linux Distribution. http://www.railslivecd.org The RailsLiveCD offers most of what an average Rails developer needs right out of the box! That includes : Ruby 1.8.4 Rails 1.1.2 Capistrano 1.1.0 Mongrel 0.3.13 Rake 0.7.1 Subversion MySQL 4.1.12 MySQL Administrator RadRails KDevelop Kate and many many others!
2006 Mar 04
2
Using the rails configuration outside rails
I have a ruby class that will be used sometimes from within rails, and sometimes from without (not in the context of a running rails application). It will reference models within the rails app, and It may be run manually, or may be scheduled via Cron (though I may look at RailsCron as well). I''ve seen help on the Wiki for using models outside of Rails (like this
2006 Aug 02
7
form_for not working with Markaby
I''m playing around with Markaby and I decided to write a little blog app. I''m running into issues with forms however. If I use form_for the output of the form gets swallowed. For example: form_for :article, @article do |f| f.text_field :title f.check_box :published f.text_area :description f.text_field :pub_date f.text_area :content end gets rendered as an empty form