search for: rabble

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

Did you mean: nabble
2008 Jan 15
0
Problem with ruby-debug and rspec
...;'m in the application code, but not when i''m in the ''spec'', or spec helper methods i''m loading. Basically any command which should normally work like p, or pp, gets passed through to a method_missing. I''m kind of stumped on this one... any ideas? -rabble I''ve got the following plugins installed: active_record_base_without_table annotate_models asset_packager exception_logger fixture_replacement query_reviewer rspec rspec_on_rails spatial_adapter svn white_list will_paginate ym4r_gm and am using the following gems: GeoRuby-1.3.2 RedCloth-...
2005 Feb 02
5
Planet Ruby on Rails
I just setup a Planet aggregator site for Ruby on Rails blogs and the wiki. It''s at: http://www.planetrubyonrails.org/ jim
2005 Aug 06
3
Macromedia Flash Loading Issues
I''ve discovered something very odd about the way Rails is handling Flash media. I am attempting to load a partial that contains the code for a flash adverstisment for the website. It was working ok when the code was in the page, but once I pulled it out to a partial (so I could use it on other pages) it stopped working. <%= render(:partial =>
2005 Mar 01
0
has_and_belongs_to_many problem
...9;m writing a comic book database, and each issue has many creators on it. Thing is, some creators perform multiple duties. They may write one issue, draw another, etc. However, if I add a creator twice to an issue and try to delete it, it removes both creators: @issue.creators.delete(@creator) rabble from #rubyonrails suggested adding multiple habtm associatings in the Issue object. Here''s how they look: class Issue < ActiveRecord::Base has_and_belongs_to_many :creators has_and_belongs_to_many :writers, :class_name=>''Creator'', :association_foreign_k...
2005 Mar 04
5
Rails and SCM Best Practices
Hi all-- I''m starting a new Rails project and I''m preparing to import it into my local Subversion repository. In the past, I''ve just imported the entire set of files generated by ''rails'', but I''m starting to wonder if that is the best way to approach things. For instance, it makes sense to add the log/ directory, but probably not the
2005 Mar 04
3
Need volunteer for cool RubyForge add-on
You''ve probably been reading the ruby-talk thread I started titled "RAA Status & The Problem with Ruby" that rehashes that age-old conversation we keep having about how to tell the good from the bad when it comes to ruby libs and apps. We now have an opportunity to stop talking about it and actually do something. I proposed a RubyForge add-on to create a user-driven
2005 Mar 04
3
Boolean values
...and > environment.rb.backup. I then use xal''s deploy script to pull those > out and use them when i do a deployment. When i''m setting up a > development box for somebody then i manually copy those over and edit > them. > > It works pretty well for us. > > -rabble > > > On Thu, 03 Mar 2005 23:56:09 -0500, Scott Barron <scott-HDQKq3lYuGDk1uMJSBkQmQ@public.gmane.org> wrote: >> Patrick Franz -- ML wrote: >> > >> > Hi all-- >> > >> > I''m starting a new Rails project and I''m preparing to i...
2007 Sep 16
12
rspec_todo -- spec''ing backwards
While the spirit of BDD is to spec first and code second, many of us have legacy code. Worse, some of us have legacy code without very good coverage. Recognizing that *I* have such code, I created a script that grinds through your .rb files and creates placeholder specs for each public method. While it is more sensible to spec behavior of code function than of individual methods, this
2005 Apr 17
14
Leaky Webrick (?) & image corruption
Hi guys, After a few days of webrick seeming to use up a ton of ram (the longer it was running, the more ram); izayoi on #rubyonrails kindly suggested changing Dependencies.mechanism in development.rb to :require which appears to have fixed the prob - at the expense of having to restart webrick after making changes to .rb files. Is this a known issue, or is there an alternative solution?