-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from chef/rake
Move deps to the Gemfile and expand Rake tasks
- Loading branch information
Showing
8 changed files
with
103 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,27 @@ | ||
/.bundle/ | ||
/.yardoc | ||
/Gemfile.lock | ||
/_yardoc/ | ||
/coverage/ | ||
/doc/ | ||
/pkg/ | ||
/spec/reports/ | ||
/tmp/ | ||
_yardoc | ||
.bundle | ||
.config | ||
.DS_Store | ||
.idea | ||
.rvmrc | ||
.rake_tasks~ | ||
.rspec | ||
.ruby-version | ||
.yardoc | ||
.yardopts | ||
*.gem | ||
*.rbc | ||
*.sw? | ||
bin/ | ||
coverage | ||
doc | ||
Gemfile.local | ||
Gemfile.lock | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,30 @@ | ||
source "https://rubygems.org" | ||
|
||
# Specify your gem's dependencies in mixlib-archive.gemspec | ||
gemspec | ||
|
||
gem "ffi-libarchive" | ||
|
||
group :docs do | ||
gem "yard" | ||
gem "redcarpet" | ||
gem "github-markup" | ||
end | ||
|
||
group :test do | ||
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master" | ||
gem "rspec", "~> 3.0" | ||
gem "rake" | ||
end | ||
|
||
group :development do | ||
gem "pry" | ||
gem "pry-byebug" | ||
gem "pry-stack_explorer" | ||
gem "rb-readline" | ||
end | ||
|
||
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"] | ||
|
||
# If you want to load debugging tools into the bundle exec sandbox, | ||
# add these additional dependencies into Gemfile.local | ||
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Mixlib | ||
class Archive | ||
VERSION = "0.4.9" | ||
VERSION = "0.4.9".freeze | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters