remove @since tags for 2.0.0

This commit is contained in:
Josh Holtrop 2019-05-09 22:33:26 -04:00
parent 6be0d322a7
commit 6229cef015
5 changed files with 0 additions and 16 deletions

View File

@ -201,8 +201,6 @@ module Rscons
# Register build results from a {Command} with the cache. # Register build results from a {Command} with the cache.
# #
# @since 1.10.0
#
# @param options [Hash] # @param options [Hash]
# Builder finalize options. # Builder finalize options.
# @option options [String] :stdout # @option options [String] :stdout

View File

@ -3,8 +3,6 @@ module Rscons
# A builder to execute an arbitrary command that will produce the given # A builder to execute an arbitrary command that will produce the given
# target based on the given sources. # target based on the given sources.
# #
# @since 1.8.0
#
# Example: # Example:
# env.Command("docs.html", "docs.md", # env.Command("docs.html", "docs.md",
# CMD => %w[pandoc -fmarkdown -thtml -o${_TARGET} ${_SOURCES}]) # CMD => %w[pandoc -fmarkdown -thtml -o${_TARGET} ${_SOURCES}])

View File

@ -1,8 +1,6 @@
module Rscons module Rscons
module Builders module Builders
# A Generic builder which has its operation is defined at instantiation. # A Generic builder which has its operation is defined at instantiation.
#
# @since 1.8.0
class SimpleBuilder < Builder class SimpleBuilder < Builder
# @return [String] # @return [String]

View File

@ -166,8 +166,6 @@ module Rscons
# Create a new {Builders::SimpleBuilder} instance and add it to the # Create a new {Builders::SimpleBuilder} instance and add it to the
# environment. # environment.
# #
# @since 1.8.0
#
# @param name [String,Symbol] # @param name [String,Symbol]
# The name of the builder to add. # The name of the builder to add.
# #
@ -217,8 +215,6 @@ module Rscons
# build operation succeeded. Post-build hooks can register new build # build operation succeeded. Post-build hooks can register new build
# targets. # targets.
# #
# @since 1.7.0
#
# @yield [build_op] # @yield [build_op]
# Invoke the given block with the current build operation. # Invoke the given block with the current build operation.
# @yieldparam build_op [Hash] # @yieldparam build_op [Hash]
@ -376,8 +372,6 @@ module Rscons
# described: # described:
# env.build_after("program.o", "gen.c") # env.build_after("program.o", "gen.c")
# #
# @since 1.10.0
#
# @param targets [String, Array<String>] # @param targets [String, Array<String>]
# Target files to wait to build until the prerequisites are finished # Target files to wait to build until the prerequisites are finished
# building. # building.
@ -404,8 +398,6 @@ module Rscons
# Manually record the given side effect file(s) as being produced when the # Manually record the given side effect file(s) as being produced when the
# named target is produced. # named target is produced.
# #
# @since 1.13.0
#
# @param target [String] # @param target [String]
# Target of a build operation. # Target of a build operation.
# @param side_effects [Array<String>] # @param side_effects [Array<String>]

View File

@ -164,8 +164,6 @@ module Rscons
# Return a Hash containing all variables in the VarSet. # Return a Hash containing all variables in the VarSet.
# #
# @since 1.8.0
#
# This method is not terribly efficient. It is intended to be used only by # This method is not terribly efficient. It is intended to be used only by
# debugging code to dump out a VarSet's variables. # debugging code to dump out a VarSet's variables.
# #