├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── hash_identable.gemspec ├── lib ├── hash_identable.rb └── hash_identable │ ├── class_methods.rb │ ├── configuration.rb │ ├── exceptions.rb │ ├── hsh_function.rb │ ├── identity.rb │ ├── locator.rb │ ├── lookup_table.rb │ └── version.rb └── spec ├── lib ├── hash_identable │ ├── class_methods_spec.rb │ ├── configuration_spec.rb │ ├── hsh_function_spec.rb │ ├── identity_spec.rb │ ├── locator_spec.rb │ └── lookup_table_spec.rb └── hash_identable_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /hash_identable.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/hash_identable.gemspec -------------------------------------------------------------------------------- /lib/hash_identable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable.rb -------------------------------------------------------------------------------- /lib/hash_identable/class_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/class_methods.rb -------------------------------------------------------------------------------- /lib/hash_identable/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/configuration.rb -------------------------------------------------------------------------------- /lib/hash_identable/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/exceptions.rb -------------------------------------------------------------------------------- /lib/hash_identable/hsh_function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/hsh_function.rb -------------------------------------------------------------------------------- /lib/hash_identable/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/identity.rb -------------------------------------------------------------------------------- /lib/hash_identable/locator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/locator.rb -------------------------------------------------------------------------------- /lib/hash_identable/lookup_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/lib/hash_identable/lookup_table.rb -------------------------------------------------------------------------------- /lib/hash_identable/version.rb: -------------------------------------------------------------------------------- 1 | module HashIdentable 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/lib/hash_identable/class_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable/class_methods_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_identable/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable/configuration_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_identable/hsh_function_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable/hsh_function_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_identable/identity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable/identity_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_identable/locator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable/locator_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_identable/lookup_table_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable/lookup_table_spec.rb -------------------------------------------------------------------------------- /spec/lib/hash_identable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/lib/hash_identable_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviuslabs/hash_identable/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------