ChangeLog-0.0.3

2021-01-19

2021-01-19 20:57:52 +0900 Nobuyoshi Nakada

Added tests

2021-01-19 20:20:31 +0900 Nobuyoshi Nakada

Fixed RDoc location

2021-01-19 20:19:09 +0900 Nobuyoshi Nakada

Make README.md the main page

2021-01-19 19:21:06 +0900 Nobuyoshi Nakada

Added least documents

2021-01-19 19:19:59 +0900 Nobuyoshi Nakada

Define Hash.ruby2_keywords_hash singleton method

2021-01-19 19:19:09 +0900 Nobuyoshi Nakada

Define Hash.ruby2_keywords_hash? singleton method

2021-01-19 18:53:19 +0900 Nobuyoshi Nakada

Package LICENSE file

The source gemspec file is useless after building the gem file.

2021-01-19 14:41:53 +0900 Nobuyoshi Nakada

README: fix Contributing and License

2021-01-19 12:13:21 +0900 Nobuyoshi Nakada

Added version guard against the default gem

2021-01-07

2021-01-07 17:39:52 +0900 Yusuke Endoh

Use private_method_defined? instead of respond_to?

Module.respond_to?(:ruby2_keywords, true) does NOT check if Module#ruby2_keywords is available. It worked well because there is toplevel ruby2_keywords method, but using private_method_defined? is better, I think.

Also, this fixes a syntactic error.

2020-12-28

2020-12-28 14:07:40 +0900 Yusuke Endoh

Add an example for Module#define_method (#7)

2020-12-27

2020-12-27 17:43:35 +0900 Nobuyoshi Nakada

Added BSD-2-Clause to the licenses of the gemspec

2020-04-03 14:50:29 -0300 Antonio Terceiro

Add explicit license file

Fixes #4

2020-12-27 17:05:37 +0900 Nobuyoshi Nakada

Support Hash.ruby2_keywords_hash?