├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── bench.rb ├── bin ├── console └── setup ├── lib ├── enum.rb ├── literal_enums.rb └── literal_enums │ ├── transitions.rb │ └── version.rb ├── literal_enums.gemspec └── test ├── enum.rb ├── literal_enums.rb └── transitions.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.1 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/README.md -------------------------------------------------------------------------------- /bench.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/bench.rb -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/lib/enum.rb -------------------------------------------------------------------------------- /lib/literal_enums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/lib/literal_enums.rb -------------------------------------------------------------------------------- /lib/literal_enums/transitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/lib/literal_enums/transitions.rb -------------------------------------------------------------------------------- /lib/literal_enums/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/lib/literal_enums/version.rb -------------------------------------------------------------------------------- /literal_enums.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/literal_enums.gemspec -------------------------------------------------------------------------------- /test/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/test/enum.rb -------------------------------------------------------------------------------- /test/literal_enums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/test/literal_enums.rb -------------------------------------------------------------------------------- /test/transitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeldrapper/literal_enums/HEAD/test/transitions.rb --------------------------------------------------------------------------------