aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/Rakefile
diff options
context:
space:
mode:
authorGravatar Chris Fallin <cfallin@c1f.net>2014-12-12 15:58:26 -0800
committerGravatar Chris Fallin <cfallin@c1f.net>2014-12-12 15:58:26 -0800
commit91473dcebfbd90a8e256568e287e168b70c77ff0 (patch)
tree6a2fc1a9242659963b5f3bae9c146d957027f5e2 /ruby/Rakefile
parentf473bb9903370cc9324b0881873e0d0861f5d325 (diff)
Rename protobuf Ruby module to google/protobuf and rework its build
system. The Ruby module build now uses an amalgamated distribution of upb, and successfully builds a Ruby gem called 'google-protobuf' with module 'google/protobuf'.
Diffstat (limited to 'ruby/Rakefile')
-rw-r--r--ruby/Rakefile22
1 files changed, 3 insertions, 19 deletions
diff --git a/ruby/Rakefile b/ruby/Rakefile
index b782b403..ae7d8059 100644
--- a/ruby/Rakefile
+++ b/ruby/Rakefile
@@ -1,35 +1,19 @@
require "rake/extensiontask"
require "rake/testtask"
-spec = Gem::Specification.new do |s|
- s.name = "protobuf"
- s.version = "2.6.2"
- s.licenses = ["BSD"]
- s.summary = "Protocol Buffers"
- s.description = "Protocol Buffers are Google's data interchange format."
- s.authors = ["Protobuf Authors"]
- s.email = "protobuf@googlegroups.com"
-
- s.files = ["lib/protobuf_c.so", "lib/protobuf.rb"]
-end
+spec = Gem::Specification.load("google-protobuf.gemspec")
Rake::ExtensionTask.new("protobuf_c", spec) do |ext|
- ext.lib_dir = "lib"
- ext.config_script = "extconf.rb"
+ ext.ext_dir = "ext/google/protobuf_c"
+ ext.lib_dir = "lib/google"
end
Rake::TestTask.new(:test => :build) do |t|
t.test_files = FileList["tests/*.rb"]
end
-task :chmod do
- File.chmod(0755, "lib/protobuf_c.so")
-end
-
Gem::PackageTask.new(spec) do |pkg|
end
-task :package => :chmod
-task :gem => :chmod
task :build => [:clean, :compile]
task :default => [:build]