yard 0.9.13 → 0.9.14
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of yard might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/yard/parser/ruby/ruby_parser.rb +3 -11
- data/lib/yard/version.rb +1 -1
- data/spec/examples.txt +1771 -1771
- data/spec/parser/ruby/ruby_parser_spec.rb +2 -1
- metadata +2 -2
@@ -310,10 +310,11 @@ eof
|
|
310
310
|
Fuu = :bar
|
311
311
|
Bar = :BAR
|
312
312
|
Baz = :"B+z"
|
313
|
+
Qux = :if
|
313
314
|
end
|
314
315
|
eof
|
315
316
|
symbols = tokens.select {|t| t[0] == :symbol }.map {|t| t[1] }
|
316
|
-
expect(symbols).to eq %w(:'' :bar :BAR :"B+z")
|
317
|
+
expect(symbols).to eq %w(:'' :bar :BAR :"B+z" :if)
|
317
318
|
end
|
318
319
|
|
319
320
|
it "parses %w() array in constant declaration" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Loren Segal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
YARD is a documentation generation tool for the Ruby programming language.
|