Sha256: 730fbeea58d6bcded25ed8c810323a15cd696a0898eb189b6424ff411355b373

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "dryad/version"
require "rake"

Gem::Specification.new do |spec|
  spec.name          = "dryad"
  spec.version       = Dryad::VERSION
  spec.authors       = ["Pan Jie"]
  spec.email         = ["panjie@growingio.com"]

  spec.summary       = %q{Config Management & Service Registration and Discovery}
  spec.description   = %q{Dryad is a configration management client. It provides functions such as hot loading of configuration files.}
  spec.homepage      = "https://github.com/jack0pan/dryad.rb"
  spec.license       = "MIT"

  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.files         = FileList['bin/*', 'lib/**/*.rb', '*'].to_a

  spec.add_dependency "dryad-core", Dryad::VERSION
  spec.add_dependency "dryad-consul", Dryad::VERSION
  spec.add_dependency "dryad-cluster", Dryad::VERSION

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 12.3"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dryad-0.3.0 dryad.gemspec
dryad-0.2.7 dryad.gemspec