Sha256: 8d897a337c3a4905faa479be0c25f0756eec4744edddc3c3e65ba4836fb2b180

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 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 = "wwood-reach"
  gem.homepage = "http://github.com/wwood/reach"
  gem.license = "MIT"
  gem.summary = %Q{Reach is a small Ruby liby that extends the Array class so that Arrays are more transparent
to methods.}
  gem.description = %Q{For instance, a ReachableArray of Book objects can not only take normal Array methods such as
collect and sum, but also methods that operate Book objects, such as author and title. }
  gem.email = "gmail.com after donttrustben"
  gem.authors = ["Ben J Woodcroft"]
  # 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 = "reach #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wwood-reach-0.3.0 Rakefile