Sha256: ffe194443bdc6874be9c626419120bc2fef37807d398250c768a24b3ec25fb34

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "rodimus"
  spec.version       = Rodimus::VERSION
  spec.authors       = ["Brandon Rice"]
  spec.email         = ["brice84@gmail.com"]
  spec.summary       = "An ETL (Extract-Transform-Load) library that uses a forking process model for concurrency."
  spec.description   = "ETL is hard.  There are lots of solutions, but few are open-source and none (that I know of) are Ruby."
  spec.homepage      = "https://github.com/nevern02/rodimus"
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.5"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "mongo"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rodimus-0.0.1 rodimus.gemspec