Here’s a little Makefile I use with the Rails Pipeline we’re building at Harry’s. It builds .proto ProtocolBuffer definitions into .pb.rb Ruby classes using the ruby-protoc compiler.
To use, you would have ruby-protoc in your Gemfile. Set the GENDIR variable to point at the directory with your .proto files, then run make
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Brief makefile to create ruby objects from protocol buffer definitions | |
GENDIR=./lib/rails-pipeline/protobuf | |
RUBY_PROTOC=bundle exec ruby-protoc | |
PROTOS=$(wildcard $(GENDIR)/*.proto) | |
PBS=$(PROTOS:%.proto=%.pb.rb) | |
all: $(PBS) | |
%.pb.rb: %.proto | |
$(RUBY_PROTOC) $< | |
clean: | |
rm -f $(PBS) |