• Stars
    star
    135
  • Rank 259,855 (Top 6 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 9 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Conversion from one object type to another with a bit of black magic.

Necromancer

Gem Version Actions CI Build status Code Climate Coverage Status Inline docs

Conversion from one object type to another with a bit of black magic.

Necromancer provides independent type conversion component for TTY toolkit.

Motivation

Conversion between Ruby core types frequently comes up in projects but is solved by half-baked solutions. This library aims to provide an independent and extensible API to support a robust and generic way to convert between core Ruby types.

Features

  • Simple and expressive API
  • Ability to specify own converters
  • Ability to compose conversions out of simpler ones
  • Support conversion of custom defined types
  • Ability to specify strict conversion mode

Installation

Add this line to your application's Gemfile:

gem "necromancer"

And then execute:

$ bundle

Or install it yourself as:

$ gem install necromancer

Contents

1. Usage

Necromancer knows how to handle conversions between various types using the convert method. The convert method takes as an argument the value to convert from. Then to perform actual coercion use the to or more functional style >> method that accepts the type for the returned value which can be :symbol, object or ClassName.

For example, to convert a string to a range type:

Necromancer.convert("1-10").to(:range)  # => 1..10
Necromancer.convert("1-10") >> :range   # => 1..10
Necromancer.convert("1-10") >> Range    # => 1..10

In order to handle boolean conversions:

Necromancer.convert("t").to(:boolean)   # => true
Necromancer.convert("t") >> true        # => true

To convert string to numeric value:

Necromancer.convert("10e1").to(:numeric)  # => 100

You can convert string to array of values like boolean, integer or float:

Necromancer.convert("t,f,t"]).to(:booleans)      # => [true, false, true]
Necromancer.convert("1,2.3,3.0"]).to(:integers)  # => [1, 2, 3]
Necromancer.convert("1,2.3,3.0"]).to(:floats)    # => [1.0, 2.3, 3.0]

To convert string to hash value:

Necromancer.convert("a:1 b:2 c:3").to(:hash) # => {a: "1", b: "2", c: "3"}
Necromancer.convert("a=1 b=2 c=3").to(:hash) # => {a: "1", b: "2", c: "3"}

To provide extra information about the conversion value type use the from:

Necromancer.convert(["1", "2.3", "3.0"]).from(:array).to(:numeric) # => [1, 2.3, 3.0]

Necromancer also allows you to add custom conversions.

When conversion isn't possible, a Necromancer::NoTypeConversionAvailableError is thrown indicating that convert doesn't know how to perform the requested conversion:

Necromancer.convert(:foo).to(:float)
# => Necromancer::NoTypeConversionAvailableError: Conversion 'foo->float' unavailable.

2. Interface

Necromancer will perform conversions on the supplied object through use of convert, from and to methods.

2.1 convert

For the purpose of divination, Necromancer uses convert method to turn source type into target type. For example, in order to convert a string into a range type do:

Necromancer.convert("1,10").to(:range)  #  => 1..10

Alternatively, you can use block:

Necromancer.convert { "1,10" }.to(:range) # => 1..10

Conversion isn't always possible, in which case a Necromancer::NoTypeConversionAvailableError is thrown indicating that convert doesn't know how to perform the requested conversion:

Necromancer.convert(:foo).to(:float)
# => Necromancer::NoTypeConversionAvailableError: Conversion 'foo->float' unavailable.

2.2 from

To specify conversion source type use from method:

Necromancer.convert("1.0").from(:string).to(:numeric)

In majority of cases you do not need to specify from as the type will be inferred from the convert method argument and then appropriate conversion will be applied to result in target type such as :numeric. However, if you do not control the input to convert and want to ensure consistent behaviour please use from.

The source parameters are:

  • :array
  • :boolean
  • :date
  • :datetime
  • :float
  • :integer
  • :numeric
  • :range
  • :string
  • :time

2.3 to

To convert objects between types, Necromancer provides several target types. The to or functional style >> method allows you to pass target as an argument to perform actual conversion. The target can be one of :symbol, object or ClassName:

Necromancer.convert("yes").to(:boolean)   # => true
Necromancer.convert("yes") >> :boolean    # => true
Necromancer.convert("yes") >> true        # => true
Necromancer.convert("yes") >> TrueClass   # => true

By default, when target conversion fails the original value is returned. However, you can pass strict as an additional argument to ensure failure when conversion cannot be performed:

Necromancer.convert("1a").to(:integer, strict: true)
# => raises Necromancer::ConversionTypeError

The target parameters are:

  • :array
  • :boolean, :booleans, :bools, :boolean_hash, :bool_hash
  • :date
  • :datetime,
  • :float, :floats, :float_hash
  • :integer, :integers, :ints, :integer_hash, :int_hash
  • :numeric, :numerics, :nums, :numeric_hash, :num_hash
  • :range
  • :string
  • :time

