forked from nathankot/webstub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebstub.gemspec
More file actions
19 lines (16 loc) · 732 Bytes
/
webstub.gemspec
File metadata and controls
19 lines (16 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.join(File.dirname(__FILE__), "lib/webstub/version")
Gem::Specification.new do |gem|
gem.authors = ["Matt Green"]
gem.email = ["mattgreenrocks@gmail.com"]
gem.description = "Easily stub out HTTP responses in RubyMotion specs"
gem.summary = "Easily stub out HTTP responses in RubyMotion specs"
gem.homepage = "https://github.com/mattgreen/webstub"
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "webstub"
gem.require_paths = ["lib"]
gem.version = WebStub::VERSION
gem.add_development_dependency "rake"
gem.add_development_dependency "rubygems-tasks"
end