summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-08-06 21:02:16 -0700
committerTim Smith <tsmith84@gmail.com>2019-08-06 21:02:16 -0700
commit01b46cf6efe0b0ba5fa0458e1c33a99945a6e5e7 (patch)
tree2146d5360c1931bf8939b6e8f330494954c0c752
parent1d60af72a9e1cfa7155bf42bcba6b0f25e863324 (diff)
downloadmixlib-log-01b46cf6efe0b0ba5fa0458e1c33a99945a6e5e7.tar.gz
Use standard gemfile groups
This makes it easier diff Signed-off-by: Tim Smith <tsmith@chef.io>
-rwxr-xr-xGemfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 432ee84..60cad82 100755
--- a/Gemfile
+++ b/Gemfile
@@ -3,19 +3,19 @@ source "https://rubygems.org"
gemspec
group :docs do
- gem "yard"
- gem "redcarpet"
gem "github-markup"
+ gem "redcarpet"
+ gem "yard"
end
group :test do
- gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
- gem "rspec", "~> 3.7"
+ gem "chefstyle"
gem "cucumber"
gem "rake"
+ gem "rspec", "~> 3.7"
end
-group :development do
+group :debug do
gem "pry"
gem "pry-byebug"
gem "pry-stack_explorer"