├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── commonregex.gemspec ├── lib ├── commonregex.rb ├── commonregex │ └── version.rb └── support │ └── most_common.yml └── test └── test_commonregex.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | vendor/bundle 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/Rakefile -------------------------------------------------------------------------------- /commonregex.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/commonregex.gemspec -------------------------------------------------------------------------------- /lib/commonregex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/lib/commonregex.rb -------------------------------------------------------------------------------- /lib/commonregex/version.rb: -------------------------------------------------------------------------------- 1 | class CommonRegex 2 | VERSION = '0.1.1' 3 | end 4 | -------------------------------------------------------------------------------- /lib/support/most_common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/lib/support/most_common.yml -------------------------------------------------------------------------------- /test/test_commonregex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talyssonoc/CommonRegexRuby/HEAD/test/test_commonregex.rb --------------------------------------------------------------------------------