add @since tags for new methods

This commit is contained in:
Josh Holtrop 2017-05-12 21:07:25 -04:00
parent 3e4897c04b
commit 7a31039e35
2 changed files with 9 additions and 0 deletions

View File

@ -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<String>]
@ -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.

View File

@ -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<String>]
# List of source file(s) to build.
# @param suffixes [Array<String>]