Sha256: ab4d545699147a36f4d294ebe15ba4db22b7cab9856eda7ea39f1bf8f4fae660

Contents?: true

Size: 1.44 KB

Versions: 5

Compression:

Stored size: 1.44 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "ruby_protobuf"
    gem.summary = %Q{Protocol Buffers for Ruby}
    gem.description = %Q{Ruby implementation for Protocol Buffers.}
    gem.email = "macksx@gmail.com"
    gem.homepage = "http://code.google.com/p/ruby-protobuf"
    gem.authors = ["MATSUYAMA Kengo"]
    #gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'test:.'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test:.'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install rcov"
  end
end

task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "ruby_protobuf #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

# vim: syntax=ruby

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ruby_protobuf-0.4.11 Rakefile
ruby_protobuf-0.4.10 Rakefile
ruby_protobuf-0.4.9 Rakefile
ruby_protobuf-0.4.8 Rakefile
ruby_protobuf-0.4.7 Rakefile