forked from wspurgin/rspec-sidekiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrspec-sidekiq.gemspec
33 lines (29 loc) · 1.07 KB
/
rspec-sidekiq.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
25
26
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/rspec/sidekiq/version", __FILE__)
Gem::Specification.new do |s|
s.name = "rspec-sidekiq"
s.version = RSpec::Sidekiq::VERSION
s.platform = Gem::Platform::RUBY
s.author = "Phil Ostler"
s.email = "[email protected]"
s.homepage = "http://github.com/philostler/rspec-sidekiq"
s.summary = "RSpec for Sidekiq"
s.description = "Simple testing of Sidekiq jobs via a collection of matchers and helpers"
s.license = "MIT"
s.add_dependency "rspec", ">= 2.0.0"
s.add_dependency "sidekiq", ">= 2.4.0"
s.add_development_dependency "coveralls", "~> 0.7.0"
s.add_development_dependency "fuubar", ">= 1.1.0"
s.files = Dir[".gitattributes"] +
Dir[".gitignore"] +
Dir[".rspec"] +
Dir[".simplecov"] +
Dir[".travis"] +
Dir["CHANGES.md"] +
Dir["Gemfile"] +
Dir["LICENSE"] +
Dir["README.md"] +
Dir["rspec-sidekiq.gemspec"] +
Dir["**/*.rb"]
s.require_paths = ["lib"]
end