search for: gretar

Displaying 20 results from an estimated 165 matches for "gretar".

2006 Jun 15
8
Markaby Installation Issues
Ok, So I followed the directions.. I did a ''gem install markaby'' (which sounds like its enough to get me going for rails), but I wasn''t sure, so I tried to install the plugin as well. Plugin installation fails looking for a file: Script/plugin install http://code.whytheluckystiff.net/svn/markaby/trunk Outputs this error: + ./trunk/svnindex.xsl
2006 Aug 19
22
Wazzup with the rubyonrails-talk Google Group?
I just got a Google Groups notification that I had been subscribed to http://groups.google.com/group/rubyonrails-talk. Looking at the page, it appears that about 4300 folks have been subscribed. However, I saw nothing about this on rails@lists.rubyonrails.org. Wazzup? -r -- http://www.cfcl.com/rdm Rich Morin http://www.cfcl.com/rdm/resume rdm@cfcl.com
2006 Jun 16
12
FastCGI times out?
Hello there, So I''m still struggling with this fastcgi stuff. I''m trying to upload and process a decent sized ZIP file, but the request dies before it finishes and I get the following error: FastCGI: comm with (dynamic) server "/Users/ryan/Workspace/rails/photos/public/dispatch.fcgi" aborted: (first read) idle timeout (30 sec), referer: http://photos/album/new/4
2006 Jun 23
4
RedCloth
Help me!!!Lol I''ve been working with RedCloth but it''s runed my layout because it put the <p> and </p> is there a way to remove this without gsubing it up or if I do what the prettiest I can make it? -- Posted via http://www.ruby-forum.com/.
2006 Jul 17
6
Has markaby been abandoned?
Recently discovered Markaby. Before I use it on a production system, I''d like to know if it is still being maintained? According to the change log, the last change was in February of 2006. Does this mean that the project has been abandoned? Or, at version 0.3 it was considered production stable and complete? -- Best Regards, -Larry "Work, work, work...there is no satisfactory
2006 May 19
6
rmagick->X11 on MacTel Howto?
I needed to install rmagick/GraphicsMagick on an IntelMac and did so from Darwinports. Some things work and others don''t work, like rendering fonts which needs X11 fonts and X server. The rmagick page at rubyforge points to .. http://developer.apple.com/opensource/tools/runningx11.html where X11 link to Apple is broken. X11User.pkg talked about on the page above no longer exists at
2006 May 31
3
detecting changed data
I am working on an application where there are many different screens to access the data in a particular record/row. I have links to each data entry screen at the top. Is there a way to detect whether the current hash has been changed from the stored record so I can prompt the user if they attempt to change screens without having saved their changes to the data? Craig
2006 May 18
4
Request Routing Plugin ( :requirements => { :subdomain => ''thing'' } finally works)
Hi All, Just a quick note to say that I''ve released an intial version of the request routing plugin which essentially allows you to use various request object properties as requirements in routes. Most notably you can do: map.connect "thing", :controller => ''main'', :requirements => { :subdomain => ''whatever'' } ..just like the wiki
2006 Aug 06
1
map.resource for a plugin
...mmand the name difference between the model and the controller. I know that a lot of problems can be solved by making both the controller and the model be named Post but since this is a plugin I need to make sure I don''t conflict with anything already in existance. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
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 May 04
3
Decimal
Can someone please tell me the best approach to adding support for editing MySQL decimal types in rails? I have a field in the DB that represents currency, and the view will not let save anything past the decimal place so, 10.99 becomes 10.00 automatically. Any help is appreciated. -- Posted via http://www.ruby-forum.com/.
2006 Jun 13
11
markaby
What''s the current status of Markaby? I''ve played with it a bit and love it and am considering using it for a large project I''m starting. If you''ve used it, I''d love to hear your comments! Jamie
2006 Jun 03
3
Disable Migration creation in generate Model
...ation go also into the subversion repo. I''m hoping that there is some way to disable this without editing the generate script itself. Personally I feel this shouldn''t to this by default since the script/generate migration command is much more to the point. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jun 30
5
Reading the api docs help
Ok so I am at a point that I read my entire book front to back and around and a around. And now digging through it again .. But I am now missing a key piece to the clues is the api. I found http://www.gotapi.com/index.html as a great search tool. But I can''t make heads or tails of it besides a basic search for exactly what I am looking for by word. But if I dont know the word I am
2006 Jun 30
5
Store hash in a DB column
...nside the text column using XML or YAML or something else but then I would have to write some sort of parser to change the data between the two. So I was hoping that there was some way of simply storing the hash without conversion in the text field and get it back as a hash. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jun 02
3
Use a Model or Controller?
...doesn''t find a table to connect to. If it runs slower because of some inner checks. Or mabey I should generate a completely new set of stuff like Collaboa does by creating a ActionSubversion system(Their''s just didn''t fit my needs). Any thoughts? -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jun 07
3
fedex tracking
I''ve been using the Business::FedEx::DirectConnect perl module to track and ship packages via FedEx for awhile now. I''m wanting to convert some of this functionality over to ROR, mostly just the package tracking part. Has anyone successfully tracked a package using the Shipping API out on RubyForge? It seems like the functionality is there since it''s just another
2006 Apr 28
19
Remember James McGovern?
Remember James McGovern and his articles about Rails and enterprise? Well... Check this one out where he "puts his money where his mouth is" http://duckdown.blogspot.com/2006/04/ruby-community-proved-mcgovern-wrong.html -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jun 09
4
View into a String?
I''ve got a nice XML view of my data that works just fine when I call it from the browser. Now I''d like a different controller method to take that XML and write it to the file system. Since the XML view lives in an RXML file, is there a trick to telling the controller "Get your output into a string" instead of writing it back to the browser? After writing it out
2006 Jun 11
7
testcase_setup_and_teardown_with_blocks (aka "The plugin with the very long name")
Hey all, I got annoyed recently that I couldn''t specifiy multiple chunks of test setup and teardown code that get executed for each test. You''re currently limited to just one setup method (unless I''m much mistaken). Anyway, I just wrapped up my solution in a plugin. The answer: use blocks! class Test::Unit::TestCase # This is overridden by the subclass and will