summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Hasegawa <ameutau@gmail.com>2015-03-07 20:14:21 -0500
committerKohei Hasegawa <ameutau@gmail.com>2015-03-08 20:00:47 -0400
commitf3d935e70cd90c86d4a7a57c68d1f632fc793d13 (patch)
treec4ecbd7d0da7ae90425f3b964fe6d6f24ed61c42
parent04cc1f372ce88a8950803f48f42b8ccdfd1f1fa8 (diff)
downloadbundler-f3d935e70cd90c86d4a7a57c68d1f632fc793d13.tar.gz
Remove unnecessary blank line
-rw-r--r--lib/bundler/templates/newgem/Rakefile.tt1
-rw-r--r--spec/commands/newgem_spec.rb3
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/bundler/templates/newgem/Rakefile.tt b/lib/bundler/templates/newgem/Rakefile.tt
index d48487418c..e0e87e59a7 100644
--- a/lib/bundler/templates/newgem/Rakefile.tt
+++ b/lib/bundler/templates/newgem/Rakefile.tt
@@ -14,7 +14,6 @@ RSpec::Core::RakeTask.new(:spec)
task :default => :spec
<% end -%>
-
<% if config[:ext] -%>
require "rake/extensiontask"
diff --git a/spec/commands/newgem_spec.rb b/spec/commands/newgem_spec.rb
index 2ca9a8a768..f775f81b84 100644
--- a/spec/commands/newgem_spec.rb
+++ b/spec/commands/newgem_spec.rb
@@ -489,7 +489,6 @@ describe "bundle gem" do
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
-
RAKEFILE
expect(bundled_app("test-gem/Rakefile").read).to eq(rakefile)
@@ -530,7 +529,6 @@ describe "bundle gem" do
end
task :default => :test
-
RAKEFILE
expect(bundled_app("test-gem/Rakefile").read).to eq(rakefile)
@@ -570,7 +568,6 @@ describe "bundle gem" do
it "depends on compile task for build" do
rakefile = strip_whitespace <<-RAKEFILE
require "bundler/gem_tasks"
-
require "rake/extensiontask"
task :build => :compile