How can I create an inline WYSIWYG editor where I can attach Images to the content I’m editing?
[This is an excerpt from an email I answered on the Rails-Talk list today] That’s actually pretty hard, but with…
Achieving Developer Excellence with Automated Testing
Stuff relevant to Ruby on Rails.
[This is an excerpt from an email I answered on the Rails-Talk list today] That’s actually pretty hard, but with…
One of the often under appreciated situations in web development today are thing inherent to the process that create blockers…
Debugging Javascript in Capybara feature specs can be challenging (to say the least), because AFAIK you can’t drop ‘debugger’ into…
I just discovered something relatively simply that eluded me since the very start of my career in Rails. You’re working…
So let’s say you are, for example, upgrading your Rails app and when you boot it you get a crash…
add to your Gemfile group :development, :test do gem ‘rspec-rails’ end Be sure to bundle install after changing your Gemfile…
A bit today about setting up and debugging Capybara with truncated fixtures. Capybara comes with an array of choices for…
Basic cheat sheet for me to help remember the new syntax of Rails 3. Check out the rubyonrails.org guide and…
Here’s a common pattern and good rails thing to know about: read_attribute(:symbol) Basically what it does is read the attribute…
When using Paperclip to save an attached image, how do I get & store the dimensions of the image? Best…