├── .circleci └── config.yml ├── .gitignore ├── .rubocop.yml ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── TODO.md ├── lib ├── moat.rb └── moat │ ├── rspec.rb │ └── version.rb ├── moat.gemspec └── spec ├── moat_spec.rb └── spec_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/TODO.md -------------------------------------------------------------------------------- /lib/moat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/lib/moat.rb -------------------------------------------------------------------------------- /lib/moat/rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/lib/moat/rspec.rb -------------------------------------------------------------------------------- /lib/moat/version.rb: -------------------------------------------------------------------------------- 1 | module Moat 2 | VERSION = "0.5".freeze 3 | end 4 | -------------------------------------------------------------------------------- /moat.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/moat.gemspec -------------------------------------------------------------------------------- /spec/moat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/spec/moat_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polleverywhere/moat/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------