Sha256: 0ce4ddbbb7cab529acd22458cb2e8cb4a74cfad740c116ed5ebdc28c28a2e4e4

Contents?: true

Size: 1.41 KB

Versions: 24

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "i2cssh"
  gem.homepage = "http://github.com/wouterdebie/i2cssh"
  gem.license = "MIT"
  gem.summary = %Q{csshX like cluster ssh using iTerm2 panes}
  gem.description = %Q{csshX like cluster ssh using iTerm2 panes}
  gem.email = "wouter@evenflow.se"
  gem.authors = ["Wouter de Bie"]
  # dependencies defined in Gemfile
  gem.add_dependency 'rb-appscript', "~> 0.6.1"
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "i2cssh #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
i2cssh-1.9.0 Rakefile
i2cssh-1.8.1 Rakefile
i2cssh-1.8.0 Rakefile
i2cssh-1.7.1 Rakefile
i2cssh-1.7.0 Rakefile
i2cssh-1.6.0 Rakefile
i2cssh-1.5.4 Rakefile
i2cssh-1.5.3 Rakefile
i2cssh-1.5.2 Rakefile
i2cssh-1.5.1 Rakefile
i2cssh-1.5.0 Rakefile
i2cssh-1.4.4 Rakefile
i2cssh-1.4.3 Rakefile
i2cssh-1.4.2 Rakefile
i2cssh-1.4.1 Rakefile
i2cssh-1.4.0 Rakefile
i2cssh-1.3.4 Rakefile
i2cssh-1.3.3 Rakefile
i2cssh-1.3.2 Rakefile
i2cssh-1.3.1 Rakefile