Skip to content

Instantly share code, notes, and snippets.

@ethangunderson
Created December 10, 2009 20:08
Show Gist options
  • Save ethangunderson/253624 to your computer and use it in GitHub Desktop.
Save ethangunderson/253624 to your computer and use it in GitHub Desktop.
class Repository < ActiveRecord::Base
def self.find_available(login)
Github.new(login).public_repositories.collect(&:name) - User.find_by_login(login).repositories.collect(&:name)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment