blob: ae7d8059e38aff24658e88a2665b09d30f333ec7 [file] [log] [blame]
Chris Fallin973f4252014-11-18 14:19:58 -08001require "rake/extensiontask"
2require "rake/testtask"
3
Chris Fallin91473dc2014-12-12 15:58:26 -08004spec = Gem::Specification.load("google-protobuf.gemspec")
Chris Fallin973f4252014-11-18 14:19:58 -08005
6Rake::ExtensionTask.new("protobuf_c", spec) do |ext|
Chris Fallin91473dc2014-12-12 15:58:26 -08007 ext.ext_dir = "ext/google/protobuf_c"
8 ext.lib_dir = "lib/google"
Chris Fallin973f4252014-11-18 14:19:58 -08009end
10
11Rake::TestTask.new(:test => :build) do |t|
12 t.test_files = FileList["tests/*.rb"]
13end
14
Chris Fallin973f4252014-11-18 14:19:58 -080015Gem::PackageTask.new(spec) do |pkg|
16end
Chris Fallin973f4252014-11-18 14:19:58 -080017
18task :build => [:clean, :compile]
19task :default => [:build]
20
21# vim:sw=2:et