From 6229cef01514bd495360e427e4878eaafec5ecda Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 9 May 2019 22:33:26 -0400 Subject: [PATCH] remove @since tags for 2.0.0 --- lib/rscons/builder.rb | 2 -- lib/rscons/builders/command.rb | 2 -- lib/rscons/builders/simple_builder.rb | 2 -- lib/rscons/environment.rb | 8 -------- lib/rscons/varset.rb | 2 -- 5 files changed, 16 deletions(-) diff --git a/lib/rscons/builder.rb b/lib/rscons/builder.rb index d289c8e..5fe5cbf 100644 --- a/lib/rscons/builder.rb +++ b/lib/rscons/builder.rb @@ -201,8 +201,6 @@ module Rscons # Register build results from a {Command} with the cache. # - # @since 1.10.0 - # # @param options [Hash] # Builder finalize options. # @option options [String] :stdout diff --git a/lib/rscons/builders/command.rb b/lib/rscons/builders/command.rb index eadda6a..9a996e4 100644 --- a/lib/rscons/builders/command.rb +++ b/lib/rscons/builders/command.rb @@ -3,8 +3,6 @@ module Rscons # A builder to execute an arbitrary command that will produce the given # target based on the given sources. # - # @since 1.8.0 - # # Example: # env.Command("docs.html", "docs.md", # CMD => %w[pandoc -fmarkdown -thtml -o${_TARGET} ${_SOURCES}]) diff --git a/lib/rscons/builders/simple_builder.rb b/lib/rscons/builders/simple_builder.rb index c9800c5..7b06c2c 100644 --- a/lib/rscons/builders/simple_builder.rb +++ b/lib/rscons/builders/simple_builder.rb @@ -1,8 +1,6 @@ module Rscons module Builders # A Generic builder which has its operation is defined at instantiation. - # - # @since 1.8.0 class SimpleBuilder < Builder # @return [String] diff --git a/lib/rscons/environment.rb b/lib/rscons/environment.rb index 49fc1bb..fa533e0 100644 --- a/lib/rscons/environment.rb +++ b/lib/rscons/environment.rb @@ -166,8 +166,6 @@ module Rscons # Create a new {Builders::SimpleBuilder} instance and add it to the # environment. # - # @since 1.8.0 - # # @param name [String,Symbol] # The name of the builder to add. # @@ -217,8 +215,6 @@ module Rscons # build operation succeeded. Post-build hooks can register new build # targets. # - # @since 1.7.0 - # # @yield [build_op] # Invoke the given block with the current build operation. # @yieldparam build_op [Hash] @@ -376,8 +372,6 @@ module Rscons # described: # env.build_after("program.o", "gen.c") # - # @since 1.10.0 - # # @param targets [String, Array] # Target files to wait to build until the prerequisites are finished # building. @@ -404,8 +398,6 @@ module Rscons # Manually record the given side effect file(s) as being produced when the # named target is produced. # - # @since 1.13.0 - # # @param target [String] # Target of a build operation. # @param side_effects [Array] diff --git a/lib/rscons/varset.rb b/lib/rscons/varset.rb index f6b6161..64241fa 100644 --- a/lib/rscons/varset.rb +++ b/lib/rscons/varset.rb @@ -164,8 +164,6 @@ module Rscons # 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 # debugging code to dump out a VarSet's variables. #