2.4 can?

To verify that a given conversion can be handled by Necromancer call can? with the source and target of the desired conversion.

converter = Necromancer.new
converter.can?(:string, :integer)   # => true
converter.can?(:unknown, :integer)  # => false

2.5 configure

You may set global configuration options on Necromancer instance by passing a block like so:

Necromancer.new do |config|
  config.strict true
end

Or calling configure method:

converter = Necromancer.new
converter.configure do |config|
  config.copy false
end

Available configuration options are:

  • strict - ensures correct types for conversion, by default false
  • copy - ensures only copy is modified, by default true

3. Converters

Necromancer flexibility means you can register your own converters or use the already defined converters for such types as Array, Boolean, Date, DateTime, Hash, Numeric, Range and Time.

3.1 Array

The Necromancer allows you to transform arbitrary object into array:

Necromancer.convert(nil).to(:array)     # => []
Necromancer.convert({x: 1}).to(:array)  # => [[:x, 1]]

In addition, Necromancer excels at converting , or - delimited string into an array object:

Necromancer.convert("a, b, c").to(:array)  # => ["a", "b", "c"]

If the string is a list of - or , separated numbers, they will be converted to their respective numeric types:

Necromancer.convert("1 - 2 - 3").to(:array)  # => [1, 2, 3]

It handles conversion of string into an array of boolean values as well:

Necromancer.convert("yes,no,t").to(:booleans)    # => [true, false, true]
Necromancer.convert("1 - f - FALSE").to(:bools)  # => [true, false, false]

You can also convert array containing string objects to array containing numeric values:

Necromancer.convert(["1", "2.3", "3.0"]).to(:numerics) # => [1, 2.3, 3.0]
Necromancer.convert(["1", "2.3", "3.0"]).to(:nums)     # => [1, 2.3, 3.0]

Or you can be more specific by using :integers and :floats as the resulting type:

Necromancer.convert(["1", "2.3", "3.0"]).to(:integers) # => [1, 2, 3]

When in strict mode the conversion will raise a Necromancer::ConversionTypeError error like so:

Necromancer.convert(["1", "2.3", false]).to(:numerics, strict: true)
# => Necromancer::ConversionTypeError: false cannot be converted from `array` to `numerics`

However, in non-strict mode the value will be simply returned unchanged:

Necromancer.convert(["1", "2.3", false]).to(:numerics, strict: false)
# => [1, 2.3, false]

3.2 Boolean

The Necromancer allows you to convert a string object to boolean object. The 1, "1", "t", "T", "true", "TRUE", "y", "Y", "yes", "Yes", "on", "ON" values are converted to TrueClass.

Necromancer.convert("yes").to(:boolean)  # => true

Similarly, the 0, "0", "f", "F", "false", "FALSE", "n", "N", "no", "No", "off", "OFF" values are converted to FalseClass.

Necromancer.convert("no").to(:boolean) # => false

You can also convert an integer object to boolean:

Necromancer.convert(1).to(:boolean)  # => true
Necromancer.convert(0).to(:boolean)  # => false

3.3 DateTime

Necromancer knows how to convert string to date object:

Necromancer.convert("1-1-2015").to(:date)    # => "2015-01-01"
Necromancer.convert("01/01/2015").to(:date)  # => "2015-01-01"

You can also convert string to datetime:

Necromancer.convert("1-1-2015").to(:datetime)          # => "2015-01-01T00:00:00+00:00"
Necromancer.convert("1-1-2015 15:12:44").to(:datetime) # => "2015-01-01T15:12:44+00:00"

To convert a string to a time instance do:

Necromancer.convert("01-01-2015").to(:time)       # => 2015-01-01 00:00:00 +0100
Necromancer.convert("01-01-2015 08:35").to(:time) # => 2015-01-01 08:35:00 +0100
Necromancer.convert("12:35").to(:time)            # => 2015-01-04 12:35:00 +0100

3.4 Hash

With Necromancer you can convert a string with pairs delimited by = or : characters into a hash:

Necromancer.convert("a:1 b:2 c:3").to(:hash)
Necromancer.convert("a=1 b=2 c=3").to(:hash)
# => {a: "1", b: "2", c: "3"}

The pairs can be separated by & symbols and mix = and : pair delimiters:

Necromancer.convert("a:1 & b=2 & c:3").to(:hash)
# => {a: "1", b: "2", c: "3"}

You can also convert string to hash with integer values using :int_hash type:

Necromancer.convert("a:1 b:2 c:3").to(:int_hash)     # => {a: 1, b: 2, c: 3}
Necromancer.convert("a:1 b:2 c:3").to(:integer_hash) # => {a: 1, b: 2, c: 3}

Similarly you can convert string to hash with float or numeric values using :float_hash and numeric_hash types:

