-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfantaskspec.gemspec
More file actions
29 lines (25 loc) · 1.1 KB
/
fantaskspec.gemspec
File metadata and controls
29 lines (25 loc) · 1.1 KB
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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "fantaskspec/version"
Gem::Specification.new do |spec|
spec.name = "fantaskspec"
spec.version = Fantaskspec::VERSION
spec.authors = ["Michael Crismali"]
spec.email = ["michael.crismali@gmail.com"]
spec.summary = "Makes it easy to test your Rake tasks with RSpec."
spec.description = "Makes it easy to test your Rake tasks with RSpec."
spec.homepage = "https://github.com/crismali/fantaskspec"
spec.license = "Apache"
spec.files = Dir["lib/**/*", "LICENSE", "README.md"]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "rake", ">= 10.0"
spec.add_dependency "rspec", "~> 3.4"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "pry"
spec.add_development_dependency "pry-nav"
spec.add_development_dependency "pry-doc"
spec.add_development_dependency "appraisal"
end