summaryrefslogtreecommitdiff
path: root/lib/racc
AgeCommit message (Collapse)Author
2021-09-15[ruby/racc] gemspec: Link to https in homepage [ci skip]Olle Jonsson
https://github.com/ruby/racc/commit/96075f7720
2021-07-19[ruby/racc] Removed pre-setup from gemspecHiroshi SHIBATA
https://github.com/ruby/racc/commit/2f6f02e5c1
2021-07-19[ruby/racc] Removed needless files from gemspecHiroshi SHIBATA
https://github.com/ruby/racc/commit/d044ae883f
2021-07-19[ruby/racc] Move document from library directoryHiroshi SHIBATA
https://github.com/ruby/racc/commit/2e8d7d286d
2021-07-19[ruby/racc] Removed generate code from parser.rb. It's already migrated by ↵Hiroshi SHIBATA
rake task https://github.com/ruby/racc/commit/ec7d01980a
2021-07-18[ruby/racc] Shrink gem sizeBruno Arueira
https://github.com/ruby/racc/commit/27e2a64e13
2021-06-25Followed up 66d2fc7989d741bf5a73286233139901cecb4fc2Hiroshi SHIBATA
2021-06-25[ruby/racc] Remove Object monkey patchAaron Patterson
I don't think we need this monkey patch anymore, so lets remove it! https://github.com/ruby/racc/commit/464485e912
2021-06-25[ruby/racc] Removed needless condition for old versions of RubyGems.Hiroshi SHIBATA
https://github.com/ruby/racc/commit/fe3183b1ff
2021-06-25[ruby/racc] Drop to support Ruby 2.4Hiroshi SHIBATA
https://github.com/ruby/racc/commit/5af1a42a3b
2021-06-25[ruby/racc] Followed up #162Hiroshi SHIBATA
https://github.com/ruby/racc/commit/d66cd12166
2021-06-25[ruby/racc] Stop compressing integer listsJean Boussier
It is unclear why this was implemented, I assume it was for performance back in 2006. However today, this compression defeats bytecode caching entirely and end up being counter productive. https://github.com/ruby/racc/commit/ae3703c1d0
2021-03-31Enclose the code that was accidentally a link in "tt"aycabta
2020-12-26[ruby/racc] Bump version to 1.5.2Hiroshi SHIBATA
https://github.com/ruby/racc/commit/ce0d7b9cde
2020-12-26[ruby/racc] Use Racc::VERSION for gemspecHiroshi SHIBATA
https://github.com/ruby/racc/commit/30f5760d85
2020-11-10[ruby/racc] Bump version to 1.5.1Hiroshi SHIBATA
https://github.com/ruby/racc/commit/2cb3055a73
2020-11-10[ruby/racc] Use the Ruby license. Fix #134Hiroshi SHIBATA
https://github.com/ruby/racc/commit/7c881cd548
2020-11-10lib/racc/statetransitiontable.rb: Make the racc output stableYusuke Endoh
Racc calls `Array#sort!` to build a state transition table. As `Array#sort!` is not a stable sort, the output may differ depending upon the environment. This changeset makes the sort stable manually, and updates all expectation files. Notes: Merged: https://github.com/ruby/ruby/pull/3749
2020-11-09Removed needless require for 'enumerator'Hiroshi SHIBATA
2020-10-27Separate `send` into `public_send` and `__send__`Nobuyoshi Nakada
2020-09-28[ruby/racc] Turn debugging offMarc-Andre Lafortune
https://github.com/ruby/racc/commit/872f75cfa7
2020-09-28[Fixes #137] Improve reportingMarc-Andre Lafortune
2020-08-19[ruby/racc] Fixed the licenses field of gemspecHiroshi SHIBATA
https://github.com/ruby/racc/commit/a1aeecff03
2020-06-25Removed nonsense `rubygems_version` in input gemspec filesNobuyoshi Nakada
As it is ignored and set at building packages automatically, it is just nonsense to set in gemspec file for input.
2020-04-27Fixed typos in raccNobuyoshi Nakada
2020-03-25Import racc-1.5.0 from upstream repository.Hiroshi SHIBATA
2020-02-27Merge racc from upstream repository.Hiroshi SHIBATA
* Support Ruby 2.4's frozen string literals. * Remove VCS revisions headers.
2020-01-28Stop parsing copyright notices as document [ci skip]Nobuyoshi Nakada
2020-01-28Revert "Added RDoc files to parse [Bug #16596]"Nobuyoshi Nakada
This reverts commit 10842daeb571126a090cb10dedf0cda8c2b7f9a8, because it has no effect and the rdoc file has been installed to lib/racc/rdoc directory.
2020-01-28Added RDoc files to parse [Bug #16596]Nobuyoshi Nakada
2020-01-01Fixup a6864f6d2f39bcd1ff04516591cc18d4027ab186Hiroshi SHIBATA
2019-12-20Fixed misspellingsNobuyoshi Nakada
Fixed misspellings reported at [Bug #16437], for default gems.
2019-12-10Import racc-1.4.1 from ruby/racc.Hiroshi SHIBATA
2019-11-17Fix typosKazuhiro NISHIYAMA
2019-11-04[ruby/racc] Strip trailing whitespaces at the last line of actionsNobuyoshi Nakada
https://github.com/ruby/racc/commit/a887ebe529
2019-10-30Update the latest versions from upstream repository of raccHiroshi SHIBATA
2019-10-17Fix warning of generated parser for nested moduleSeiei Miyagi
Notes: Merged: https://github.com/ruby/ruby/pull/2571
2019-09-16Folded files in gemspecNobuyoshi Nakada
2019-07-13Removed useless `freeze`s from gemspec filesNobuyoshi Nakada
2019-07-13Drop fossil rubygems supportNobuyoshi Nakada
2019-07-13Removed stub lines from gemspec filesNobuyoshi Nakada
2019-06-20Revert "Removed needless file with the upstream repository."Hiroshi SHIBATA
This reverts commit 5bbfca7b1d4be89d4728203b4610de17bccbefd7.
2019-06-20Removed needless file with the upstream repository.Hiroshi SHIBATA
2019-06-20Added gemspec of racc generated from upstream for the default gems.Hiroshi SHIBATA
1.4.16.pre.1 is the teemporary version. It may be changed 1.5.0 or others.
2019-06-19* remove trailing spaces, append newline at EOF.git
2019-06-19Use Test::Unit instead of Minitest and fixed test error with ruby repo.Hiroshi SHIBATA
Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
2019-06-19Backport racc-1.4.15 from upstream.Hiroshi SHIBATA
2018-11-03lib/racc/parser.rb: use require for racc/cparsestomar
* lib/racc/parser.rb: reverted r65505. require_relative does not work for racc/cparse.so, as extension libraries are placed in other directories than Ruby libraries. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-11-02lib/*: Prefer require_relative over require.marcandre
[#15206] [Fix GH-1976] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-10-22Fixed misspelling words.hsbt
These are detected by https://github.com/client9/misspell git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e