Commit 00e8e45

mo khan <mo@mokhan.ca>
2015-05-03 17:01:33
add berkshelf to resolve dependency on apt cookbook.
1 parent d7f7db7
Berksfile
@@ -0,0 +1,3 @@
+source "https://api.berkshelf.com"
+
+metadata
Berksfile.lock
@@ -0,0 +1,9 @@
+DEPENDENCIES
+  mokhan-myface
+    path: .
+    metadata: true
+
+GRAPH
+  apt (2.7.0)
+  mokhan-myface (0.1.0)
+    apt (>= 0.0.0)
Gemfile
@@ -1,5 +1,7 @@
 source 'https://rubygems.org'
 
+gem 'berkshelf'
+
 group :test do
   gem 'chefspec'
   gem 'foodcritic'
Gemfile.lock
@@ -301,6 +301,7 @@ PLATFORMS
   ruby
 
 DEPENDENCIES
+  berkshelf
   chefspec
   ffaker
   foodcritic
metadata.rb
@@ -5,3 +5,5 @@ license          'All rights reserved'
 description      'Installs/Configures mokhan-myface'
 long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
 version          '0.1.0'
+
+depends "apt"