-
Notifications
You must be signed in to change notification settings - Fork 0
/
warp.gemspec
23 lines (19 loc) · 871 Bytes
/
warp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'warp/version'
Gem::Specification.new do |spec|
spec.name = "warp"
spec.version = Warp::VERSION
spec.authors = ["Thomas Drake-Brockman"]
spec.email = ["[email protected]"]
spec.summary = "Awesome RSpec matchers for testing your Rails applications."
spec.description = "Warp provides a selection of inteligent RSpec matchers for your model, controller and feature specifications."
spec.homepage = "https://github.com/thomasfedb/warp"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^(spec)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 1.9.2"
spec.add_runtime_dependency "rspec", ">= 2.14.0"
end