Textmate & Rspec Bundle

July 22, 2008 @ 09:36 AM | posted by carmelyne

(last updated: 07.22.08)

Rspec Bundle working as intended.


Having trouble getting the Rspec bundle to run with Textmate? That means you've been missing on the pretty reports via Textmate like I have been recently.

Using google_fu, two blog post came out as the main contenders. The posts helped me in getting the Rspec bundle in Textmate to work as intended.

I did process my fix in this order:
1.) Textmate - fix filetype recognition issues with RSpec and Rails bundles
2.) Deleted the Rspec Bundle I had using the Bundle Editor
3.) Installing the Latest RSpec TextMate Bundle via GitHub

[ Last updated: July 22, 2008 @ 09:39 AM ]

Sorry, comments are closed for this article.

Snippets of 06/24/07

Rails 'A'..'Z' Paginate

1
2
3
4
5
6
7
8
9
10
11
# Starts with 'A'..'Z' Paginate / model
def self.sort(sort)
  if sort
    find(:all, :conditions => ['name LIKE ?', "#{sort}%"])
  else
    find(:all, :order => 'name')
  end  
end

# index action / controller
@models = Model.sort(params[:sort]) 

Recent Posts...

RailsConf 2006
I heart devChix