deg-yard 0.8.7.3 → 0.8.7.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e2f0a952c9366a76e5e2413f061fc18775facc6
4
- data.tar.gz: f4ba17d8007b86f6856eff3c07e1f905725e8d17
3
+ metadata.gz: dda2e44362232810306ca3839ce3d515e9c46bb4
4
+ data.tar.gz: c38a1d28262cb346220e1599eb0488e1b7a7db3e
5
5
  SHA512:
6
- metadata.gz: 539eaa8bfe4e2910e36f27cb4dd177ba3d779bfbe6e10df779c5a4d99e2ff6e2acc1b6336b0a0e0263b7055f8d7b0b20b14679f03dad3bc1ccb78ad4534abd28
7
- data.tar.gz: 64d1190b9d1568dca7e834796e5cf3bde83d542e66140081b11cbcada40c0e49ed246818e9a28b6e1ca7bdb2ea44be3a61223fb101b5d215f14b2898befdc1ae
6
+ metadata.gz: 599f3ce5edb8ede81296b83d988ae1ff758846d5e912c76e83f520aa48a4452f86dd9f0d41030f3278c85d38cf6a1dc6abf8baf306d8b2597059f4b4f3ba7cc7
7
+ data.tar.gz: e622afedc97b4d7a756db1e50ea7ef94a3f615454d61bdfb1aa4847f61c6af108946a7ad28f65e6552e4c8585f7a63b87066d0cefea4b2687d0c30ad07ee59c3
data/Rakefile CHANGED
@@ -6,20 +6,14 @@ YARD::VERSION.replace(ENV['YARD_VERSION']) if ENV['YARD_VERSION']
6
6
 
7
7
  task :default => :specs
8
8
 
9
- require 'jeweler'
10
- Jeweler::Tasks.new do |gem|
11
- # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
12
- gem.name = "deg-yard"
13
- gem.homepage = "http://github.com/DavidEGrayson/yard"
14
- gem.license = "MIT"
15
- gem.summary = "DavidEGrayson's fork of the YARD gem with unicode support."
16
- gem.description = "The real YARD gem is maintained by Loren Segal. This is a fork made by DavidEGrayson to fix some things that were bothering him."
17
- gem.email = "davidegrayson@gmail.com"
18
- gem.authors = ["David Grayson", "Loren Segal"]
19
- gem.version = YARD::VERSION
20
- # dependencies defined in Gemfile
9
+ task :gem do
10
+ sh "gem build yard.gemspec"
11
+ end
12
+
13
+ desc "Installs the gem"
14
+ task :install => :gem do
15
+ sh "gem install yard-#{YARD::VERSION}.gem --no-rdoc --no-ri"
21
16
  end
22
- Jeweler::RubygemsDotOrgTasks.new
23
17
 
24
18
  begin
25
19
  require 'rvm-tester'
