├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── logo-small.png ├── shard.yml ├── spec ├── popcorn_spec.cr └── spec_helper.cr └── src ├── popcorn.cr └── popcorn ├── cast.cr ├── cast ├── array.cr ├── bool.cr ├── float.cr ├── hash.cr ├── int.cr ├── json_any.cr ├── named_tuple.cr ├── nil.cr ├── string.cr ├── symbol.cr ├── time.cr └── yaml_any.cr ├── injection.cr └── version.cr /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/README.md -------------------------------------------------------------------------------- /logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/logo-small.png -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/popcorn_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/spec/popcorn_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/popcorn.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn.cr -------------------------------------------------------------------------------- /src/popcorn/cast.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast.cr -------------------------------------------------------------------------------- /src/popcorn/cast/array.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/array.cr -------------------------------------------------------------------------------- /src/popcorn/cast/bool.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/bool.cr -------------------------------------------------------------------------------- /src/popcorn/cast/float.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/float.cr -------------------------------------------------------------------------------- /src/popcorn/cast/hash.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/hash.cr -------------------------------------------------------------------------------- /src/popcorn/cast/int.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/int.cr -------------------------------------------------------------------------------- /src/popcorn/cast/json_any.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/json_any.cr -------------------------------------------------------------------------------- /src/popcorn/cast/named_tuple.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/named_tuple.cr -------------------------------------------------------------------------------- /src/popcorn/cast/nil.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/nil.cr -------------------------------------------------------------------------------- /src/popcorn/cast/string.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/string.cr -------------------------------------------------------------------------------- /src/popcorn/cast/symbol.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/symbol.cr -------------------------------------------------------------------------------- /src/popcorn/cast/time.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/time.cr -------------------------------------------------------------------------------- /src/popcorn/cast/yaml_any.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/cast/yaml_any.cr -------------------------------------------------------------------------------- /src/popcorn/injection.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icyleaf/popcorn/HEAD/src/popcorn/injection.cr -------------------------------------------------------------------------------- /src/popcorn/version.cr: -------------------------------------------------------------------------------- 1 | module Popcorn 2 | VERSION = "0.3.0" 3 | end 4 | --------------------------------------------------------------------------------