Sha256: 87493d1db3dfcce7ea607383df0b24becdeafd95af8fe3fa5f375055dfa2537e

Contents?: true

Size: 829 Bytes

Versions: 8

Compression:

Stored size: 829 Bytes

Contents

# coding: utf-8
require_relative 'lib/async/rspec/version'

Gem::Specification.new do |spec|
	spec.name          = "async-rspec"
	spec.version       = Async::RSpec::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]

	spec.summary       = "Helpers for writing specs against the async gem."
	spec.homepage      = "https://github.com/socketry/async-rspec"

	spec.files         = `git ls-files -z`.split("\x0").reject do |f|
		f.match(%r{^(test|spec|features)/})
	end
	
	spec.require_paths = ["lib"]
	
	spec.add_dependency "rspec", "~> 3.0"
	
	# Since we test the shared contexts, we need some bits of async:
	spec.add_development_dependency "async", "~> 1.8"
	
	spec.add_development_dependency "bundler", "~> 1.13"
	spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
async-rspec-1.12.0 async-rspec.gemspec
async-rspec-1.11.1 async-rspec.gemspec
async-rspec-1.11.0 async-rspec.gemspec
async-rspec-1.10.0 async-rspec.gemspec
async-rspec-1.9.0 async-rspec.gemspec
async-rspec-1.8.0 async-rspec.gemspec
async-rspec-1.7.0 async-rspec.gemspec
async-rspec-1.6.0 async-rspec.gemspec