search for: feldpost

Displaying 20 results from an estimated 25 matches for "feldpost".

Did you mean: feldhost
2006 Mar 10
10
Textmate Rails Plugin Cheat Sheet
...lt snippets/macros/commands in Textmate''s current Rails Bundle. Certainly helped me to remember these quickly. So, if you''re using Textmate and, like me, can''t remember all the handy shortcuts and tab triggers, feel free to download the pdf I put together: http://feldpost.com/lighthaus/textmate_rails.pdf. Feel free to repost it if you find it any useful. This relates to the syncPEOPLE on Rails 1.0 bundle, which now comes standard with Textmate (if you haven''t recently updated your textmate bundles, you can also download the latest bundle here: http://...
2006 Aug 06
2
TextMate + Rails
Hi, Could anyone point to some TextMate resources ? I found a few bundles, but they were all corrupted... JEtienne -- Posted via http://www.ruby-forum.com/.
2006 Mar 01
2
error: uninitialized constant
total rails nuby here. I have a table "thumbnails", hence the model Thumbnail. I''m extending the Thumbnail class with a few constants needed for thumbnail cropping: class Thumbnail < ActiveRecord::Base SOURCE_FILE_PATH = "path/to/source" TARGET_FILE_PATH = "path/to/target" TARGET_WIDTH = 100 TARGET_HEIGHT = 100 end Now, in my controller
2006 Feb 28
5
rake appdoc errors
when running rake rake appdoc (os x 10.4) i get the following error: unrecognized option `--line-numbers --inline-source'' any ideas? sebastian
2006 Mar 03
5
avoiding nil object error?
I''m a total Rails newbie and i''ve been struggling for hours today with one (prolly very silly) problem: I have a table portfolios that has many images: class Portfolio < ActiveRecord::Base has_many :images end class Image < ActiveRecord::Base belongs_to :portfolios end In the controller i define a list of active portfolios: @active_portfolios =
2006 Mar 09
11
syncPEOPLE on Rails TextMate Bundle 1.0 & Screencast
The 1.0 version of our bundle is now available for download, along with a 10 minute demonstration of it in use. See http:// syncpeople.com/downloads. == What is syncPEOPLE on Rails? == syncPEOPLE on Rails is a bundle of snippets, macros and commands for TextMate that make Rails development on the Mac even easier. Generate scaffolds, migrations, models and controllers from inside the
2006 Mar 05
7
whatever happend to unobtrusive javascript in Rails ?
Don''t get me wrong, JavaScript/Ajax helpers in Rails are a huge timesaver and they have helped me to finally overcome my irrational aversion to js libraries like prototype and such. However, all this goodness seems to come at quiet a price. The resulting code is littered with inline JS, including ubiquitous script tags and onload attributes etc.. It seems that just when i found
2006 Jul 13
8
(OS X) Address binding still exists after terminating session
[using mongrel-0.3.13.4 pre-release, OX 10.4.7] I have a slightly annoying issue under OS X: If i terminate the session that ran the mongrel process (by closing terminal window -- hey, it happens!), subsequent attempts to start mongrel give me the following error: /usr/local/lib/ruby/gems/1.8/gems/mongrel-0.3.13.4/lib/mongrel/ tcphack.rb:12:in `initialize_without_backlog'':
2006 Apr 16
2
Possible to implement Textmate key shortcuts in RadRails?
...ute build-a-blog example should be twice as long if there had been no keyboard shortcuts in Textmate. Unfortunately, I use windows and thus RadRails. Does anyone know how to implement the same keyboard shortcut into RadRails? Sebastian Friedrich made an overview of the keyboard shortcuts: http://feldpost.com/lighthaus/textmate_rails.pdf (via blog.inquirylabs.com/2006/03/10/rails-cheat-sheat-for-textmate/ ) If somebody had the time and knows RadRails/Eclipse better than I do, I''m sure that all RadRails users would benefit from the productivity gains. -- Jesper R?nn-Jensen http://justaddw...
2006 Mar 05
4
Ruby Based "Mint"?
I remember some time ago there was a post that contained a link to a Ruby based product similar to Mint for webstats that was in early development. For the life of me I cannot find the link in the usual places. Anyone have a link? Thanks, -S
2006 Feb 27
2
Multiple Undo History
I need to implement multiple undo functionality into a Rails app (my first one). Essentially, every .update and .save needs to record the previous data set and save them in a history table along with some identifying stamps, so each db action can be rolled back at any time. From what i can tell, i could implement this manually using observers perhaps; but this is Rails, so i wonder if
2006 Feb 26
1
rails/lighttpd on os x
I''m trying to set up my Rails development app for public access on OS X. I''m using the bundled lighttpd server. The first thing i tried to do is simply start lighttpd on port 80. When i set "server.port = 80" in lighttpd.conf i get the following error message after running ruby script/server: (network.c.265) can''t bind to port 80 Permission denied i
2006 Aug 03
9
Rails Cheatsheets!!!
Hey if you know any rails cheatsheet link add it inot the follwing list, lets make a long list on Rails cheatsheet.... ;) 1) 2) 3) 4) . . . -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060103/a6eea2ac/attachment-0001.html
2006 Mar 04
12
cross domain ajax
I''m trying to implement a cross domain solution for my rails app. I want people to be able to fill out a form on their site and the data will be passed back to my site through ajax, and their site gets updated. I''m looking for the best way to implement this. I would like to use a JSON approach like yahoo does, but i''m not sure if it will work. Though the form is
2006 Mar 30
25
TextMate for Rails development -- why?
Greetings, I am curious, I see quite a few references to using TextMate for rails development. I downloaded TextMate and used it for 30 days. I do not see what everyone is raving about. Snipplets are nice, but other editors do the same thing, some with much more power. Can anyone tell me what makes people draw to TextMate? Maybe I am missing the whole reason, I''d really like to
2006 Mar 03
68
Agile Web Development with Rails 1.1
Dave, on another topic, might I recommend that you and DHH publish an updated version of the Agile guide right away when 1.1 comes out? You could reuse much of your material and it would do a lot of good to help make sure there is still a good centralized source of reference for Rails. Without that book, there really is not a good one-stop source of information for people to learn how to use
2006 Apr 17
0
quickly convert SQL DDL -> Migration
Has anybody heard of / written a tool/generator that quickly converts any SQL DDL into migration create_tabl tasks. i know i could just go the way of creating the tables and then do a rake db_schema_dump, but since this is something i do continuously i would like to find a quicker route. Thanks Sebastian
2006 Mar 01
3
console doesn''t reload app
When using scripts/console, changes made to any classes/methods in my application files do not reflect in the console until i restart it. I verified that RAILS_ENV is indeed set to development. Isn''t that supposed to reload the app on every call? is the console different? Thanks, Sebastian
2006 Mar 02
0
Local Collection Variables in Helpers
Is there any way i can reference a local variable of a partials collection in the helper? For instance, for each iteration of a list represented in a partials collection i want to display a default value if no value is set. i would rather not litter the view with conditionals. When i write a helper method referring to the local collection variable (eg. collection_name.title) it gives
2006 Mar 23
1
Multiple file uploads
I have a form with multiple file upload fields (1-10), of which 2-10 are optional. So i need to cycle thru all file fields and pick only those that have a file attached. Selecting only one file in the form, the paramters look simple: "image"=>{"file_1"=>#<File:/tmp/CGI344.4>, "file_2"=>"", "file_3"=>""}, so I