├── .gitignore ├── .rspec ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── boffin.gemspec ├── lib ├── boffin.rb └── boffin │ ├── config.rb │ ├── hit.rb │ ├── keyspace.rb │ ├── trackable.rb │ ├── tracker.rb │ ├── utils.rb │ └── version.rb └── spec ├── boffin ├── config_spec.rb ├── hit_spec.rb ├── keyspace_spec.rb ├── trackable_spec.rb ├── tracker_spec.rb └── utils_spec.rb ├── boffin_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -fs 3 | -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/Rakefile -------------------------------------------------------------------------------- /boffin.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/boffin.gemspec -------------------------------------------------------------------------------- /lib/boffin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin.rb -------------------------------------------------------------------------------- /lib/boffin/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/config.rb -------------------------------------------------------------------------------- /lib/boffin/hit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/hit.rb -------------------------------------------------------------------------------- /lib/boffin/keyspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/keyspace.rb -------------------------------------------------------------------------------- /lib/boffin/trackable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/trackable.rb -------------------------------------------------------------------------------- /lib/boffin/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/tracker.rb -------------------------------------------------------------------------------- /lib/boffin/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/utils.rb -------------------------------------------------------------------------------- /lib/boffin/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/lib/boffin/version.rb -------------------------------------------------------------------------------- /spec/boffin/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin/config_spec.rb -------------------------------------------------------------------------------- /spec/boffin/hit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin/hit_spec.rb -------------------------------------------------------------------------------- /spec/boffin/keyspace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin/keyspace_spec.rb -------------------------------------------------------------------------------- /spec/boffin/trackable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin/trackable_spec.rb -------------------------------------------------------------------------------- /spec/boffin/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin/tracker_spec.rb -------------------------------------------------------------------------------- /spec/boffin/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin/utils_spec.rb -------------------------------------------------------------------------------- /spec/boffin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/boffin_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heycarsten/boffin/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------