From: Imre Farkas <[email protected]> --- .../initializers/provider_selection_strategies.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/config/initializers/provider_selection_strategies.rb
diff --git a/src/config/initializers/provider_selection_strategies.rb b/src/config/initializers/provider_selection_strategies.rb new file mode 100644 index 0000000..ccbc2e7 --- /dev/null +++ b/src/config/initializers/provider_selection_strategies.rb @@ -0,0 +1,21 @@ +# +# Copyright 2012 Red Hat, Inc. +# +# 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. +# + +# Load base classes in lib +require File.join(Rails.root, 'lib', 'provider_selection.rb') + +# Load extensions in vendor +require File.join(Rails.root, 'vendor/provider_selection/provider_selection.rb') -- 1.7.11.2
