Sha256: 469dfefd4b97187fd2a60d25b9151949551f861aeb0358dba770587055ceb02a
Contents?: true
Size: 1.18 KB
Versions: 5
Compression:
Stored size: 1.18 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_to_generator_target_manager(template_set_container, facet_container) facet_container.target_manager.targets.each do |target| template_set_container.target_manager.target(target.key, target.container_key, :access_method => target.access_method) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems