forked from vcr/vcr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcr.gemspec
23 lines (19 loc) · 947 Bytes
/
vcr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "vcr/version"
Gem::Specification.new do |s|
s.name = "vcr"
s.homepage = "https://github.com/vcr/vcr"
s.license = "MIT"
s.authors = ["Myron Marston"]
s.summary = "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests."
s.description = "VCR provides a simple API to record and replay your test suite's HTTP interactions. It works with a variety of HTTP client libraries, HTTP stubbing libraries and testing frameworks."
s.email = "[email protected]"
s.require_path = "lib"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.version = VCR.version
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 1.8.7'
s.required_rubygems_version = '>= 1.3.5'
# Development dependencies are listed in the Gemfile.
end