Sha256: fe4290912dd1902d1bdd0a8310b568adff67c2bb1de398695d0a8ed7b276e787

Contents?: true

Size: 1013 Bytes

Versions: 1

Compression:

Stored size: 1013 Bytes

Contents

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

Gem::Specification.new do |specification|
  specification.name        = "kharon"
  specification.version     = Kharon::VERSION
  specification.date        = Date.today.strftime("%Y-%m-%d")
  specification.summary     = "Ruby Hash validator"
  specification.description = "Kharon is a ruby hash validator that helps you fix the structure of a hash (type of the keys, dependencies, ...)."
  specification.authors     = ["Vincent Courtois"]
  specification.email       = "courtois.vincent@outlook.com"
  specification.files       = `git ls-files`.split($/)
  specification.homepage    = "https://rubygems.org/gems/kharon"
  specification.license     = "Apache License 2"
  specification.test_files  = ["spec/spec_helper.rb", "spec/lib/kharon/validator_spec.rb"]

  specification.required_ruby_version = ">= 1.9.3"
  specification.add_runtime_dependency "bson", ">= 2.2.2"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kharon-0.5.1 kharon.gemspec