Sha256: 8b69ad5652062774a5a154b88a3fe273d09852f2641afa5aeb58c05a3db99a13
Contents?: true
Size: 919 Bytes
Versions: 3
Compression:
Stored size: 919 Bytes
Contents
require 'rake' require 'rake/testtask' require 'rake/rdoctask' begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "exegesis" s.summary = "A Document <> Object Mapper for CouchDB Documents" 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mattly-exegesis-0.2.5 | Rakefile |
mattly-exegesis-0.2.6 | Rakefile |
mattly-exegesis-0.2.8 | Rakefile |