Sha256: 6f29d1e9a11bacaf330f92c591d38c29aaeb69421a29330691e25a67f78ff59a

Contents?: true

Size: 896 Bytes

Versions: 1

Compression:

Stored size: 896 Bytes

Contents

require 'rake'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "hominid"
    s.summary = "Hominid is a Ruby gem for interacting with the Mailchimp API."
    s.email = "brian@terra-firma-design.com"
    s.homepage = "http://terra-firma-design.com"
    s.description = "Use the hominid gem to easily integrate with the Mailchimp email marketing service API."
    s.authors = ["Brian Getting"]
  end
  
  Jeweler::GemcutterTasks.new
  
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

desc 'Generate documentation for the hominid plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Hominid'
  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
hominid-1.2.1 Rakefile