search for: blinkingbear

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

2007 Sep 14
2
Invitation to try Unhatched on Rails Rumble
Hey all, I wanted to invite you to try out our Rails Rumble entry: Unhatched (http://vote.railsrumble.com/teams/95/visit) Unhatched is a place to keep track of all those business ideas that you always have but forget to write down. A unique part of our site is that the whole thing is hand illustrated by Gino Barzizza, one of NYC''s up and coming artists. We met all our goals for the
2006 Aug 14
0
Designers?
...e html/css front end work as well. You''ll have to be able to do quick turnarounds and be able to communicate easily over IM. You should also have a solid understanding of current trends in web 2.0 rias. Location doesn''t matter. If you''re interested, drop me a line at blinkingbear at gmail dot com. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060814/33b6d814/attachment.html
2007 Jul 26
1
Lohan the observable
Sorry, that name is a misnomer. However, I was excited to find that Ruby has a built in Observable module and I''m pretty bored, so I apologize in advance.... require ''observer'' # one who is observed class Celebrity include Observable attr_accessor :name attr_reader :is def is=(val) @is = val changed notify_observers(self) end end # one who
2007 Jul 03
5
HOW TO: Easily output alternating item styles via metaprogramming
I always need to apply alternating item styles when outputting a collection, here''s what I''ve been using recently. In the app helper I define this method: def alternate(items,alt=false items.map{|i| i.class}.each { |k| k.class_eval {attr_accessor :alt}} items.each { |i| i.alt, alt = alt, !alt } end When I call the partial I wrap the collection with this method:
2006 Dec 11
1
assert_redirected_to error
I''m new to TDD in rails, I''m getting this weird error with assert_redirected_to. Here''s my test: def test_friendship_request_accept @request.session[:user] = users(:nathan).id get :accept, { :id => 1 } assert_redirected_to :controller => "/users/profile", :action => "index", :id => users(:nathan).id end When I run this I
2007 Jul 04
0
HOW I: Wrap content sections using blocks and then nest them using lambdas
This is the type of code that I''m excited when it works but hopefully will get some suggestions on how to do it better. Last time, the code was a bit to "ferocious" and I was missing out on a built in feature to rails that I didn''t know about. This one is a bit more complex... to factor out all the markup for different sections of the site I have a bunch of view
2007 Jul 24
0
The occasional capistrano 503
About one in ten deployments usually results in a 503. I run cap stop_app/start_app a few times and it seems to then ''take'' and the site is up. I''m not really sure why this happens, which log files would you recommend looking in when this happens? Thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the
2008 Jan 06
0
ActiveMerchant SSL Cert Problem
I''m trying to get AM setup with PayPal and am getting this error: OpenSSL::X509::CertificateError: not enough data I have an ssl cert generated but I don''t know how to tell AM how to find it.... any ideas? Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
2008 Sep 11
0
Using gmail smpt in production
I have an app that will be handling a lot of incoming e-mail. For dev purposes we''ve just been using gmail. This seems like a bad idea in production. Anyone using gmail in production that handles a fair amount of incoming email? thx --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Aug 03
0
Date/Time Quick Add
I saw some threads about this from a few months ago that didn''t really end up anywhere. Anyone have any suggestions for implementing something like Google Calendar and Backpack''s "Quick Add" feature. For example, parsing something like this: "Dinner with Michael 7pm tomorrow" into some kind of object with params ::date,::time,::event. DateBoxEngine and