olddoc 1.0.0 → 1.0.1

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: d56e8b50a67cd850eaf2f817c24b198dd458134f
4
- data.tar.gz: dcc505b94226c76fd2b0cb47705fc4a858072e26
3
+ metadata.gz: 05d12d395ddfff41f8fa7892824d923c2cc94b62
4
+ data.tar.gz: 58af3b13615008b4132cf97116183a1086e1124e
5
5
  SHA512:
6
- metadata.gz: 90adc20eba1d96f06a8af3bc7e2e990ba4513148d3ccb5821709fa8ea97d8584c977cd180403cf66b451dd5b56aee59bdd31db52f79993cbdd918cec30eeedd3
7
- data.tar.gz: 9f9e586e92606a07db4339f1bfa88e85a1de0e0370ca2e4b6325737239d6a1b6acec2967a484182abb051ac1331ff4e08a1fcea022ec5fd6af796f5f17fe04dd
6
+ metadata.gz: 3bdc95cf06d8844b77bb52eca99daf09822a85f8df8685becbe0e6b2b385bd44e2e7a15e227580367e5ed9af4ceffe5651d47f52d2a98c750ea25d41fe306aea
7
+ data.tar.gz: 0a69292a08b212a2814903091007f8d6968a457f248db9b196ed1f987a658564f083f6e99cc198b7712ae36f5673b1d7c7d95f62afdccf9502d3266a7f5c9132
data/Rakefile CHANGED
@@ -23,7 +23,7 @@ task :rsync_docs do
23
23
 
24
24
  files = `git ls-files Documentation/*.txt`.split(/\n/)
25
25
  files.concat(top)
26
- files.concat(%w(NEWS))
26
+ files.concat(%w(NEWS NEWS.atom.xml))
27
27
  files.concat(Dir["doc/*.html"].to_a)
28
28
  gzfiles = files.map { |txt| do_gzip.call(txt) }
29
29
  files.concat(gzfiles)
@@ -1,7 +1,7 @@
1
1
  # Copyright (C) 2015, all contributors <olddoc-public@80x24.org>
2
2
  # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
3
3
  module Olddoc
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
 
6
6
  autoload :Gemspec, 'olddoc/gemspec'
7
7
  autoload :History, 'olddoc/history'
@@ -39,10 +39,12 @@ id="<%= visibility %>-<%= type %>-<%= section.aref %>-method-details">
39
39
  <%= visibility.to_s.capitalize %> <%= type.capitalize %> Methods</h3><%
40
40
  methods.each do |method|
41
41
  %><pre id="<%= method.aref %>"><b><%
42
- if method.call_seq %><%= h method.call_seq %><%
42
+ if method.call_seq %><%= h method.call_seq.strip %><%
43
43
  else
44
- %><%= h method.name %> <%= h method.param_seq %><%
45
- end %></b><%= method_srclink(method) %></pre><%=
44
+ %><%= h method.name %><%=
45
+ seq = method.param_seq
46
+ seq ? " #{h(seq.strip)}" : "" %><%
47
+ end %></b> <%= method_srclink(method) %></pre><%=
46
48
  method.comment ? method.description.strip : nd %><%
47
49
  if method.calls_super %>Calls superclass method<%=
48
50
  method.superclass_method ?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: olddoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - olddoc hackers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-09 00:00:00.000000000 Z
11
+ date: 2015-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc