diff options
author | John Keiser <john@johnkeiser.com> | 2015-07-02 12:51:11 -0600 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2015-07-03 13:10:23 -0600 |
commit | 28f17b36a9d041be8ed50e20ae06fa5f5ea1fb38 (patch) | |
tree | 51bcd8fff1bcde908066f240f29a7f082fd08365 /lib/chef/delayed_evaluator.rb | |
parent | ed2b0904361448173e5644dddacb48399fd8dc68 (diff) | |
download | chef-28f17b36a9d041be8ed50e20ae06fa5f5ea1fb38.tar.gz |
Make required name attributes work
Diffstat (limited to 'lib/chef/delayed_evaluator.rb')
-rw-r--r-- | lib/chef/delayed_evaluator.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/chef/delayed_evaluator.rb b/lib/chef/delayed_evaluator.rb new file mode 100644 index 0000000000..9f18a53445 --- /dev/null +++ b/lib/chef/delayed_evaluator.rb @@ -0,0 +1,21 @@ +# +# Author:: John Keiser <jkeiser@chef.io> +# Copyright:: Copyright (c) 2015 Opscode, Inc. +# License:: Apache License, Version 2.0 +# +# 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. + +class Chef + class DelayedEvaluator < Proc + end +end |