Sha256: 87a54a18512471d7cae4daff8c04859127daa76a889b29a65bf099841f3b0ded

Contents?: true

Size: 963 Bytes

Versions: 3

Compression:

Stored size: 963 Bytes

Contents

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

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "carrot"
    s.email = "amos@geni.com"
    s.homepage = "http://github.com/famoseagle/carrot"
    s.description = "A synchronous version of the ruby amqp client"
    s.summary = "A synchronous version of the ruby amqp client"
    s.authors = ["Amos Elliston"]
    s.add_development_dependency "mocha"
  end
  Jeweler::GemcutterTasks.new
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', 'test']
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'carrot'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

task :default => :test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
carrot-1.2.0 Rakefile
carrot-1.1.0 Rakefile
carrot-1.0.0 Rakefile