diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-09-10 13:29:28 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-09-10 13:29:28 -0700 |
commit | 22eac667f6ee2f0970e9a8dea4f8cb3d693ee6d5 (patch) | |
tree | af94dcc163f4e44a4cbc64469b2c2af2ffe1a082 /Gemfile | |
parent | ea979c15f3293e54bf516b81379e0234e185e9c0 (diff) | |
download | ohai-22eac667f6ee2f0970e9a8dea4f8cb3d693ee6d5.tar.gz |
Order the gems in the gemspec and gemfileorder_gems
Makes it a tiny bit easier on the eyes to find stuff
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -5,19 +5,20 @@ gemspec # NOTE: do not submit PRs to add pry as a dep, add to your Gemfile.local group :development do gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master" - gem "rubocop-performance", "1.8.0" + gem "ipaddr_extensions" gem "rake", ">= 10.1.0" + gem "rspec-collection_matchers", "~> 1.0" gem "rspec-core", "~> 3.0" gem "rspec-expectations", "~> 3.0" gem "rspec-mocks", "~> 3.0" - gem "rspec-collection_matchers", "~> 1.0" - gem "ipaddr_extensions" + gem "rubocop-performance", "1.8.0" + gem "rubocop-rspec" end group :docs do - gem "yard" - gem "redcarpet" gem "github-markup" + gem "redcarpet" + gem "yard" end group :debug do @@ -25,4 +26,4 @@ group :debug do gem "pry-byebug" gem "pry-stack_explorer", "~> 0.4.0" # pin until we drop ruby < 2.6 gem "rb-readline" -end
\ No newline at end of file +end |