This commit is contained in:
John Bintz 2011-07-02 17:01:35 -04:00
parent 81a8462103
commit 9de1a1e5af
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,6 @@
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rspec/core/rake_task' require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) RSpec::Core::RakeTask.new(:spec)

View File

@ -1,10 +1,10 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = 'iterm_window' s.name = 'johnbintz-iterm_window'
s.version = '0.3.3' s.version = '0.4.0'
s.author = 'Chris Powers' s.authors = [ 'Chris Powers', 'John Bintz' ]
s.date = "2009-02-20" s.date = Time.now
s.homepage = 'http://github.com/chrisjpowers/iterm_window' s.homepage = 'http://github.com/johnbintz/iterm_window'
s.email = 'chrisjpowers@gmail.com' s.email = [ 'chrisjpowers@gmail.com', 'john@coswellproductions.com' ]
s.summary = 'The ItermWindow class models an iTerm terminal window and allows for full control via Ruby commands.' 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.files = ['README.rdoc', 'LICENSE', 'lib/iterm_window.rb']
s.require_paths = ["lib"] s.require_paths = ["lib"]
@ -14,3 +14,4 @@ Gem::Specification.new do |s|
s.add_development_dependency 'fakefs' s.add_development_dependency 'fakefs'
s.add_development_dependency 'mocha' s.add_development_dependency 'mocha'
end end