standardize on "Rscons" capitalization

This commit is contained in:
Josh Holtrop 2014-02-18 16:14:44 -05:00
parent af0679708c
commit 2dde39a0ec
4 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
module Rscons module Rscons
module Builders module Builders
# A default RScons builder that produces a static library archive. # A default Rscons builder that produces a static library archive.
class Rscons::Builders::Library < Rscons::Builder class Rscons::Builders::Library < Rscons::Builder
def default_variables(env) def default_variables(env)
{ {

View File

@ -1,6 +1,6 @@
module Rscons module Rscons
module Builders module Builders
# A default RScons builder which knows how to produce an object file from # A default Rscons builder which knows how to produce an object file from
# various types of source files. # various types of source files.
class Object < Builder class Object < Builder
KNOWN_SUFFIXES = { KNOWN_SUFFIXES = {

View File

@ -1,6 +1,6 @@
module Rscons module Rscons
module Builders module Builders
# A default RScons builder that knows how to link object files into an # A default Rscons builder that knows how to link object files into an
# executable program. # executable program.
class Rscons::Builders::Program < Rscons::Builder class Rscons::Builders::Program < Rscons::Builder
def default_variables(env) def default_variables(env)

View File

@ -2,7 +2,7 @@ require 'set'
require 'fileutils' require 'fileutils'
module Rscons module Rscons
# The Environment class is the main programmatic interface to RScons. It # The Environment class is the main programmatic interface to Rscons. It
# contains a collection of construction variables, options, builders, and # contains a collection of construction variables, options, builders, and
# rules for building targets. # rules for building targets.
class Environment class Environment
@ -246,7 +246,7 @@ module Rscons
# Build a list of source files into files containing one of the suffixes # Build a list of source files into files containing one of the suffixes
# given by suffixes. # given by suffixes.
# This method is used internally by RScons builders. # This method is used internally by Rscons builders.
# @param sources [Array] List of source files to build. # @param sources [Array] List of source files to build.
# @param suffixes [Array] List of suffixes to try to convert source files into. # @param suffixes [Array] List of suffixes to try to convert source files into.
# @param cache [Cache] The Cache. # @param cache [Cache] The Cache.
@ -294,7 +294,7 @@ module Rscons
end end
# Parse dependencies for a given target from a Makefile. # Parse dependencies for a given target from a Makefile.
# This method is used internally by RScons builders. # This method is used internally by Rscons builders.
# @param mf_fname [String] File name of the Makefile to read. # @param mf_fname [String] File name of the Makefile to read.
# @param target [String] Name of the target to gather dependencies for. # @param target [String] Name of the target to gather dependencies for.
def self.parse_makefile_deps(mf_fname, target) def self.parse_makefile_deps(mf_fname, target)