-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseven_api.gemspec
More file actions
22 lines (20 loc) · 897 Bytes
/
seven_api.gemspec
File metadata and controls
22 lines (20 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'seven_api/version'
Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler', '~> 2.4'
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_development_dependency 'rspec', '~> 3.13'
spec.add_runtime_dependency 'faraday', '~> 2.9'
spec.author = 'seven communications GmbH & Co. KG'
spec.description = 'Send SMS & text-to-speech messages via the seven SMS Gateway.'
spec.email = 'support@seven.io'
spec.files = `git ls-files`.split("\n")
spec.homepage = 'https://github.com/seven-io/ruby-client'
spec.license = 'MIT'
spec.name = 'seven_api'
spec.required_ruby_version = '>= 3.1.0'
spec.summary = 'Official API Client for the seven SMS Gateway'
spec.test_files = Dir['spec/**/*']
spec.version = SevenApi::VERSION
end