Sha256: 1f32020373d8373c3846f785f98cc1fea96d0e41ba9ea7f53e30491763d94060

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gematria/version'

Gem::Specification.new do |gem|
  gem.name          = "gematria"
  gem.version       = Gematria::VERSION
  gem.authors       = ["Adam Zaninovich"]
  gem.email         = ["adam.zaninovich@gmail.com"]
  gem.description   = %q{A Ruby gem that calculates Gematria. This version supports English text and uses a mispar hechrachi style correspondence table, but in future versions there may be support for more languages as well as user configurable correspondence tables. The gem supports raw conversion to number (by simple summation), mapping (breakdown of individual numbers), and reduction to a single digit (mispar katan mispari).}
  gem.summary       = %q{A Ruby gem that calculates Gematria}
  gem.homepage      = "http://github.com/adamzaninovich/gematria"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_development_dependency 'rspec'
  gem.add_development_dependency 'rake'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gematria-0.0.2 gematria.gemspec