Sha256: a665ff14085bbe56b992975bff9bec162ada8cba147948e22f149de5372a499c

Contents?: true

Size: 1.64 KB

Versions: 9

Compression:

Stored size: 1.64 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "pretty_diff"
    gem.summary = "Library for converting unified diff format into HTML listings."
    gem.description = "PrettyDiff is a highly customizable library for creating fully featured HTML
                       listings out of unified diff format strings.
                       Include copy/paste-safe line numbers and built-in syntax highlighting."
    gem.email = "ilya.sabanin@gmail.com"
    gem.homepage = "http://github.com/isabanin/pretty_diff"
    gem.authors = ["Ilya Sabanin"]
    gem.add_development_dependency "shoulda", ">= 0"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

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

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
pretty_diff-0.9.2 Rakefile
pretty_diff-0.9.1 Rakefile
pretty_diff-0.8.1 Rakefile
pretty_diff-0.8.0 Rakefile
pretty_diff-0.7.0 Rakefile
pretty_diff-0.6.0 Rakefile
pretty_diff-0.5.0 Rakefile
pretty_diff-0.4.0 Rakefile
pretty_diff-0.3.1 Rakefile