1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Stop parsing copyright notices as document [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-01-28 23:00:13 +09:00
parent 17715153e5
commit fb41246ddb
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
12 changed files with 29 additions and 0 deletions

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 14fa1118eb3a23e85265e4f7afe2d5a297d69f9c $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
#++
unless Object.method_defined?(:__send)
class Object

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 74ff4369ce53c7f45cfc2644ce907785104ebf6e $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#
#++
module Racc

View file

@ -1,3 +1,4 @@
#--
#
# $Id: ebb9798ad0b211e031670a12a1ab154678c1c8f3 $
#
@ -6,6 +7,8 @@
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".
#
#++
module Racc
class Error < StandardError; end

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 3fcabd58bef02540bf78e8142469681cb9f975c2 $
#
@ -6,6 +7,8 @@
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".
#
#++
require 'racc/compat'
require 'racc/iset'

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 63bd084db2dce8a2c9760318faae6104717cead7 $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
#++
require 'racc'
require 'racc/compat'

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 8ab2cb5341529fe5e35956bb1a1f42ec9b9c6f5a $
#
@ -6,6 +7,8 @@
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".
#
#++
module Racc
VERSION = '1.4.16'

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 31aa4331c08dfd4609c06eb5f94b7ef38dc708e1 $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
#++
module Racc

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 5e9d0a01b5d56fd9cdc3d5cb078b1a3e1bbaf779 $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of the GNU LGPL, see the file "COPYING".
#
#++
module Racc

View file

@ -1,3 +1,4 @@
#--
#
# $Id: fff07ebfd582f8dbc845e424908cb9f41f8bf42f $
#
@ -6,6 +7,8 @@
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".
#
#++
require 'enumerator'
require 'racc/compat'

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 3b2d89d9ada2f5fcb043837dcc5c9631856d5b70 $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#
#++
module Racc

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 6bd3136439c94cb8d928917f5e0de9c593181527 $
#
@ -6,6 +7,8 @@
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".
#
#++
require 'racc/iset'
require 'racc/statetransitiontable'

View file

@ -1,3 +1,4 @@
#--
#
# $Id: 4c5f4311663b6d03050953d64d6a0e7905ff2216 $
#
@ -8,6 +9,7 @@
# the GNU LGPL, Lesser General Public License version 2.1.
# For details of LGPL, see the file "COPYING".
#
#++
require 'racc/parser'