aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-06-21 11:23:17 -0700
committerCharles Oliver Nutter <headius@headius.com>2013-06-23 11:17:31 -0500
commit0c59b21050ec48b9a55cca621ba838d41e5ec043 (patch)
treec98804f28405475b850446ad036e9da5b6346fef /spec
parent75d1dab83f44efa5fa075bac8165458e6bfe628d (diff)
downloadbundler-0c59b21050ec48b9a55cca621ba838d41e5ec043.tar.gz
license whitespace spec fix
Diffstat (limited to 'spec')
-rw-r--r--spec/quality_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/quality_spec.rb b/spec/quality_spec.rb
index a9d3d6f4..45458729 100644
--- a/spec/quality_spec.rb
+++ b/spec/quality_spec.rb
@@ -20,6 +20,7 @@ describe "The library itself" do
failing_lines = []
File.readlines(filename).each_with_index do |line,number|
next if line =~ /^\s+#.*\s+\n$/
+ next if %w(LICENCE.md).include?(line)
failing_lines << number + 1 if line =~ /\s+\n$/
end