Necromancer.convert("a:1 b:2 c:3").to(:float_hash)    # => {a: 1.0, b: 2.0, c: 3.0}
Necromancer.convert("a:1 b:2.0 c:3").to(:num_hash)    # => {a: 1, b:2.0, c: 3}

String can also be converted to hash with boolean values using :boolean_hash or :bool_hash:

Necromancer.convert("a:yes b:no c:t").to(:bool_hash)  # => {a: true, b: false, c: true}

3.5 Numeric

Necromancer comes ready to convert all the primitive numeric values.

To convert a string to a float do:

Necromancer.convert("1.2a").to(:float)  #  => 1.2

Conversion to numeric in strict mode raises Necromancer::ConversionTypeError:

Necromancer.convert("1.2a").to(:float, strict: true) # => raises error

To convert a string to an integer do:

Necromancer.convert("1a").to(:integer)  #  => 1

However, if you want to convert string to an appropriate matching numeric type do:

Necromancer.convert("1e1").to(:numeric)   # => 10

3.6 Range

Necromancer is no stranger to figuring out ranges from strings. You can pass ,, -, .., ... characters to denote ranges:

Necromancer.convert("1,10").to(:range)  # => 1..10

Or to create a range of letters:

Necromancer.convert("a-z").to(:range)   # => "a".."z"

It will handle space characters:

Necromancer.convert("1 . . 10") >> :range   # => 1..10
Necromancer.convert("a . . . z") >> :range  # =>  "a"..."z"

3.7 Custom

In case where provided conversions do not match your needs you can create your own and register with Necromancer by using an Object or a Proc.

3.7.1 Using an Object

Firstly, you need to create a converter that at minimum requires to specify call method that will be invoked during conversion:

UpcaseConverter = Struct.new(:source, :target) do
  def call(value, options = {})
    value.upcase
  end
end

Inside the UpcaseConverter you have access to global configuration options by directly calling config method.

Then you need to specify what type conversions this converter will support. For example, UpcaseConverter will allow a string object to be converted to a new string object with content upper cased. This can be done:

upcase_converter = UpcaseConverter.new(:string, :upcase)

Necromancer provides the register method to add converter:

converter = Necromancer.new
converter.register(upcase_converter)   # => true if successfully registered

Finally, by invoking convert method and specifying :upcase as the target for the conversion we achieve the result:

converter.convert("magic").to(:upcase)   # => "MAGIC"

3.7.2 Using a Proc

Using a Proc object you can create and immediately register a converter. You need to pass source and target of the conversion that will be used later on to match the conversion. The convert allows you to specify the actual conversion in block form. For example:

converter = Necromancer.new

converter.register do |c|
  c.source= :string
  c.target= :upcase
  c.convert = proc { |value, options| value.upcase }
end

Then by invoking the convert method and passing the :upcase conversion type you can transform the string like so:

