├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── ya_enum.rb └── ya_enum │ ├── matcher.rb │ └── version.rb ├── test ├── test_helper.rb └── ya_enum_test.rb └── ya_enum.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/ya_enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/lib/ya_enum.rb -------------------------------------------------------------------------------- /lib/ya_enum/matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/lib/ya_enum/matcher.rb -------------------------------------------------------------------------------- /lib/ya_enum/version.rb: -------------------------------------------------------------------------------- 1 | module YaEnum 2 | VERSION = "0.1.3" 3 | end 4 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/ya_enum_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/test/ya_enum_test.rb -------------------------------------------------------------------------------- /ya_enum.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonsser/ya_enum/HEAD/ya_enum.gemspec --------------------------------------------------------------------------------