-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrspec-http.gemspec
26 lines (21 loc) · 1002 Bytes
/
rspec-http.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rspec/http/version"
Gem::Specification.new do |s|
s.name = "rspec-http"
s.version = RSpec::Http::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Sidu Ponnappa", "Niranjan Paranjape"]
s.email = "[email protected]"
s.homepage = "http://c42.in/open_source"
s.summary = "RSpec HTTP is an extension library that makes it easier to write specs for HTTP/REST APIs"
s.description = "RSpec HTTP is an extension library that makes it easier to write specs for HTTP/REST APIs"
s.files = `git ls-files`.split("\n") - ['.gitignore']
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.extra_rdoc_files = [ "README.rdoc" ]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.add_development_dependency "rake"
s.add_runtime_dependency "rspec", "~> 3.0"
s.add_runtime_dependency "rack", "~> 1.0"
end