aboutsummaryrefslogtreecommitdiffstats
path: root/spec/quality_spec.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-07-03 13:57:25 -0700
committerAndre Arko <andre@arko.net>2013-07-03 14:00:31 -0700
commit875cba0644798f81ea1eb700ae4b4a07ca7a37e5 (patch)
tree1afc44a5f02c9afb4f82de02496e88688e6246f9 /spec/quality_spec.rb
parent6f8ed6c8756440538995e499a61f2572f959d110 (diff)
parent0c59b21050ec48b9a55cca621ba838d41e5ec043 (diff)
downloadbundler-875cba0644798f81ea1eb700ae4b4a07ca7a37e5.tar.gz
Merge pull request #2510 from headius/stack_friendly_recursion
Add and use a new catch/throw mechanism that's stack-friendly.
Diffstat (limited to 'spec/quality_spec.rb')
-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 baafebc7..840f2be9 100644
--- a/spec/quality_spec.rb
+++ b/spec/quality_spec.rb
@@ -32,6 +32,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