-
Notifications
You must be signed in to change notification settings - Fork 2
/
qspec.gemspec
24 lines (20 loc) · 922 Bytes
/
qspec.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'qspec/version'
Gem::Specification.new do |gem|
gem.name = "qspec"
gem.version = Qspec::VERSION
gem.authors = ["tomykaira"]
gem.email = ["[email protected]"]
gem.description = %q{QSpec inserts spec files to a queue. Workers process that queue one by one.}
gem.summary = %q{QSpec is extension of RSpec. Q is for queue, and quick.}
gem.homepage = ""
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.post_install_message = "Run qspec-helper init to create your config file"
gem.add_dependency 'rspec-core', '~>3.4'
gem.add_dependency 'parallel'
end