forked from davefreiman/sinch-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsinch-ruby.gemspec
More file actions
24 lines (24 loc) · 1001 Bytes
/
sinch-ruby.gemspec
File metadata and controls
24 lines (24 loc) · 1001 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
Gem::Specification.new do |s|
s.name = 'sinch-ruby'
s.version = '0.2.2'
s.date = '2018-02-14'
s.summary = 'Sinch REST Api Wrapper'
s.description = 'A library for communicating with the Sinch Rest API'
s.authors = ['David Freiman']
s.email = 'dfreiman@feedbackapp.ca'
s.files = Dir['lib/**/*.rb']
s.homepage = 'https://github.com/davefreiman/sinch-ruby'
s.metadata = {
'source_code_url' => 'https://github.com/davefreiman/sinch-ruby',
'homepage_url' => 'https://github.com/davefreiman/sinch-ruby'
}
s.required_ruby_version = '>= 2.0'
s.license = 'MIT'
s.add_development_dependency 'rspec', '~> 3.2'
s.add_development_dependency 'activesupport', '~> 5.1'
s.add_development_dependency 'vcr', '~> 4.0'
s.add_development_dependency 'webmock', '~> 3.3'
s.add_development_dependency 'simplecov', '~> 0.14.0'
s.add_development_dependency 'rubocop', '~> 0.49.0'
s.add_runtime_dependency 'httparty', '~> 0.15.6'
end