Skip to content

Commit ba95a59

Browse files
author
Zachary Scott
committed
Merge branch 'master' of github.com:rdoc/rdoc into no-hoe
2 parents 4512e06 + 1d29d00 commit ba95a59

File tree

203 files changed

+354
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+354
-59
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@ rvm:
99
- 1.8.7
1010
- 1.9.3
1111
- 2.0.0
12-
- 2.1.0
13-
- 2.2.0
12+
- 2.1.10
13+
- 2.2.5
14+
- 2.3.1
1415
- ruby-head
1516
- rbx-2
17+
- jruby-1.7.25
18+
- jruby-9.1.0.0
1619
script: rake
1720
matrix:
1821
allow_failures:
19-
- rvm: 1.8.7
22+
- rvm: jruby-1.7.25
23+
- rvm: jruby-9.1.0.0
2024
- rvm: rbx-2
21-
- rvm: ruby-head

History.rdoc

Lines changed: 9 additions & 1 deletion

LEGAL.rdoc

Lines changed: 2 additions & 2 deletions

Rakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,3 @@ task :diff_rubinius do
133133
sh "diff #{diff_options} lib/rdoc #{rubinius_dir}/lib/rdoc; true"
134134
sh "diff #{diff_options} test #{rubinius_dir}/test/rdoc; true"
135135
end
136-

lib/rdoc.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: false
12
$DEBUG_RDOC = nil
23

34
# :main: README.rdoc
@@ -64,7 +65,7 @@ class Error < RuntimeError; end
6465
##
6566
# RDoc version you are using
6667

67-
VERSION = '4.3.0-alpha'
68+
VERSION = '4.2.3'
6869

6970
##
7071
# Method visibilities

lib/rdoc/alias.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: false
12
##
23
# Represent an alias, which is an old_name/new_name pair associated with a
34
# particular context

lib/rdoc/anon_class.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: false
12
##
23
# An anonymous class like:
34
#

lib/rdoc/any_method.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: false
12
##
23
# AnyMethod is the base class for objects representing methods
34

lib/rdoc/attr.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: false
12
##
23
# An attribute created by \#attr, \#attr_reader, \#attr_writer or
34
# \#attr_accessor

lib/rdoc/class_module.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# frozen_string_literal: false
12
##
23
# ClassModule is the base class for objects representing either a class or a
34
# module.

0 commit comments

Comments
 (0)