@@ -0,0 +1,20 @@
1
+ require File.expand_path('../lib/yard/version', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "deg-yard"
5
+ s.summary = "DavidEGrayson's fork of the YARD gem which has some extra bug fixes."
6
+ s.description = "The real YARD gem is maintained by Loren Segal. This is a fork made by DavidEGrayson to fix some things that were bothering him."
7
+ s.version = YARD::VERSION
8
+ s.date = Time.now.strftime('%Y-%m-%d')
9
+ s.authors = ["David Grayson", "Loren Segal"]
10
+ s.email = "davidegrayson@gmail.com"
11
+ s.homepage = "http://github.com/DavidEGrayson/yard"
12
+ s.platform = Gem::Platform::RUBY
13
+ s.files = Dir.glob("{docs,bin,lib,spec,templates,benchmarks}/**/*") +
14
+ ['LICENSE', 'LEGAL', 'README.md', 'Rakefile', '.yardopts', __FILE__]
15
+ s.require_paths = ['lib']
16
+ s.executables = ['yard', 'yardoc', 'yri']
17
+ s.has_rdoc = 'yard'
18
+ s.rubyforge_project = 'yard'
19
+ s.license = 'MIT' if s.respond_to?(:license=)
20
+ end
@@ -134,7 +134,7 @@ module YARD
134
134
 
135
135
  private
136
136
  def header
137
- <<-'EOH'
137
+ <<-EOH
138
138
  # SOME DESCRIPTIVE TITLE.
139
139
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
140
140
  # This file is distributed under the same license as the PACKAGE package.
@@ -143,20 +143,28 @@ module YARD
143
143
  #, fuzzy
144
144
  msgid ""
145
145
  msgstr ""
146
- "Project-Id-Version: PACKAGE VERSION\n"
147
- "Report-Msgid-Bugs-To: \n"
148
- "POT-Creation-Date: 2011-11-20 22:17+0900\n"
149
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
150
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
151
- "Language-Team: LANGUAGE <LL@li.org>\n"
152
- "Language: \n"
153
- "MIME-Version: 1.0\n"
154
- "Content-Type: text/plain; charset=UTF-8\n"
155
- "Content-Transfer-Encoding: 8bit\n"
146
+ "Project-Id-Version: PACKAGE VERSION\\n"
147
+ "Report-Msgid-Bugs-To: \\n"
148
+ "POT-Creation-Date: #{generate_pot_creation_date_value}\\n"
149
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n"
150
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n"
151
+ "Language-Team: LANGUAGE <LL@li.org>\\n"
152
+ "Language: \\n"
153
+ "MIME-Version: 1.0\\n"
154
+ "Content-Type: text/plain; charset=UTF-8\\n"
155
+ "Content-Transfer-Encoding: 8bit\\n"
156
156
 
157
157
  EOH
158
158
  end
159
159
 
160
+ def current_time
161
+ @current_time ||= Time.now
162
+ end
163
+
164
+ def generate_pot_creation_date_value
165
+ current_time.strftime("%Y-%m-%d %H:%M%z")
166
+ end
167
+
160
168
  def generate_message(pot, message)
161
169
  message.comments.sort.each do |comment|
162
170
  pot << "# #{comment}\n" unless comment.empty?
@@ -1,3 +1,3 @@
1
1
  module YARD
2
- VERSION = "0.8.7.3"
2
+ VERSION = "0.8.7.4"
3
3
  end
@@ -25,7 +25,10 @@ describe YARD::I18n::PotGenerator do
25
25
 
26
26
  describe "Generate" do
27
27
  it "should generate the default header" do
28
- @generator.generate.should == <<-'eoh'
28
+ current_time = Time.parse("2011-11-20 22:17+0900")
29
+ @generator.stub!(:current_time).and_return(current_time)
30
+ pot_creation_date = current_time.strftime("%Y-%m-%d %H:%M%z")
31
+ @generator.generate.should == <<-eoh
29
32
  # SOME DESCRIPTIVE TITLE.
30
33
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
31
34
  # This file is distributed under the same license as the PACKAGE package.
@@ -34,16 +37,16 @@ describe YARD::I18n::PotGenerator do
34
37
  #, fuzzy
35
38
  msgid ""
36
39
  msgstr ""
37
- "Project-Id-Version: PACKAGE VERSION\n"
38
- "Report-Msgid-Bugs-To: \n"
39
- "POT-Creation-Date: 2011-11-20 22:17+0900\n"
40
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
41
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
42
- "Language-Team: LANGUAGE <LL@li.org>\n"
43
- "Language: \n"
44
- "MIME-Version: 1.0\n"
45
- "Content-Type: text/plain; charset=UTF-8\n"
46
- "Content-Transfer-Encoding: 8bit\n"
40
+ "Project-Id-Version: PACKAGE VERSION\\n"
41
+ "Report-Msgid-Bugs-To: \\n"
42
+ "POT-Creation-Date: #{pot_creation_date}\\n"
43
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n"
44
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n"
45
+ "Language-Team: LANGUAGE <LL@li.org>\\n"
46
+ "Language: \\n"
47
+ "MIME-Version: 1.0\\n"
48
+ "Content-Type: text/plain; charset=UTF-8\\n"
49
+ "Content-Transfer-Encoding: 8bit\\n"
47
50
 
48
51
  eoh
49
52
  end
@@ -1,6 +1,5 @@
1
1
  # I had to make some changes to this file because deg-yard.gemspec has a different name
2
- # and a few different properties than the official yard.gemspec. Mine was generated
3
- # by Jeweler while the official one is part of Loren Segal's git repository.
2
+ # and a few different properties than the official yard.gemspec.
4
3
 
5
4
  require File.dirname(__FILE__) + '/../spec_helper'
6
5
  require File.join(YARD::ROOT, 'rubygems_plugin')
@@ -18,7 +17,6 @@ describe Gem::DocManager do
18
17
  @spec_file = File.join(YARD::ROOT, '..', 'deg-yard.gemspec')
19
18
  @spec = Gem::SourceIndex.load_specification(@spec_file)
20
19
  @spec.has_yardoc = false # no yardoc docs for now
21
- @spec.extra_rdoc_files = []
22
20
  @yardopts = File.join(@spec.full_gem_path, '.yardopts')
23
21
  @doc = Gem::DocManager.new(@spec)
24
22
  @doc.stub(:install_ri_yard_orig)
@@ -1,5 +1,5 @@
1
1
  <script type="text/javascript" charset="utf-8">
2
2
  hasFrames = window.top.frames.main ? true : false;
3
3
  relpath = '<%= u = url_for(''); u + (u != '' ? '/' : '') %>';
4
- framesUrl = "<%= url_for_frameset %>#!" + escape(window.location.href);
4
+ framesUrl = "<%= url_for_frameset %>#!<%= url_for(@file || @object, nil, false) %>";
5
5
  </script>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deg-yard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.7.3
4
+ version: 0.8.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Grayson
@@ -9,78 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-04 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: rspec
16
- version_requirements: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - '='
19
- - !ruby/object:Gem::Version
20
- version: '2.12'
21
- requirement: !ruby/object:Gem::Requirement
22
- requirements:
23
- - - '='
24
- - !ruby/object:Gem::Version
25
- version: '2.12'
26
- prerelease: false
27
- type: :development
28
- - !ruby/object:Gem::Dependency
29
- name: rake
30
- version_requirements: !ruby/object:Gem::Requirement
31
- requirements:
32
- - - '>='
33
- - !ruby/object:Gem::Version
34
- version: '0'
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - '>='
38
- - !ruby/object:Gem::Version
39
- version: '0'
40
- prerelease: false
41
- type: :development
42
- - !ruby/object:Gem::Dependency
43
- name: rvm-tester
44
- version_requirements: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - '>='
47
- - !ruby/object:Gem::Version
48
- version: '0'
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - '>='
52
- - !ruby/object:Gem::Version
53
- version: '0'
54
- prerelease: false
55
- type: :development
56
- - !ruby/object:Gem::Dependency
57
- name: simplecov
58
- version_requirements: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - '>='
61
- - !ruby/object:Gem::Version
62
- version: '0'
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - '>='
66
- - !ruby/object:Gem::Version
67
- version: '0'
68
- prerelease: false
69
- type: :development
70
- - !ruby/object:Gem::Dependency
71
- name: jeweler
72
- version_requirements: !ruby/object:Gem::Requirement
73
- requirements:
74
- - - '>='
75
- - !ruby/object:Gem::Version
76
- version: '0'
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - '>='
80
- - !ruby/object:Gem::Version
81
- version: '0'
82
- prerelease: false
83
- type: :development
12
+ date: 2014-03-02 00:00:00.000000000 Z
13
+ dependencies: []
84
14
  description: The real YARD gem is maintained by Loren Segal. This is a fork made by DavidEGrayson to fix some things that were bothering him.
85
15
  email: davidegrayson@gmail.com
86
16
  executables:
@@ -88,39 +18,8 @@ executables:
88
18
  - yardoc
89
19
  - yri
90
20
  extensions: []
91
- extra_rdoc_files:
92
- - LICENSE
93
- - README.md
21
+ extra_rdoc_files: []
94
22
  files:
95
- - .travis.yml
96
- - .yardopts
97
- - .yardopts_guide
98
- - .yardopts_i18n
99
- - Gemfile
100
- - LEGAL
101
- - LICENSE
102
- - README.md
103
- - Rakefile
104
- - benchmarks/builtins_vs_eval.rb
105
- - benchmarks/concat_vs_join.rb
106
- - benchmarks/erb_vs_erubis.rb
107
- - benchmarks/format_args.rb
108
- - benchmarks/generation.rb
109
- - benchmarks/marshal_vs_dbm.rb
110
- - benchmarks/parsing.rb
111
- - benchmarks/pathname_vs_string.rb
112
- - benchmarks/rdoc_vs_yardoc.rb
113
- - benchmarks/registry_store_types.rb
114
- - benchmarks/ri_vs_yri.rb
115
- - benchmarks/ripper_parser.rb
116
- - benchmarks/splat_vs_flatten.rb
117
- - benchmarks/template_erb.rb
118
- - benchmarks/template_format.rb
119
- - benchmarks/template_profile.rb
120
- - benchmarks/yri_cache.rb
121
- - bin/yard
122
- - bin/yardoc
123
- - bin/yri
124
23
  - docs/CodeObjects.md
125
24
  - docs/GettingStarted.md
126
25
  - docs/Handlers.md
@@ -135,16 +34,30 @@ files:
135
34
  - docs/images/overview-class-diagram.png
136
35
  - docs/images/parser-class-diagram.png
137
36
  - docs/images/tags-class-diagram.png
37
+ - docs/templates/plugin.rb
138
38
  - docs/templates/default/fulldoc/html/full_list_tag.erb
139
39
  - docs/templates/default/fulldoc/html/setup.rb
140
40
  - docs/templates/default/layout/html/setup.rb
141
41
  - docs/templates/default/layout/html/tag_list.erb
142
42
  - docs/templates/default/yard_tags/html/list.erb
143
43
  - docs/templates/default/yard_tags/html/setup.rb
144
- - docs/templates/plugin.rb
44
+ - bin/yard
45
+ - bin/yardoc
46
+ - bin/yri
145
47
  - lib/rubygems_plugin.rb
146
48
  - lib/yard.rb
147
49
  - lib/yard/autoload.rb
50
+ - lib/yard/config.rb
51
+ - lib/yard/docstring.rb
52
+ - lib/yard/docstring_parser.rb
53
+ - lib/yard/globals.rb
54
+ - lib/yard/logging.rb
55
+ - lib/yard/options.rb
56
+ - lib/yard/registry.rb
57
+ - lib/yard/registry_store.rb
58
+ - lib/yard/server.rb
59
+ - lib/yard/verifier.rb
60
+ - lib/yard/version.rb
148
61
  - lib/yard/cli/command.rb
149
62
  - lib/yard/cli/command_parser.rb
150
63
  - lib/yard/cli/config.rb
@@ -173,7 +86,6 @@ files:
173
86
  - lib/yard/code_objects/namespace_object.rb
174
87
  - lib/yard/code_objects/proxy.rb
175
88
  - lib/yard/code_objects/root_object.rb
176
- - lib/yard/config.rb
177
89
  - lib/yard/core_ext/array.rb
178
90
  - lib/yard/core_ext/file.rb
179
91
  - lib/yard/core_ext/hash.rb
@@ -181,10 +93,8 @@ files:
181
93
  - lib/yard/core_ext/module.rb
182
94
  - lib/yard/core_ext/string.rb
183
95
  - lib/yard/core_ext/symbol_hash.rb
184
- - lib/yard/docstring.rb
185
- - lib/yard/docstring_parser.rb
186
- - lib/yard/globals.rb
187
96
  - lib/yard/handlers/base.rb
97
+ - lib/yard/handlers/processor.rb
188
98
  - lib/yard/handlers/c/alias_handler.rb
189
99
  - lib/yard/handlers/c/attribute_handler.rb
190
100
  - lib/yard/handlers/c/base.rb
@@ -199,7 +109,6 @@ files:
199
109
  - lib/yard/handlers/c/path_handler.rb
200
110
  - lib/yard/handlers/c/struct_handler.rb
201
111
  - lib/yard/handlers/c/symbol_handler.rb
202
- - lib/yard/handlers/processor.rb
203
112
  - lib/yard/handlers/ruby/alias_handler.rb
204
113
  - lib/yard/handlers/ruby/attribute_handler.rb
205
114
  - lib/yard/handlers/ruby/base.rb
@@ -212,6 +121,15 @@ files:
212
121
  - lib/yard/handlers/ruby/dsl_handler_methods.rb
213
122
  - lib/yard/handlers/ruby/exception_handler.rb
214
123
  - lib/yard/handlers/ruby/extend_handler.rb
124
+ - lib/yard/handlers/ruby/method_condition_handler.rb
125
+ - lib/yard/handlers/ruby/method_handler.rb
126
+ - lib/yard/handlers/ruby/mixin_handler.rb
127
+ - lib/yard/handlers/ruby/module_function_handler.rb
128
+ - lib/yard/handlers/ruby/module_handler.rb
129
+ - lib/yard/handlers/ruby/private_constant_handler.rb
130
+ - lib/yard/handlers/ruby/struct_handler_methods.rb
131
+ - lib/yard/handlers/ruby/visibility_handler.rb
132
+ - lib/yard/handlers/ruby/yield_handler.rb
215
133
  - lib/yard/handlers/ruby/legacy/alias_handler.rb
216
134
  - lib/yard/handlers/ruby/legacy/attribute_handler.rb
217
135
  - lib/yard/handlers/ruby/legacy/base.rb
@@ -230,52 +148,45 @@ files:
230
148
  - lib/yard/handlers/ruby/legacy/private_constant_handler.rb
231
149
  - lib/yard/handlers/ruby/legacy/visibility_handler.rb
232
150
  - lib/yard/handlers/ruby/legacy/yield_handler.rb
233
- - lib/yard/handlers/ruby/method_condition_handler.rb
234
- - lib/yard/handlers/ruby/method_handler.rb
235
- - lib/yard/handlers/ruby/mixin_handler.rb
236
- - lib/yard/handlers/ruby/module_function_handler.rb
237
- - lib/yard/handlers/ruby/module_handler.rb
238
- - lib/yard/handlers/ruby/private_constant_handler.rb
239
- - lib/yard/handlers/ruby/struct_handler_methods.rb
240
- - lib/yard/handlers/ruby/visibility_handler.rb
241
- - lib/yard/handlers/ruby/yield_handler.rb
242
151
  - lib/yard/i18n/locale.rb
243
152
  - lib/yard/i18n/message.rb
244
153
  - lib/yard/i18n/messages.rb
245
- - lib/yard/i18n/po_parser.rb
246
154
  - lib/yard/i18n/pot_generator.rb
155
+ - lib/yard/i18n/po_parser.rb
247
156
  - lib/yard/i18n/text.rb
248
- - lib/yard/logging.rb
249
- - lib/yard/options.rb
250
157
  - lib/yard/parser/base.rb
251
- - lib/yard/parser/c/c_parser.rb
158
+ - lib/yard/parser/source_parser.rb
252
159
  - lib/yard/parser/c/comment_parser.rb
160
+ - lib/yard/parser/c/c_parser.rb
253
161
  - lib/yard/parser/c/statement.rb
254
162
  - lib/yard/parser/ruby/ast_node.rb
163
+ - lib/yard/parser/ruby/ruby_parser.rb
255
164
  - lib/yard/parser/ruby/legacy/ruby_lex.rb
256
165
  - lib/yard/parser/ruby/legacy/ruby_parser.rb
257
166
  - lib/yard/parser/ruby/legacy/statement.rb
258
167
  - lib/yard/parser/ruby/legacy/statement_list.rb
259
168
  - lib/yard/parser/ruby/legacy/token_list.rb
260
- - lib/yard/parser/ruby/ruby_parser.rb
261
- - lib/yard/parser/source_parser.rb
262
169
  - lib/yard/rake/yardoc_task.rb
263
- - lib/yard/registry.rb
264
- - lib/yard/registry_store.rb
265
170
  - lib/yard/rubygems/backports.rb
171
+ - lib/yard/rubygems/doc_manager.rb
172
+ - lib/yard/rubygems/specification.rb
173
+ - lib/yard/rubygems/backports/gem.rb
266
174
  - lib/yard/rubygems/backports/LICENSE.txt
267
175
  - lib/yard/rubygems/backports/MIT.txt
268
- - lib/yard/rubygems/backports/gem.rb
269
176
  - lib/yard/rubygems/backports/source_index.rb
270
- - lib/yard/rubygems/doc_manager.rb
271
- - lib/yard/rubygems/specification.rb
272
177
  - lib/yard/serializers/base.rb
273
178
  - lib/yard/serializers/file_system_serializer.rb
274
179
  - lib/yard/serializers/process_serializer.rb
275
180
  - lib/yard/serializers/stdout_serializer.rb
276
181
  - lib/yard/serializers/yardoc_serializer.rb
277
- - lib/yard/server.rb
278
182
  - lib/yard/server/adapter.rb
183
+ - lib/yard/server/doc_server_helper.rb
184
+ - lib/yard/server/doc_server_serializer.rb
185
+ - lib/yard/server/library_version.rb
186
+ - lib/yard/server/rack_adapter.rb
187
+ - lib/yard/server/router.rb
188
+ - lib/yard/server/static_caching.rb
189
+ - lib/yard/server/webrick_adapter.rb
279
190
  - lib/yard/server/commands/base.rb
280
191
  - lib/yard/server/commands/display_file_command.rb
281
192
  - lib/yard/server/commands/display_object_command.rb
@@ -285,12 +196,6 @@ files:
285
196
  - lib/yard/server/commands/list_command.rb
286
197
  - lib/yard/server/commands/search_command.rb
287
198
  - lib/yard/server/commands/static_file_command.rb
288
- - lib/yard/server/doc_server_helper.rb
289
- - lib/yard/server/doc_server_serializer.rb
290
- - lib/yard/server/library_version.rb
291
- - lib/yard/server/rack_adapter.rb
292
- - lib/yard/server/router.rb
293
- - lib/yard/server/static_caching.rb
294
199
  - lib/yard/server/templates/default/fulldoc/html/css/custom.css
295
200
  - lib/yard/server/templates/default/fulldoc/html/images/processing.gif
296
201
  - lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js
@@ -308,7 +213,6 @@ files:
308
213
  - lib/yard/server/templates/doc_server/processing/html/setup.rb
309
214
  - lib/yard/server/templates/doc_server/search/html/search.erb
310
215
  - lib/yard/server/templates/doc_server/search/html/setup.rb
311
- - lib/yard/server/webrick_adapter.rb
312
216
  - lib/yard/tags/default_factory.rb
313
217
  - lib/yard/tags/default_tag.rb
314
218
  - lib/yard/tags/directives.rb
@@ -321,23 +225,30 @@ files:
321
225
  - lib/yard/tags/tag_format_error.rb
322
226
  - lib/yard/templates/engine.rb
323
227
  - lib/yard/templates/erb_cache.rb
228
+ - lib/yard/templates/section.rb
229
+ - lib/yard/templates/template.rb
230
+ - lib/yard/templates/template_options.rb
324
231
  - lib/yard/templates/helpers/base_helper.rb
325
232
  - lib/yard/templates/helpers/filter_helper.rb
326
233
  - lib/yard/templates/helpers/html_helper.rb
327
234
  - lib/yard/templates/helpers/html_syntax_highlight_helper.rb
328
- - lib/yard/templates/helpers/markup/rdoc_markdown.rb
329
- - lib/yard/templates/helpers/markup/rdoc_markup.rb
330
235
  - lib/yard/templates/helpers/markup_helper.rb
331
236
  - lib/yard/templates/helpers/method_helper.rb
332
237
  - lib/yard/templates/helpers/module_helper.rb
333
238
  - lib/yard/templates/helpers/text_helper.rb
334
239
  - lib/yard/templates/helpers/uml_helper.rb
335
- - lib/yard/templates/section.rb
336
- - lib/yard/templates/template.rb
337
- - lib/yard/templates/template_options.rb
338
- - lib/yard/verifier.rb
339
- - lib/yard/version.rb
340
- - po/ja.po
240
+ - lib/yard/templates/helpers/markup/rdoc_markdown.rb
241
+ - lib/yard/templates/helpers/markup/rdoc_markup.rb
242
+ - spec/config_spec.rb
243
+ - spec/docstring_parser_spec.rb
244
+ - spec/docstring_spec.rb
245
+ - spec/logging_spec.rb
246
+ - spec/options_spec.rb
247
+ - spec/registry_spec.rb
248
+ - spec/registry_store_spec.rb
249
+ - spec/server_spec.rb
250
+ - spec/spec_helper.rb
251
+ - spec/verifier_spec.rb
341
252
  - spec/cli/command_parser_spec.rb
342
253
  - spec/cli/command_spec.rb
343
254
  - spec/cli/config_spec.rb
@@ -364,7 +275,6 @@ files:
364
275
  - spec/code_objects/namespace_object_spec.rb
365
276
  - spec/code_objects/proxy_spec.rb
366
277
  - spec/code_objects/spec_helper.rb
367
- - spec/config_spec.rb
368
278
  - spec/core_ext/array_spec.rb
369
279
  - spec/core_ext/file_spec.rb
370
280
  - spec/core_ext/hash_spec.rb
@@ -372,11 +282,27 @@ files:
372
282
  - spec/core_ext/module_spec.rb
373
283
  - spec/core_ext/string_spec.rb
374
284
  - spec/core_ext/symbol_hash_spec.rb
375
- - spec/docstring_parser_spec.rb
376
- - spec/docstring_spec.rb
377
285
  - spec/handlers/alias_handler_spec.rb
378
286
  - spec/handlers/attribute_handler_spec.rb
379
287
  - spec/handlers/base_spec.rb
288
+ - spec/handlers/class_condition_handler_spec.rb
289
+ - spec/handlers/class_handler_spec.rb
290
+ - spec/handlers/class_variable_handler_spec.rb
291
+ - spec/handlers/constant_handler_spec.rb
292
+ - spec/handlers/dsl_handler_spec.rb
293
+ - spec/handlers/exception_handler_spec.rb
294
+ - spec/handlers/extend_handler_spec.rb
295
+ - spec/handlers/legacy_base_spec.rb
296
+ - spec/handlers/method_condition_handler_spec.rb
297
+ - spec/handlers/method_handler_spec.rb
298
+ - spec/handlers/mixin_handler_spec.rb
299
+ - spec/handlers/module_function_handler_spec.rb
300
+ - spec/handlers/module_handler_spec.rb
301
+ - spec/handlers/private_constant_handler_spec.rb
302
+ - spec/handlers/processor_spec.rb
303
+ - spec/handlers/spec_helper.rb
304
+ - spec/handlers/visibility_handler_spec.rb
305
+ - spec/handlers/yield_handler_spec.rb
380
306
  - spec/handlers/c/alias_handler_spec.rb
381
307
  - spec/handlers/c/attribute_handler_spec.rb
382
308
  - spec/handlers/c/class_handler_spec.rb
@@ -389,11 +315,6 @@ files:
389
315
  - spec/handlers/c/path_handler_spec.rb
390
316
  - spec/handlers/c/spec_helper.rb
391
317
  - spec/handlers/c/struct_handler_spec.rb
392
- - spec/handlers/class_condition_handler_spec.rb
393
- - spec/handlers/class_handler_spec.rb
394
- - spec/handlers/class_variable_handler_spec.rb
395
- - spec/handlers/constant_handler_spec.rb
396
- - spec/handlers/dsl_handler_spec.rb
397
318
  - spec/handlers/examples/alias_handler_001.rb.txt
398
319
  - spec/handlers/examples/attribute_handler_001.rb.txt
399
320
  - spec/handlers/examples/class_condition_handler_001.rb.txt
@@ -411,30 +332,17 @@ files:
411
332
  - spec/handlers/examples/process_handler_001.rb.txt
412
333
  - spec/handlers/examples/visibility_handler_001.rb.txt
413
334
  - spec/handlers/examples/yield_handler_001.rb.txt
414
- - spec/handlers/exception_handler_spec.rb
415
- - spec/handlers/extend_handler_spec.rb
416
- - spec/handlers/legacy_base_spec.rb
417
- - spec/handlers/method_condition_handler_spec.rb
418
- - spec/handlers/method_handler_spec.rb
419
- - spec/handlers/mixin_handler_spec.rb
420
- - spec/handlers/module_function_handler_spec.rb
421
- - spec/handlers/module_handler_spec.rb
422
- - spec/handlers/private_constant_handler_spec.rb
423
- - spec/handlers/processor_spec.rb
424
335
  - spec/handlers/ruby/base_spec.rb
425
336
  - spec/handlers/ruby/legacy/base_spec.rb
426
- - spec/handlers/spec_helper.rb
427
- - spec/handlers/visibility_handler_spec.rb
428
- - spec/handlers/yield_handler_spec.rb
429
337
  - spec/i18n/locale_spec.rb
430
- - spec/i18n/message_spec.rb
431
338
  - spec/i18n/messages_spec.rb
339
+ - spec/i18n/message_spec.rb
432
340
  - spec/i18n/pot_generator_spec.rb
433
341
  - spec/i18n/text_spec.rb
434
- - spec/logging_spec.rb
435
- - spec/options_spec.rb
436
342
  - spec/parser/base_spec.rb
437
343
  - spec/parser/c_parser_spec.rb
344
+ - spec/parser/source_parser_spec.rb
345
+ - spec/parser/tag_parsing_spec.rb
438
346
  - spec/parser/examples/array.c.txt
439
347
  - spec/parser/examples/example1.rb.txt
440
348
  - spec/parser/examples/extrafile.c.txt
@@ -444,28 +352,21 @@ files:
444
352
  - spec/parser/examples/parse_in_order_002.rb.txt
445
353
  - spec/parser/examples/tag_handler_001.rb.txt
446
354
  - spec/parser/ruby/ast_node_spec.rb
355
+ - spec/parser/ruby/ruby_parser_spec.rb
447
356
  - spec/parser/ruby/legacy/statement_list_spec.rb
448
357
  - spec/parser/ruby/legacy/token_list_spec.rb
449
- - spec/parser/ruby/ruby_parser_spec.rb
450
- - spec/parser/source_parser_spec.rb
451
- - spec/parser/tag_parsing_spec.rb
452
358
  - spec/rake/yardoc_task_spec.rb
453
- - spec/registry_spec.rb
454
- - spec/registry_store_spec.rb
455
359
  - spec/rubygems/doc_manager_spec.rb
360
+ - spec/serializers/file_system_serializer_spec.rb
361
+ - spec/serializers/spec_helper.rb
362
+ - spec/serializers/yardoc_serializer_spec.rb
456
363
  - spec/serializers/data/serialized_yardoc/checksums
364
+ - spec/serializers/data/serialized_yardoc/proxy_types
457
365
  - spec/serializers/data/serialized_yardoc/objects/Foo.dat
366
+ - spec/serializers/data/serialized_yardoc/objects/root.dat
458
367
  - spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat
459
368
  - spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat
460
- - spec/serializers/data/serialized_yardoc/objects/root.dat
461
- - spec/serializers/data/serialized_yardoc/proxy_types
462
- - spec/serializers/file_system_serializer_spec.rb
463
- - spec/serializers/spec_helper.rb
464
- - spec/serializers/yardoc_serializer_spec.rb
465
369
  - spec/server/adapter_spec.rb
466
- - spec/server/commands/base_spec.rb
467
- - spec/server/commands/library_command_spec.rb
468
- - spec/server/commands/static_file_command_spec.rb
469
370
  - spec/server/doc_server_helper_spec.rb
470
371
  - spec/server/doc_server_serializer_spec.rb
471
372
  - spec/server/rack_adapter_spec.rb
@@ -473,8 +374,9 @@ files:
473
374
  - spec/server/spec_helper.rb
474
375
  - spec/server/static_caching_spec.rb
475
376
  - spec/server/webrick_servlet_spec.rb
476
- - spec/server_spec.rb
477
- - spec/spec_helper.rb
377
+ - spec/server/commands/base_spec.rb
378
+ - spec/server/commands/library_command_spec.rb
379
+ - spec/server/commands/static_file_command_spec.rb
478
380
  - spec/tags/default_factory_spec.rb
479
381
  - spec/tags/default_tag_spec.rb
480
382
  - spec/tags/directives_spec.rb
@@ -484,6 +386,13 @@ files:
484
386
  - spec/templates/class_spec.rb
485
387
  - spec/templates/constant_spec.rb
486
388
  - spec/templates/engine_spec.rb
389
+ - spec/templates/method_spec.rb
390
+ - spec/templates/module_spec.rb
391
+ - spec/templates/onefile_spec.rb
392
+ - spec/templates/section_spec.rb
393
+ - spec/templates/spec_helper.rb
394
+ - spec/templates/tag_spec.rb
395
+ - spec/templates/template_spec.rb
487
396
  - spec/templates/examples/class001.html
488
397
  - spec/templates/examples/class001.txt
489
398
  - spec/templates/examples/class002.html
@@ -510,29 +419,22 @@ files:
510
419
  - spec/templates/helpers/base_helper_spec.rb
511
420
  - spec/templates/helpers/html_helper_spec.rb
512
421
  - spec/templates/helpers/html_syntax_highlight_helper_spec.rb
513
- - spec/templates/helpers/markup/rdoc_markup_spec.rb
514
422
  - spec/templates/helpers/markup_helper_spec.rb
515
423
  - spec/templates/helpers/method_helper_spec.rb
516
424
  - spec/templates/helpers/shared_signature_examples.rb
517
425
  - spec/templates/helpers/text_helper_spec.rb
518
- - spec/templates/method_spec.rb
519
- - spec/templates/module_spec.rb
520
- - spec/templates/onefile_spec.rb
521
- - spec/templates/section_spec.rb
522
- - spec/templates/spec_helper.rb
523
- - spec/templates/tag_spec.rb
524
- - spec/templates/template_spec.rb
525
- - spec/verifier_spec.rb
426
+ - spec/templates/helpers/markup/rdoc_markup_spec.rb
427
+ - templates/default/class/setup.rb
526
428
  - templates/default/class/dot/setup.rb
527
429
  - templates/default/class/dot/superklass.erb
528
430
  - templates/default/class/html/constructor_details.erb
529
431
  - templates/default/class/html/setup.rb
530
432
  - templates/default/class/html/subclasses.erb
531
- - templates/default/class/setup.rb
532
433
  - templates/default/class/text/setup.rb
533
434
  - templates/default/class/text/subclasses.erb
534
435
  - templates/default/constant/text/header.erb
535
436
  - templates/default/constant/text/setup.rb
437
+ - templates/default/docstring/setup.rb
536
438
  - templates/default/docstring/html/abstract.erb
537
439
  - templates/default/docstring/html/deprecated.erb
538
440
  - templates/default/docstring/html/index.erb
@@ -541,7 +443,6 @@ files:
541
443
  - templates/default/docstring/html/returns_void.erb
542
444
  - templates/default/docstring/html/text.erb
543
445
  - templates/default/docstring/html/todo.erb
544
- - templates/default/docstring/setup.rb
545
446
  - templates/default/docstring/text/abstract.erb
546
447
  - templates/default/docstring/text/deprecated.erb
547
448
  - templates/default/docstring/text/index.erb
@@ -550,18 +451,18 @@ files:
550
451
  - templates/default/docstring/text/returns_void.erb
551
452
  - templates/default/docstring/text/text.erb
552
453
  - templates/default/docstring/text/todo.erb
553
- - templates/default/fulldoc/html/css/common.css
554
- - templates/default/fulldoc/html/css/full_list.css
555
- - templates/default/fulldoc/html/css/style.css
556
454
  - templates/default/fulldoc/html/frames.erb
557
455
  - templates/default/fulldoc/html/full_list.erb
558
456
  - templates/default/fulldoc/html/full_list_class.erb
559
457
  - templates/default/fulldoc/html/full_list_file.erb
560
458
  - templates/default/fulldoc/html/full_list_method.erb
459
+ - templates/default/fulldoc/html/setup.rb
460
+ - templates/default/fulldoc/html/css/common.css
461
+ - templates/default/fulldoc/html/css/full_list.css
462
+ - templates/default/fulldoc/html/css/style.css
561
463
  - templates/default/fulldoc/html/js/app.js
562
464
  - templates/default/fulldoc/html/js/full_list.js
563
465
  - templates/default/fulldoc/html/js/jquery.js
564
- - templates/default/fulldoc/html/setup.rb
565
466
  - templates/default/layout/dot/header.erb
566
467
  - templates/default/layout/dot/setup.rb
567
468
  - templates/default/layout/html/breadcrumb.erb
@@ -575,16 +476,17 @@ files:
575
476
  - templates/default/layout/html/script_setup.erb
576
477
  - templates/default/layout/html/search.erb
577
478
  - templates/default/layout/html/setup.rb
578
- - templates/default/method/html/header.erb
579
479
  - templates/default/method/setup.rb
480
+ - templates/default/method/html/header.erb
580
481
  - templates/default/method/text/header.erb
482
+ - templates/default/method_details/setup.rb
581
483
  - templates/default/method_details/html/header.erb
582
484
  - templates/default/method_details/html/method_signature.erb
583
485
  - templates/default/method_details/html/source.erb
584
- - templates/default/method_details/setup.rb
585
486
  - templates/default/method_details/text/header.erb
586
487
  - templates/default/method_details/text/method_signature.erb
587
488
  - templates/default/method_details/text/setup.rb
489
+ - templates/default/module/setup.rb
588
490
  - templates/default/module/dot/child.erb
589
491
  - templates/default/module/dot/dependencies.erb
590
492
  - templates/default/module/dot/header.erb
@@ -601,11 +503,10 @@ files:
601
503
  - templates/default/module/html/inherited_constants.erb
602
504
  - templates/default/module/html/inherited_methods.erb
603
505
  - templates/default/module/html/item_summary.erb
506
+ - templates/default/module/html/methodmissing.erb
604
507
  - templates/default/module/html/method_details_list.erb
605
508
  - templates/default/module/html/method_summary.erb
606
- - templates/default/module/html/methodmissing.erb
607
509
  - templates/default/module/html/pre_docstring.erb
608
- - templates/default/module/setup.rb
609
510
  - templates/default/module/text/children.erb
610
511
  - templates/default/module/text/class_meths_list.erb
611
512
  - templates/default/module/text/extends.erb
@@ -621,13 +522,13 @@ files:
621
522
  - templates/default/root/dot/child.erb
622
523
  - templates/default/root/dot/setup.rb
623
524
  - templates/default/root/html/setup.rb
525
+ - templates/default/tags/setup.rb
624
526
  - templates/default/tags/html/example.erb
625
527
  - templates/default/tags/html/index.erb
626
528
  - templates/default/tags/html/option.erb
627
529
  - templates/default/tags/html/overload.erb
628
530
  - templates/default/tags/html/see.erb
629
531
  - templates/default/tags/html/tag.erb
630
- - templates/default/tags/setup.rb
631
532
  - templates/default/tags/text/example.erb
632
533
  - templates/default/tags/text/index.erb
633
534
  - templates/default/tags/text/option.erb
@@ -636,9 +537,9 @@ files:
636
537
  - templates/default/tags/text/tag.erb
637
538
  - templates/guide/class/html/setup.rb
638
539
  - templates/guide/docstring/html/setup.rb
540
+ - templates/guide/fulldoc/html/setup.rb
639
541
  - templates/guide/fulldoc/html/css/style.css
640
542
  - templates/guide/fulldoc/html/js/app.js
641
- - templates/guide/fulldoc/html/setup.rb
642
543
  - templates/guide/layout/html/layout.erb
643
544
  - templates/guide/layout/html/setup.rb
644
545
  - templates/guide/method/html/header.erb
@@ -650,6 +551,29 @@ files:
650
551
  - templates/guide/onefile/html/setup.rb
651
552
  - templates/guide/onefile/html/toc.erb
652
553
  - templates/guide/tags/html/setup.rb
554
+ - benchmarks/builtins_vs_eval.rb
555
+ - benchmarks/concat_vs_join.rb
556
+ - benchmarks/erb_vs_erubis.rb
557
+ - benchmarks/format_args.rb
558
+ - benchmarks/generation.rb
559
+ - benchmarks/marshal_vs_dbm.rb
560
+ - benchmarks/parsing.rb
561
+ - benchmarks/pathname_vs_string.rb
562
+ - benchmarks/rdoc_vs_yardoc.rb
563
+ - benchmarks/registry_store_types.rb
564
+ - benchmarks/ripper_parser.rb
565
+ - benchmarks/ri_vs_yri.rb
566
+ - benchmarks/splat_vs_flatten.rb
567
+ - benchmarks/template_erb.rb
568
+ - benchmarks/template_format.rb
569
+ - benchmarks/template_profile.rb
570
+ - benchmarks/yri_cache.rb
571
+ - LICENSE
572
+ - LEGAL
573
+ - README.md
574
+ - Rakefile
575
+ - .yardopts
576
+ - deg-yard.gemspec
653
577
  homepage: http://github.com/DavidEGrayson/yard
654
578
  licenses:
655
579
  - MIT
@@ -669,10 +593,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
669
593
  - !ruby/object:Gem::Version
670
594
  version: '0'
671
595
  requirements: []
672
- rubyforge_project:
596
+ rubyforge_project: yard
673
597
  rubygems_version: 2.1.9
674
598
  signing_key:
675
599
  specification_version: 4
676
- summary: DavidEGrayson's fork of the YARD gem with unicode support.
600
+ summary: DavidEGrayson's fork of the YARD gem which has some extra bug fixes.
677
601
  test_files: []
678
- has_rdoc:
602
+ has_rdoc: yard