Sha256: e77c344ba2cdedbbab082af284223f52054fc6abf8967fdd8ff4ffbe1ba1d345

Contents?: true

Size: 1.23 KB

Versions: 12

Compression:

Stored size: 1.23 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "klarlack"
    gem.summary = %Q{ruby client for varnishd's admin interface}
    gem.email = "max@pragmatic-it.de"
    gem.homepage = "http://github.com/schoefmax/klarlack"
    gem.authors = ["Max Schöfmann"]

    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end


task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end

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

Version data entries

12 entries across 12 versions & 4 rubygems

Version Path
schoefmax-klarlack-0.0.1 Rakefile
schoefmax-klarlack-0.0.2 Rakefile
anikkar-klarlack-0.0.7 Rakefile
tikh-klarlack-0.0.11 Rakefile
tikh-klarlack-0.0.9 Rakefile
tikh-klarlack-0.0.8 Rakefile
tikh-klarlack-0.0.7 Rakefile
klarlack-0.0.6 Rakefile
klarlack-0.0.5 Rakefile
klarlack-0.0.4 Rakefile
klarlack-0.0.3 Rakefile
klarlack-0.0.2 Rakefile