From be468caa7b6ad5719d7584bf751eb718cb6143ea Mon Sep 17 00:00:00 2001 From: Chris Powers Date: Sat, 27 Mar 2010 10:29:57 -0500 Subject: [PATCH] Removed references to previous employer --- LICENSE | 5 ++--- README.rdoc | 2 +- iterm_window.gemspec | 6 +++--- lib/iterm_window.rb | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index 2a82fea..3b955d8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,5 @@ -Copyright (c) 2009 Chris Powers, The Killswitch Collective -http://killswitchcollective.com - +Copyright (c) 2009 Chris Powers + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/README.rdoc b/README.rdoc index 4d64737..95c5254 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,6 +1,6 @@ = iTermWindow -Developed March 17, 2008 by Chris Powers, Killswitch Collective http://killswitchcollective.com +Developed March 17, 2008 by Chris Powers The ItermWindow class models an iTerm terminal window and allows for full control via Ruby commands. Under the hood, this class is a wrapper of iTerm's Applescript scripting API. Methods are used to diff --git a/iterm_window.gemspec b/iterm_window.gemspec index 978041f..ad1bd20 100644 --- a/iterm_window.gemspec +++ b/iterm_window.gemspec @@ -1,10 +1,10 @@ Gem::Specification.new do |s| s.name = 'iterm_window' - s.version = '0.3.2' + s.version = '0.3.3' s.author = 'Chris Powers' s.date = "2009-02-20" - s.homepage = 'http://killswitchcollective.com' - s.email = 'chris@killswitchcollective.com' + s.homepage = 'http://github.com/chrisjpowers/iterm_window' + s.email = 'chrisjpowers@gmail.com' s.summary = 'The ItermWindow class models an iTerm terminal window and allows for full control via Ruby commands.' s.files = ['README.rdoc', 'LICENSE', 'lib/iterm_window.rb'] s.require_paths = ["lib"] diff --git a/lib/iterm_window.rb b/lib/iterm_window.rb index 912c9ed..f544479 100755 --- a/lib/iterm_window.rb +++ b/lib/iterm_window.rb @@ -1,4 +1,4 @@ -# Developed March 17, 2008 by Chris Powers, Killswitch Collective http://killswitchcollective.com +# Developed March 17, 2008 by Chris Powers # # The ItermWindow class models an iTerm terminal window and allows for full control via Ruby commands. # Under the hood, this class is a wrapper of iTerm's Applescript scripting API. Methods are used to