Sha256: f3d5fd51de24fa4230c9459168a5aee89e87bbe4774f7763296a8e3b8cdcb655

Contents?: true

Size: 874 Bytes

Versions: 2

Compression:

Stored size: 874 Bytes

Contents

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

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "exegesis"
    s.summary = "TODO"
    s.email = "matt@flowerpowered.com"
    s.homepage = "http://github.com/mattly/exegesis"
    s.description = "A Document <> Object Mapper for CouchDB Documents"
    s.authors = ["Matt Lyon"]
    s.add_dependency('rest-client', '>= 0.9')
  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    = 'test-gem'
  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
mattly-exegesis-0.2.2 Rakefile
mattly-exegesis-0.2.3 Rakefile