Sha256: 59e5ee6ebbaccfe50b4cf58fcfc71fa52f99df5dce006a2702a6de98feee4830

Contents?: true

Size: 1.42 KB

Versions: 9

Compression:

Stored size: 1.42 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "svcdeps_tasks"
  spec.version       = SvcdepsTasks::VERSION
  spec.authors       = ["Tiago Lopo"]
  spec.email         = ["tiagolopo@yahoo.com.br"]

  spec.summary       = %q{RSpec tests for service dependencies}
  spec.description   = %q{RSpec tests for service dependencies}
  spec.homepage      = "https://github.com/tlopo-ruby/svcdeps_tasks"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    #spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |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.add_dependency "rspec", "~> 3.7"
  spec.add_dependency "deep_merge", "~> 1.2"
  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
svcdeps_tasks-0.1.9 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.8 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.7 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.6 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.5 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.4 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.3 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.2 svcdeps_tasks.gemspec
svcdeps_tasks-0.1.1 svcdeps_tasks.gemspec