Skip to content

Instantly share code, notes, and snippets.

View luigi's full-sized avatar

Luigi Ray-Montañez luigi

  • Atlanta, GA
  • 11:03 (UTC -04:00)
View GitHub Profile
@luigi
luigi / twofifty.md
Created November 19, 2012 19:04 — forked from anonymous/twofifty.md

NOTE This gist is forked from one compiled by Laurent Bossanti. I've added links to the original tweets.

It's a compilation of all the tweets made about the BritRuby situation before it was announced that the conference was cancelled. In other words, these are the tweets that led to the cancellation.

It may be the case that some tweets were deleted after the fact (one example listed here can't be found anymore), but there's no way of knowing unless someone took screenshots.


Nice speaker lineup for @BritRuby. Except for the 100% white guys part. I don't think adding diversity at the end works. You have to start with it as one of your goals. Who wants to be the token female? Not meaning to single out @BritRuby, just saying I'm disappointed. I know it's a systemic/cultural problem.

describe "Sending Membership Invites" do
before :each do
user = mock_model(User)
group = mock_model(Group, :user => user, :name => "What's up holmes?")
invitee = mock_model(User)
membership = mock_model(Membership, :user => invitee, :group => group)
@message = Message.create_for_membership_invitation(membership)
end