-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmailinator_client.gemspec
More file actions
25 lines (21 loc) · 1.08 KB
/
Copy pathmailinator_client.gemspec
File metadata and controls
25 lines (21 loc) · 1.08 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
$LOAD_PATH.push(File.expand_path("../lib", __FILE__))
require "mailinator_client/version"
Gem::Specification.new do |gem|
gem.name = "mailinator_client"
gem.authors = ["Manybrain, LLC"]
gem.email = ["support@manybrain.com"]
gem.summary = %q{Provides a simple ruby wrapper around the Mailinator REST API}
gem.description = %q{Easily use the Mailinator through its REST API with Ruby}
gem.homepage = "https://github.com/manybrain/mailinator-ruby-client"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ["lib"]
gem.version = MailinatorClient::VERSION
gem.licenses = ["MIT"]
gem.required_ruby_version = ">= 2.1"
gem.add_dependency "httparty", ">= 0.21", "< 0.22"
gem.add_development_dependency "minitest", ">= 5.25", "< 7.0"
gem.add_development_dependency "rake", ">= 13.0", "< 14.0"
gem.add_development_dependency "webmock", ">= 3.26", "< 4.0"
end