You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/09/23 14:28:58 UTC

[04/50] rebar commit: updated refs/heads/import to 5dea85d

Merge branch 'dia_first_files' of https://github.com/fholzhauser/rebar into fholzhauser-dia_first_files


Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/e200ca1a
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/e200ca1a
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/e200ca1a

Branch: refs/heads/import
Commit: e200ca1ae3f338bf324f387ee6771de7ffe74a4b
Parents: bb92ba9 b22487d
Author: Fred Hebert <mo...@ferd.ca>
Authored: Sat May 9 14:03:30 2015 -0400
Committer: Fred Hebert <mo...@ferd.ca>
Committed: Sat May 9 14:03:30 2015 -0400

----------------------------------------------------------------------
 rebar.config.sample        |  8 +++++++
 src/rebar_dia_compiler.erl | 47 ++++++++++++++++++++++++++++++++++-------
 2 files changed, 47 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/e200ca1a/rebar.config.sample
----------------------------------------------------------------------
diff --cc rebar.config.sample
index 91d3dff,726dbed..90ea6ee
--- a/rebar.config.sample
+++ b/rebar.config.sample
@@@ -89,21 -89,14 +89,29 @@@
  %% Options for the ErlyDTL compiler
  {erlydtl_opts, []}.
  
 +%% == Proto compiler ==
 +{proto_opts, [
 +    {compiler, protobuffs},
 +    {src_dirs, ["src"]}
 +]}.
 +%% Available compilers for protocol buffer files (*.proto):
 +%%   protobuffs  (default)
 +%%   gpb
 +%% Optional src_dirs which is a list of directories where
 +%% to look for .proto files, default is src
 +
 +%% Options for the gpb protocol buffer compiler,
 +%% if selected by the proto_compiler option
 +{gpb_opts, []}.
 +
+ %% == Diameter compiler ==
+ 
+ %% Diameter files to compile before the rest
+ {dia_first_files, []}.
+ 
+ %% Options for the diameter compiler
+ {dia_opts, []}.
+ 
  %% == EUnit ==
  
  %% Options for eunit:test()

http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/e200ca1a/src/rebar_dia_compiler.erl
----------------------------------------------------------------------