Sha256: 8a1cdc024121ac8b9186f09a85409071b9ef07db72a139c9323cbed75aa8c5f1

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

module Reality #nodoc
  module Facets #nodoc

    class << self
      # Copy the targets from the specified generator container to the facet container.
      # This is typically used when projects include both reality-generators and reality-facets
      # and do not want to duplicate the code tor defining targets in both systems
      def copy_targets_from_generator_target_manager(generator_container, facet_container)
        facet_container.target_manager.targets.each do |target|
          generator_container.target_manager.target(target.key, target.container_key, :access_method => target.access_method)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
reality-facets-1.4.0 lib/reality/facets/generators_integration.rb
reality-facets-1.3.0 lib/reality/facets/generators_integration.rb