-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathshoulda-whenever.gemspec
More file actions
23 lines (19 loc) · 926 Bytes
/
shoulda-whenever.gemspec
File metadata and controls
23 lines (19 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH << File.join(File.dirname(__FILE__), "lib")
require 'shoulda/whenever/version'
Gem::Specification.new do |s|
s.name = "shoulda-whenever"
s.version = Shoulda::Whenever::VERSION.dup
s.authors = ["Matthew Gerrior"]
s.date = Time.now.strftime("%Y-%m-%d")
s.email = "gerrior.matthew@gmail.com"
s.homepage = "http://rubygems.org/gems/shoulda-whenever"
s.summary = "Shoulda style matchers for whenever gem"
s.license = "MIT"
s.description = "This gem is designed to make it easier to test that the schedule you built with the 'whenever' gem is accurate."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.required_ruby_version = '>= 1.9.3'
s.add_development_dependency "rspec", "~> 3.4", ">= 3.4.0"
s.add_development_dependency "whenever", "~> 0.9.4"
end