rdoc-babel 1.0.1 → 1.0.2

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: 6641e5c9491f187006c6956d856edbc3bd2ac13c
4
- data.tar.gz: c8f632445a2056539440db71ddd63f6f99b7e8ae
3
+ metadata.gz: b066ab831cdbfc2e17524709ed2dfe0a831460c2
4
+ data.tar.gz: 48e8c5399881d2dfc37469cee610238a8c51596e
5
5
  SHA512:
6
- metadata.gz: 5a45f9be5d329e2e28dbb8596c6a424bfe30ac9dd73fc4609b32e2be938601ffa666c51e76230b972dbf7349fe4c1cf5e304e26bfed53ab842b5a05548c0c24e
7
- data.tar.gz: 4f54072b118940eb5cfa74aae0224fe979a048dce26aa425aed7e66b21402eec03785f3e4ccc10a94c8c398a0d2ea0ae7bb6079973ff3444f0c7510771286978
6
+ metadata.gz: aff4054b5f69b4a6d992b025d64bf4d03d1fc28d0ae421c2d20b5312253d91cce5e558b10ad4ac3589e3b4ec7ca4565f375a1246cd5b04ae9e4ed46e86da21db
7
+ data.tar.gz: ebb5d9923d4585a9816dafb4df06a668dec00c3583a73e44a8f2e3ff8c24b629388bb3004bb2905bd1738a02bcff8214cd0d321a738a5d37d1568102e92ad0b1
data/HISTORY.rdoc CHANGED
@@ -15,3 +15,7 @@ Make it compatible with RDoc 4.1 and its bugs.
15
15
 
16
16
  * Fix rendering of Markdown files
17
17
  * Fix CSS file (code instead of tt)
18
+
19
+ === 1.0.2 / 2017-02-25
20
+
21
+ * Fix for compatibility with RDoc 5 dupping the options.
data/README.rdoc CHANGED
@@ -70,8 +70,8 @@ Babel supports specific options in addition to the standard RDoc options:
70
70
 
71
71
  == Requirements
72
72
 
73
- - Ruby >= 1.8.7
74
- - RDoc >= 3.0
73
+ - Ruby >= 2.3.0 (may work with >= 1.9.3, but untested)
74
+ - RDoc >= 5.0 (may work with >= 4.0, but untested)
75
75
 
76
76
  == Installation
77
77
 
@@ -81,7 +81,7 @@ Babel supports specific options in addition to the standard RDoc options:
81
81
 
82
82
  (The MIT License)
83
83
 
84
- Copyright (c) 2010-2015 Thierry Lambert
84
+ Copyright (c) 2010-2017 Thierry Lambert
85
85
 
86
86
  Permission is hereby granted, free of charge, to any person obtaining
87
87
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -16,10 +16,10 @@ Hoe.spec 'rdoc-babel' do
16
16
  self.testlib = :minitest
17
17
  # self.test_prelude = %(gem "minitest")
18
18
 
19
- self.extra_deps << ['rdoc', '~> 4.2']
19
+ self.extra_deps << ['rdoc', '~> 5.1']
20
20
 
21
- self.extra_dev_deps << ['minitest', '~> 5.6']
22
- self.extra_dev_deps << ['nokogiri', '~> 1.6']
21
+ self.extra_dev_deps << ['minitest', '~> 5.10']
22
+ self.extra_dev_deps << ['nokogiri', '~> 1.7']
23
23
 
24
24
  spec_extras[:homepage] = 'http://github.com/thyresias/rdoc-babel'
25
25
  spec_extras[:rdoc_options] = %w(--main README.rdoc)
@@ -73,7 +73,8 @@ class RDoc::Generator::Babel
73
73
  :see_standard_ancestors => false,
74
74
  }
75
75
 
76
- rdoc_options.extend Options
76
+ rdoc_options.extend Options # extend the existing object
77
+ rdoc_options.class.include Options # make sure #babel_options will be there on #dup'ed objects
77
78
  rdoc_options.babel_options = options
78
79
 
79
80
  opt = rdoc_options.option_parser
data/lib/rdoc_babel.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RDocBabel
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdoc-babel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thierry Lambert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-29 00:00:00.000000000 Z
11
+ date: 2017-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
19
+ version: '5.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '4.2'
26
+ version: '5.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '5.6'
33
+ version: '5.10'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '5.6'
40
+ version: '5.10'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: nokogiri
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.6'
47
+ version: '1.7'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.6'
54
+ version: '1.7'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: hoe
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '3.13'
61
+ version: '3.16'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '3.13'
68
+ version: '3.16'
69
69
  description: |-
70
70
  Babel is an RDoc formatter producing HTML documentation.
71
71
  The default template is +ruby-lang+.
@@ -88,7 +88,6 @@ extra_rdoc_files:
88
88
  - README.rdoc
89
89
  files:
90
90
  - ".autotest"
91
- - ".gemtest"
92
91
  - HISTORY.rdoc
93
92
  - Manifest.txt
94
93
  - README.rdoc
@@ -138,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
137
  version: '0'
139
138
  requirements: []
140
139
  rubyforge_project:
141
- rubygems_version: 2.4.6
140
+ rubygems_version: 2.6.10
142
141
  signing_key:
143
142
  specification_version: 4
144
143
  summary: An RDoc formatter producing HTML documentation.
data/.gemtest DELETED
File without changes