├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── emoji-validator.gemspec ├── lib └── emoji │ ├── validator.rb │ └── validator │ ├── no_emoji_anywhere_validator.rb │ ├── no_emoji_validator.rb │ └── version.rb └── spec ├── emoji ├── no_emoji_anywhere_validator_spec.rb ├── no_emoji_validator_spec.rb └── validator_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | AllCops: 2 | TargetRubyVersion: 2.5 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/bin/setup -------------------------------------------------------------------------------- /emoji-validator.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/emoji-validator.gemspec -------------------------------------------------------------------------------- /lib/emoji/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/lib/emoji/validator.rb -------------------------------------------------------------------------------- /lib/emoji/validator/no_emoji_anywhere_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/lib/emoji/validator/no_emoji_anywhere_validator.rb -------------------------------------------------------------------------------- /lib/emoji/validator/no_emoji_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/lib/emoji/validator/no_emoji_validator.rb -------------------------------------------------------------------------------- /lib/emoji/validator/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/lib/emoji/validator/version.rb -------------------------------------------------------------------------------- /spec/emoji/no_emoji_anywhere_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/spec/emoji/no_emoji_anywhere_validator_spec.rb -------------------------------------------------------------------------------- /spec/emoji/no_emoji_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/spec/emoji/no_emoji_validator_spec.rb -------------------------------------------------------------------------------- /spec/emoji/validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/spec/emoji/validator_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brafales/emoji-validator/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------