rspec-apib 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: acdaaea75bf851d94f43e05754ae02855d97b160
4
- data.tar.gz: 26aabec691e24cf119d6d6ee2bab85feb19692a0
3
+ metadata.gz: 650ebb44b91802bd37d5af30874aff1d1e6aa44a
4
+ data.tar.gz: 82a51125d8ab6ad9ccb7f45395e79b1a1f49f57f
5
5
  SHA512:
6
- metadata.gz: 550d0b586e2969c09e3203cdcfdd286e24e5c2b0eb80e2de6fe8b3367aa26d0eeb0c826dc7791f3a3ceb4464f365c7351ca0b88907d366c4a487c7c6b1a16f9b
7
- data.tar.gz: 78e1201a5e7bae314902e08d5585548aaf503295f5d4abe2939f626ab208165c9001185411ba3ebff85f11ec202e7c3ac57e2a595243bf05146bcbb24b2019cd
6
+ metadata.gz: 0c3b67dbbe86084d2d24ba459762b0a7cb8e021d1940a34973bc29678fbff113a8a1b55edb6398899b9b0a64f6971f953f96ea08d6ecec709d7c6d8a7015d836
7
+ data.tar.gz: bfabc867f55cfcd1347a40f2959c861cbb7bfcb7f9f1ece715b59e0568b69dd447b3caf4998b1df0d86eb94e5d86977c320529cd918446470c88ecb6d8873be2
@@ -154,8 +154,8 @@ module RSpec
154
154
  return if lines.count < line
155
155
  i = line -2
156
156
  m = false
157
- while (i >= 0 && lines[i].match(/\A\W*#/)) do
158
- if lines[i - 1].match(/\A\W*# --- apib/)
157
+ while (i >= 0 && lines[i].match(/\A\s*#/)) do
158
+ if lines[i - 1].match(/\A\s*# --- apib/)
159
159
  m = true
160
160
  break
161
161
  end
@@ -163,11 +163,11 @@ module RSpec
163
163
  end
164
164
  return unless m
165
165
  result = []
166
- while (i < line && lines[i].match(/\A\W*#/)) do
167
- if lines[i].match(/\A\W*# ---/)
166
+ while (i < line && lines[i].match(/\A\s*#/)) do
167
+ if lines[i].match(/\A\s*# ---\s*\z/)
168
168
  break
169
169
  end
170
- result << lines[i].sub(/^\W*#\W*/, '').strip
170
+ result << lines[i].sub(/^\s*#\s*/, '').strip
171
171
  i += 1
172
172
  end
173
173
  return result.join("\n")
@@ -1,5 +1,5 @@
1
1
  module RSpec
2
2
  module Apib
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-apib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Spieker