Skip to content

Commit

Permalink
Merge pull request #25 from thommay/drivers
Browse files Browse the repository at this point in the history
Split drivers into individual classes
  • Loading branch information
jkeiser committed Jun 18, 2014
2 parents 3978d19 + eb60dc3 commit cf0a641
Show file tree
Hide file tree
Showing 19 changed files with 691 additions and 398 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pkg/
*.lock
.*~
tags
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
source "https://rubygems.org"
gemfile
gemspec

group :development do
gem 'chef'
gem 'chef-metal'
gem 'guard'
gem 'guard-rspec'
gem 'rb-readline'
end
9 changes: 9 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :rspec do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end

67 changes: 0 additions & 67 deletions lib/chef_metal_fog/aws_credentials.rb

This file was deleted.

Loading

0 comments on commit cf0a641

Please sign in to comment.