├── .github └── workflows │ └── ci.yml ├── .gitignore ├── BSDL ├── COPYING ├── Gemfile ├── LEGAL ├── README.rdoc ├── Rakefile ├── lib ├── pattern-match.rb └── pattern-match │ ├── core.rb │ ├── deconstructor.rb │ ├── disable_refinements.rb │ ├── experimental.rb │ └── version.rb ├── pattern-match.gemspec └── test ├── helper.rb ├── test_experimental.rb └── test_standard.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/BSDL -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/Gemfile -------------------------------------------------------------------------------- /LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/LEGAL -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/pattern-match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/lib/pattern-match.rb -------------------------------------------------------------------------------- /lib/pattern-match/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/lib/pattern-match/core.rb -------------------------------------------------------------------------------- /lib/pattern-match/deconstructor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/lib/pattern-match/deconstructor.rb -------------------------------------------------------------------------------- /lib/pattern-match/disable_refinements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/lib/pattern-match/disable_refinements.rb -------------------------------------------------------------------------------- /lib/pattern-match/experimental.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/lib/pattern-match/experimental.rb -------------------------------------------------------------------------------- /lib/pattern-match/version.rb: -------------------------------------------------------------------------------- 1 | module PatternMatch 2 | VERSION = "1.1.1dev" 3 | end 4 | -------------------------------------------------------------------------------- /pattern-match.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/pattern-match.gemspec -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_experimental.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/test/test_experimental.rb -------------------------------------------------------------------------------- /test/test_standard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-tsj/pattern-match/HEAD/test/test_standard.rb --------------------------------------------------------------------------------