Sha256: 96f82cda350219f7be9523bbc8ba7c0c00fc5a5377434ae6daa858c70445e8f4

Contents?: true

Size: 1.15 KB

Versions: 14

Compression:

Stored size: 1.15 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 = "gaptool-client"
  gem.homepage = "http://github.com/mattbailey/gaptool-client"
  gem.license = "MIT"
  gem.summary = %Q{gaptool client}
  gem.description = %Q{client for gaptool-server}
  gem.email = "m@mdb.io"
  gem.authors = ["Matt Bailey"]
  # dependencies defined in Gemfile
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

task :default => :test

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

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gaptool-client-0.5.2 Rakefile
gaptool-client-0.5.0 Rakefile
gaptool-client-0.4.2 Rakefile
gaptool-client-0.4.1 Rakefile
gaptool-client-0.4.0 Rakefile
gaptool-client-0.3.6 Rakefile
gaptool-client-0.3.4 Rakefile
gaptool-client-0.3.3 Rakefile
gaptool-client-0.3.2 Rakefile
gaptool-client-0.3.1 Rakefile
gaptool-client-0.3.0 Rakefile
gaptool-client-0.2.2 Rakefile
gaptool-client-0.2.1 Rakefile
gaptool-client-0.1.0 Rakefile