summaryrefslogtreecommitdiff
path: root/chef/lib/chef/application/solo.rb
diff options
context:
space:
mode:
authorAJ Christensen <aj@junglist.gen.nz>2009-05-06 21:08:02 +1200
committerAJ Christensen <aj@junglist.gen.nz>2009-05-09 21:24:59 +1200
commit4004bcb917c1f5322fc0d5fd183552899aa92f54 (patch)
tree2eeba3410530a85fcf49bc9f87f12e015830fe7b /chef/lib/chef/application/solo.rb
parent17de4f8c9f1bc0d4c7400a5100ab2ce2ab594e28 (diff)
downloadchef-4004bcb917c1f5322fc0d5fd183552899aa92f54.tar.gz
CHEF-151: Initial work refactoring the binary logic into classes
Add 'Application' exception class. Add an Application class, which configures chef, the logger and options parser. Add placeholder specifications for application class and child classes.
Diffstat (limited to 'chef/lib/chef/application/solo.rb')
-rw-r--r--chef/lib/chef/application/solo.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/chef/lib/chef/application/solo.rb b/chef/lib/chef/application/solo.rb
new file mode 100644
index 0000000000..37974f40ac
--- /dev/null
+++ b/chef/lib/chef/application/solo.rb
@@ -0,0 +1,18 @@
+#
+# Author:: AJ Christensen (<aj@junglist.gen.nz>)
+# Copyright:: Copyright (c) 2008 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.
+
+require 'chef/application' \ No newline at end of file