From 7a31039e3583f69c4def0bb6f32795660879afd1 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 12 May 2017 21:07:25 -0400 Subject: [PATCH] add @since tags for new methods --- lib/rscons/builder.rb | 7 +++++++ lib/rscons/environment.rb | 2 ++ 2 files changed, 9 insertions(+) diff --git a/lib/rscons/builder.rb b/lib/rscons/builder.rb index b13dd49..9bf36ef 100644 --- a/lib/rscons/builder.rb +++ b/lib/rscons/builder.rb @@ -68,6 +68,8 @@ module Rscons # needed later in the build, it can be stored in the return value from this # method, which will be passed to the {#run} method. # + # @since 1.10.0 + # # @param options [Hash] # Options. # @option options [String] :target @@ -94,6 +96,7 @@ module Rscons # the method's arity. # # @overload run(target, sources, cache, env, vars) + # # @param target [String] # Target file name. # @param sources [Array] @@ -104,7 +107,11 @@ module Rscons # The Environment executing the builder. # @param vars [Hash,VarSet] # Extra construction variables. + # # @overload run(options) + # + # @since 1.10.0 + # # @param options [Hash] Run options. # @option options [String] :target # Target file name. diff --git a/lib/rscons/environment.rb b/lib/rscons/environment.rb index 0fbc213..e5a57a9 100644 --- a/lib/rscons/environment.rb +++ b/lib/rscons/environment.rb @@ -472,6 +472,8 @@ module Rscons # This method is used internally by Rscons builders. It should be called # from the builder's #setup method. # + # @since 1.10.0 + # # @param sources [Array] # List of source file(s) to build. # @param suffixes [Array]