From 0be0d9a186110be65c59099c7633a83feeaa6cf9 Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Fri, 22 Jul 2016 12:29:20 -0400 Subject: Add install_gemfile! for specs --- spec/support/helpers.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'spec/support') diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb index 0293f08716..0d2338df90 100644 --- a/spec/support/helpers.rb +++ b/spec/support/helpers.rb @@ -217,6 +217,7 @@ module Spec opts[:retry] ||= 0 bundle :install, opts end + bang :install_gemfile def lock_gemfile(*args) gemfile(*args) -- cgit v1.2.1 From 3a240097248bb381209811b59d0aa4b28b6a16b1 Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Sun, 24 Jul 2016 15:57:12 -0500 Subject: Update specs for improved gemspec detection --- spec/support/builders.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'spec/support') diff --git a/spec/support/builders.rb b/spec/support/builders.rb index 2491f87b77..c09cf82c0a 100644 --- a/spec/support/builders.rb +++ b/spec/support/builders.rb @@ -393,6 +393,8 @@ module Spec s.name = name s.version = Gem::Version.new(v) s.platform = platform + s.authors = ["no one in particular"] + s.summary = "a gemspec used only for testing" DepBuilder.run(s, &block) if block_given? end end -- cgit v1.2.1