-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapproveapi.gemspec
More file actions
33 lines (25 loc) · 992 Bytes
/
approveapi.gemspec
File metadata and controls
33 lines (25 loc) · 992 Bytes
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
26
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
=begin
#ApproveAPI
#The simple API to request a user's approval on anything via email + sms.
Contact: hello@approveapi.com
=end
$:.push File.expand_path("../lib", __FILE__)
require "approveapi/version"
Gem::Specification.new do |s|
s.name = "approveapi"
s.version = ApproveAPI::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["ApproveAPI"]
s.email = ["hello@approveapi.com"]
s.homepage = "https://approveapi.com"
s.summary = "OpenAPI generated client, used internally by the official ruby client 'approveapi' gem."
s.description = "The simple API to request a user's approval on anything via email + sms."
s.license = "Unlicense"
s.required_ruby_version = ">= 1.9"
s.add_runtime_dependency 'approveapi_swagger', '~> 1.0', '>= 1.0.6'
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
s.test_files = []
s.executables = []
s.require_paths = ["lib"]
end