Sha256: e6d3fa241149d57b128f345bbd8395345e0296ed4665923a706a868450b787aa

Contents?: true

Size: 877 Bytes

Versions: 1

Compression:

Stored size: 877 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.12.6')
  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

1 entries across 1 versions & 1 rubygems

Version Path
mattly-exegesis-0.2.1 Rakefile