├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── appveyor.yml ├── bin ├── console └── setup ├── lib ├── necromancer.rb └── necromancer │ ├── configuration.rb │ ├── context.rb │ ├── conversion_target.rb │ ├── conversions.rb │ ├── converter.rb │ ├── converters │ ├── array.rb │ ├── boolean.rb │ ├── date_time.rb │ ├── hash.rb │ ├── numeric.rb │ └── range.rb │ ├── null_converter.rb │ └── version.rb ├── necromancer.gemspec ├── spec ├── spec_helper.rb └── unit │ ├── can_spec.rb │ ├── config_spec.rb │ ├── configuration │ └── new_spec.rb │ ├── conversions │ ├── fetch_spec.rb │ ├── register_spec.rb │ └── to_hash_spec.rb │ ├── convert_spec.rb │ ├── converters │ ├── array_spec.rb │ ├── boolean_spec.rb │ ├── date_time_spec.rb │ ├── hash_spec.rb │ ├── numeric_spec.rb │ └── range_spec.rb │ ├── inspect_spec.rb │ ├── new_spec.rb │ └── register_spec.rb └── tasks ├── console.rake ├── coverage.rake └── spec.rake /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: piotrmurach 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --warnings 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/necromancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer.rb -------------------------------------------------------------------------------- /lib/necromancer/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/configuration.rb -------------------------------------------------------------------------------- /lib/necromancer/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/context.rb -------------------------------------------------------------------------------- /lib/necromancer/conversion_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/conversion_target.rb -------------------------------------------------------------------------------- /lib/necromancer/conversions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/conversions.rb -------------------------------------------------------------------------------- /lib/necromancer/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converter.rb -------------------------------------------------------------------------------- /lib/necromancer/converters/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converters/array.rb -------------------------------------------------------------------------------- /lib/necromancer/converters/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converters/boolean.rb -------------------------------------------------------------------------------- /lib/necromancer/converters/date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converters/date_time.rb -------------------------------------------------------------------------------- /lib/necromancer/converters/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converters/hash.rb -------------------------------------------------------------------------------- /lib/necromancer/converters/numeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converters/numeric.rb -------------------------------------------------------------------------------- /lib/necromancer/converters/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/converters/range.rb -------------------------------------------------------------------------------- /lib/necromancer/null_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/null_converter.rb -------------------------------------------------------------------------------- /lib/necromancer/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/lib/necromancer/version.rb -------------------------------------------------------------------------------- /necromancer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/necromancer.gemspec -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/can_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/can_spec.rb -------------------------------------------------------------------------------- /spec/unit/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/config_spec.rb -------------------------------------------------------------------------------- /spec/unit/configuration/new_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/configuration/new_spec.rb -------------------------------------------------------------------------------- /spec/unit/conversions/fetch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/conversions/fetch_spec.rb -------------------------------------------------------------------------------- /spec/unit/conversions/register_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/conversions/register_spec.rb -------------------------------------------------------------------------------- /spec/unit/conversions/to_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/conversions/to_hash_spec.rb -------------------------------------------------------------------------------- /spec/unit/convert_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/convert_spec.rb -------------------------------------------------------------------------------- /spec/unit/converters/array_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/converters/array_spec.rb -------------------------------------------------------------------------------- /spec/unit/converters/boolean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/converters/boolean_spec.rb -------------------------------------------------------------------------------- /spec/unit/converters/date_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/converters/date_time_spec.rb -------------------------------------------------------------------------------- /spec/unit/converters/hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/converters/hash_spec.rb -------------------------------------------------------------------------------- /spec/unit/converters/numeric_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/converters/numeric_spec.rb -------------------------------------------------------------------------------- /spec/unit/converters/range_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/converters/range_spec.rb -------------------------------------------------------------------------------- /spec/unit/inspect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/inspect_spec.rb -------------------------------------------------------------------------------- /spec/unit/new_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/new_spec.rb -------------------------------------------------------------------------------- /spec/unit/register_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/spec/unit/register_spec.rb -------------------------------------------------------------------------------- /tasks/console.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/tasks/console.rake -------------------------------------------------------------------------------- /tasks/coverage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/tasks/coverage.rake -------------------------------------------------------------------------------- /tasks/spec.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piotrmurach/necromancer/HEAD/tasks/spec.rake --------------------------------------------------------------------------------