-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathelk.gemspec
36 lines (26 loc) · 1.04 KB
/
elk.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
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true
$:.unshift File.expand_path("../lib", __FILE__)
require 'elk/version'
spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "elk"
s.version = Elk::VERSION
s.author = "Johan Eckerström"
s.email = "[email protected]"
s.summary = "Client library for 46elks SMS/MMS/Voice service."
s.description = "Elk can be used to allocate a phone numbers, manage the numbers and send SMS through these numbers."
s.homepage = "https://github.com/jage/elk"
s.requirements << 'API account at 46elks.com'
s.license = 'MIT'
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = ["README.MD", "MIT-LICENSE"]
s.required_ruby_version = ">= 2.3.0"
# elk dependencies
s.add_dependency("rest-client", "~> 2.0")
# Tests
s.add_development_dependency("rake", "~> 10.0")
s.add_development_dependency("rspec", "~> 3.0")
s.add_development_dependency("webmock", "~> 2.0")
s.require_path = 'lib'
s.files = %w(README.MD MIT-LICENSE) + Dir["{lib,spec}/**/*"]
end