converter.convert("magic").to(:upcase)   # => "MAGIC"

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/necromancer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

  1. Fork it ( https://github.com/piotrmurach/necromancer/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

The gem is available as open source under the terms of the MIT License.

Copyright

Copyright (c) 2014 Piotr Murach. See LICENSE for further details.

More Repositories

1

tty

Toolkit for developing sleek command line apps.
Ruby
2,472
star
2

tty-prompt

A beautiful and powerful interactive command line prompt
Ruby
1,418
star
3

github

Ruby interface to GitHub API
Ruby
1,132
star
4

finite_machine

A minimal finite state machine with a straightforward syntax.
Ruby
802
star
5

pastel

Terminal output styling with intuitive and clean API.
Ruby
628
star
6

rspec-benchmark

Performance testing matchers for RSpec
Ruby
584
star
7

tty-spinner

A terminal spinner for tasks that have non-deterministic time frame.
Ruby
421
star
8

tty-progressbar

Display a single or multiple progress bars in the terminal.
Ruby
415
star
9

loaf

Manages and displays breadcrumb trails in Rails app - lean & mean.
Ruby
404
star
10

tty-command

Execute shell commands with pretty output logging and capture stdout, stderr and exit status.
Ruby
397
star
11

tty-markdown

Convert a markdown document or text into a terminal friendly output.
Ruby
303
star
12

tty-logger

A readable, structured and beautiful logging for the terminal
Ruby
291
star
13

github_cli

GitHub on your command line. Use your terminal, not the browser.
Ruby
264
star
14

tty-table

A flexible and intuitive table generator
Ruby
183
star
15

tty-box

Draw various frames and boxes in your terminal window
Ruby
177
star
16

awesome-ruby-cli-apps

A curated list of awesome command-line applications in Ruby.
Ruby
159
star
17

rack-policy

Rack middleware for the EU ePrivacy Directive compliance in Ruby Web Apps
Ruby
147
star
18

tty-pie

Draw pie charts in your terminal window
Ruby
138
star
19

strings

A set of useful functions for transforming strings.
Ruby
127
star
20

coinpare

Compare cryptocurrency trading data across multiple exchanges and blockchains in the comfort of your terminal
Ruby
109
star
21

tty-exit

Terminal exit codes.
Ruby
100
star
22

strings-case

Convert strings between different cases.
Ruby
95
star
23

tty-reader

A set of methods for processing keyboard input in character, line and multiline modes.
Ruby
85
star
24

tty-option

A declarative command-line parser
Ruby
84
star
25

merkle_tree

A merkle tree is a data structure used for efficiently summarizing sets of data, often one-time signatures.
Ruby
83
star
26

tty-screen

Terminal screen detection - cross platform, major ruby interpreters
Ruby
83
star
27

verse

[DEPRECATED] Text transformations
Ruby
71
star
28

tty-cursor

Terminal cursor movement and manipulation of cursor properties such as visibility
Ruby
68
star
29

supervision

Write distributed systems that are resilient and self-heal.
Ruby
66
star
30

tty-file

File manipulation utility methods
Ruby
65
star
31

tty-config

A highly customisable application configuration interface for building terminal tools.
Ruby
61
star
32

benchmark-trend

Measure performance trends of Ruby code
Ruby
59
star
33

tty-font

Terminal fonts
Ruby
58
star
34

lex

Lex is an implementation of lex tool in Ruby.
Ruby
56
star
35

tty-tree

Print directory or structured data in a tree like format
Ruby
56
star
36

strings-truncation

Truncate strings with fullwidth characters and ANSI codes.
Ruby
49
star
37

tty-pager

Terminal output paging - cross-platform, major ruby interpreters
Ruby
39
star
38

tty-color

Terminal color capabilities detection
Ruby
35
star
39

slideck

Present Markdown-powered slide decks in the terminal.
Ruby
34
star
40

strings-inflection

Convert between singular and plural forms of English nouns
Ruby
31
star
41

tty-link

Hyperlinks in your terminal
Ruby
31
star
42

tty-platform

Operating system detection
Ruby
29
star
43

tty-sparkline

Sparkline charts for terminal applications.
Ruby
29
star
44

tty-editor

Opens a file or text in the user's preferred editor
Ruby
27
star
45

communist

Library for mocking CLI calls to external APIs
Ruby
25
star
46

splay_tree

A self-balancing binary tree optimised for fast access to frequently used nodes.
Ruby
24
star
47

equatable

Allows ruby objects to implement equality comparison and inspection methods.
Ruby
24
star
48

minehunter

Terminal mine hunting game.
Ruby
23
star
49

rotation.js

Responsive and mobile enabled jQuery plugin to help create rotating content.
JavaScript
22
star
50

strings-numeral

Express numbers as string numerals
Ruby
20
star
51

strings-ansi

Handle ANSI escape codes in strings
Ruby
19
star
52

benchmark-malloc

Trace memory allocations and collect stats
Ruby
19
star
53

tty-which

Cross-platform implementation of Unix `which` command
Ruby
17
star
54

tty-runner

A command routing tree for terminal applications
Ruby
12
star
55

benchmark-perf

Benchmark execution time and iterations per second
Ruby
12
star
56

impact

Ruby backend for Impact.js framework
Ruby
8
star
57

queen

English language linter to hold your files in high esteem.
Ruby
8
star
58

pastel-cli

CLI tool for intuitive terminal output styling
Ruby
7
star
59

dotfiles

Configuration files for Unix tools
Vim Script
7
star
60

tty-markdown-cli

CLI tool for displaying nicely formatted Markdown documents in the terminal
Ruby
7
star
61

static_deploy

Automate deployment of static websites
Ruby
6
star
62

tenpin

Terminal tenpin bowling game
Ruby
4
star
63

tytus

Helps you manage page titles in your Rails app.
Ruby
3
star
64

tty.github.io

TTY toolkit website.
SCSS
2
star
65

peter-murach.github.com

Personal webpage
JavaScript
2
star
66

wc.rb

A Ruby clone of Unix wc utility.
Ruby
2
star
67

exportable

Rails plugin to ease exporting tasks.
Ruby
1
star
68

capistrano-git-stages

Multistage capistrano git tags
Ruby
1
star
69

tabster

Ruby
1
star
70

leek

Cucumber steps and RSpec expectations for command line apps
Ruby
1
star
71

unicorn.github.io

Website for the github_api and github_cli ruby gems.
CSS
1
star
72

tty-color-cli

CLI tool for terminal color capabilities detection
Ruby
1
star
73

finite_machine.github.io

Website for finite_machine Ruby gem
SCSS
1
star
74

strings-wrapping

Wrap strings with fullwidth characters and ANSI codes
Ruby
1
star