diff options
author | Joe Rafaniello <jrafanie@redhat.com> | 2016-06-17 09:51:03 -0400 |
---|---|---|
committer | Joe Rafaniello <jrafanie@redhat.com> | 2016-06-17 12:57:28 -0400 |
commit | 1b66b1d4dbe779b658c67e1fd7094808aa6f34ee (patch) | |
tree | c08fff9a7552d789ac8ae368484e55797d4a124f /spec/bundler/definition_spec.rb | |
parent | 33e238d3b0a0a779ef7de1af02e0b34138f3cb66 (diff) | |
download | bundler-1b66b1d4dbe779b658c67e1fd7094808aa6f34ee.tar.gz |
Don't include dev dependencies when comparing indexes.
Diffstat (limited to 'spec/bundler/definition_spec.rb')
-rw-r--r-- | spec/bundler/definition_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/bundler/definition_spec.rb b/spec/bundler/definition_spec.rb index 02049b557a..a8ee3080f1 100644 --- a/spec/bundler/definition_spec.rb +++ b/spec/bundler/definition_spec.rb @@ -73,6 +73,7 @@ describe Bundler::Definition do it "for a path gem with deps and no changes" do build_lib "foo", "1.0", :path => lib_path("foo") do |s| s.add_dependency "rack", "1.0" + s.add_development_dependency "net-ssh", "1.0" end install_gemfile <<-G |