Sha256: 46854bcabcf21b0cbb3f2ae1c9a6c328b2e994d8c03d70b760832ded0ea70c17

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "morfo"
  spec.version       = Morfo::VERSION
  spec.authors       = ["Leif Gensert"]
  spec.email         = ["leif@leif.io"]
  spec.description   = %q{This gem provides a DSL for converting one hash into another}
  spec.summary       = %q{Inspired by ActiveImporter, this gem generically converts an array of hashes}
  spec.homepage      = ""
  spec.license       = "MIT"

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

  spec.add_runtime_dependency "json"
  spec.add_runtime_dependency "deep_merge"
  spec.add_runtime_dependency "rubysl" if RUBY_ENGINE == "rbx"

  spec.add_development_dependency "rake"
  spec.add_development_dependency "bundler", "~> 1.3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
morfo-0.7.0 morfo.gemspec