├── .document ├── .github ├── dependabot.yml └── workflows │ ├── push_gem.yml │ ├── sync-ruby.yml │ └── test.yml ├── .gitignore ├── BSDL ├── COPYING ├── Gemfile ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib └── weakref.rb ├── test ├── lib │ └── helper.rb └── test_weakref.rb └── weakref.gemspec /.document: -------------------------------------------------------------------------------- 1 | BSDL 2 | COPYING 3 | README.md 4 | lib/ 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/.github/workflows/push_gem.yml -------------------------------------------------------------------------------- /.github/workflows/sync-ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/.github/workflows/sync-ruby.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/BSDL -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/weakref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/lib/weakref.rb -------------------------------------------------------------------------------- /test/lib/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/test/lib/helper.rb -------------------------------------------------------------------------------- /test/test_weakref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/test/test_weakref.rb -------------------------------------------------------------------------------- /weakref.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/weakref/HEAD/weakref.gemspec --------------------------------------------------------------------------------