├── .document ├── .gitignore ├── HISTORY.markdown ├── LICENSE.markdown ├── README.markdown ├── Rakefile ├── VERSION ├── candy.gemspec ├── lib ├── candy.rb └── candy │ ├── array.rb │ ├── collection.rb │ ├── crunch.rb │ ├── crunch │ └── document.rb │ ├── embeddable.rb │ ├── exceptions.rb │ ├── factory.rb │ ├── hash.rb │ ├── piece.rb │ ├── qualified_const_get.rb │ └── wrapper.rb └── spec ├── candy ├── array_spec.rb ├── collection_spec.rb ├── crunch_spec.rb ├── hash_spec.rb ├── piece_spec.rb └── wrapper_spec.rb ├── candy_spec.rb ├── spec.opts ├── spec.watchr ├── spec_helper.rb └── support ├── kitkat_fixture.rb └── zagnuts_fixture.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/HISTORY.markdown -------------------------------------------------------------------------------- /LICENSE.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/LICENSE.markdown -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.10 2 | -------------------------------------------------------------------------------- /candy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/candy.gemspec -------------------------------------------------------------------------------- /lib/candy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy.rb -------------------------------------------------------------------------------- /lib/candy/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/array.rb -------------------------------------------------------------------------------- /lib/candy/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/collection.rb -------------------------------------------------------------------------------- /lib/candy/crunch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/crunch.rb -------------------------------------------------------------------------------- /lib/candy/crunch/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/crunch/document.rb -------------------------------------------------------------------------------- /lib/candy/embeddable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/embeddable.rb -------------------------------------------------------------------------------- /lib/candy/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/exceptions.rb -------------------------------------------------------------------------------- /lib/candy/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/factory.rb -------------------------------------------------------------------------------- /lib/candy/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/hash.rb -------------------------------------------------------------------------------- /lib/candy/piece.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/piece.rb -------------------------------------------------------------------------------- /lib/candy/qualified_const_get.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/qualified_const_get.rb -------------------------------------------------------------------------------- /lib/candy/wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/lib/candy/wrapper.rb -------------------------------------------------------------------------------- /spec/candy/array_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy/array_spec.rb -------------------------------------------------------------------------------- /spec/candy/collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy/collection_spec.rb -------------------------------------------------------------------------------- /spec/candy/crunch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy/crunch_spec.rb -------------------------------------------------------------------------------- /spec/candy/hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy/hash_spec.rb -------------------------------------------------------------------------------- /spec/candy/piece_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy/piece_spec.rb -------------------------------------------------------------------------------- /spec/candy/wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy/wrapper_spec.rb -------------------------------------------------------------------------------- /spec/candy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/candy_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec.watchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/spec.watchr -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/kitkat_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/support/kitkat_fixture.rb -------------------------------------------------------------------------------- /spec/support/zagnuts_fixture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFEley/candy/HEAD/spec/support/zagnuts_fixture.rb --------------------------------------------------------------------------------