├── .editorconfig ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── code_page.md ├── components.md ├── lib ├── components.rb ├── constants.rb ├── helpers.rb └── smaz.rb ├── ohm ├── ohm.rb └── spec ├── arithmetic_spec.rb ├── components_spec.rb ├── constants_spec.rb ├── extras_spec.rb ├── smaz_spec.rb ├── spec_helper.rb ├── stack_spec.rb ├── time_spec.rb └── vectorization_spec.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color --require spec_helper --format documentation 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/Rakefile -------------------------------------------------------------------------------- /code_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/code_page.md -------------------------------------------------------------------------------- /components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/components.md -------------------------------------------------------------------------------- /lib/components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/lib/components.rb -------------------------------------------------------------------------------- /lib/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/lib/constants.rb -------------------------------------------------------------------------------- /lib/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/lib/helpers.rb -------------------------------------------------------------------------------- /lib/smaz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/lib/smaz.rb -------------------------------------------------------------------------------- /ohm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/ohm -------------------------------------------------------------------------------- /ohm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/ohm.rb -------------------------------------------------------------------------------- /spec/arithmetic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/arithmetic_spec.rb -------------------------------------------------------------------------------- /spec/components_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/components_spec.rb -------------------------------------------------------------------------------- /spec/constants_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/constants_spec.rb -------------------------------------------------------------------------------- /spec/extras_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/extras_spec.rb -------------------------------------------------------------------------------- /spec/smaz_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/smaz_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/stack_spec.rb -------------------------------------------------------------------------------- /spec/time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/time_spec.rb -------------------------------------------------------------------------------- /spec/vectorization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickbclifford/Ohm/HEAD/spec/vectorization_spec.rb --------------------------------------------------------------------------------