Sha256: 937a77fa640eeba9ecbd3ef2c29d356c77e7bfbce28a8fe05d10535427f86bc9

Contents?: true

Size: 885 Bytes

Versions: 2

Compression:

Stored size: 885 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "isbn"
    s.summary = "a simple library of functions on ISBN\'s"
    s.email = "entangledstate@gmail.com"
    s.homepage = "http://github.com/entangledstate/isbn"
    s.description = "library to transform ISBN\'s from new to used, between 10 and 13, etc..."
    s.authors = ["Tim Kersey"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Rake::TestTask.new do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'isbn'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
entangledstate-isbn-1.3.0 Rakefile
entangledstate-isbn-1.4.0 Rakefile