-
Notifications
You must be signed in to change notification settings - Fork 10
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 #27 from chef/slim
Add rake tasks / gems from our other gems and stop skipping docs / tests in the gem
- Loading branch information
Showing
7 changed files
with
65 additions
and
21 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
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 +1,27 @@ | ||
.autotest | ||
coverage | ||
.DS_Store | ||
pkg | ||
*/tags | ||
*~ | ||
|
||
# you should check in your Gemfile.lock in applications, and not in gems | ||
Gemfile.lock | ||
Gemfile.local | ||
|
||
# Do not check in the .bundle directory, or any of the files inside it. Those files are specific to each particular machine, and are used to persist installation options between runs of the bundle install command. | ||
.bundle | ||
|
||
# ignore some common Bundler 'binstubs' directory names | ||
# http://gembundler.com/man/bundle-exec.1.html | ||
b/ | ||
binstubs/ | ||
|
||
# RVM and RBENV ruby version files | ||
.rbenv-version | ||
.rvmrc | ||
|
||
# Documentation | ||
_site/* | ||
.yardoc/ | ||
doc/ |
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,3 +1,22 @@ | ||
source "https://rubygems.org" | ||
|
||
gemspec | ||
gemspec | ||
|
||
group :docs do | ||
gem "yard" | ||
gem "redcarpet" | ||
gem "github-markup" | ||
end | ||
|
||
group :debug 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