-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexception_notification_sns.gemspec
More file actions
28 lines (24 loc) · 1.11 KB
/
exception_notification_sns.gemspec
File metadata and controls
28 lines (24 loc) · 1.11 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
26
27
28
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'exception_notification_sns'
s.version = '0.2.0'
s.summary = 'exception_notification extension for aws sns v1'
s.description = 'exception_notification_sns gem is used for sending application extensions to aws sns.
It extends exception_notification gem, uses aws-sdk-v1 gem to push exception notificatons
to amazon sns'
s.required_ruby_version = '>= 2.2.2'
s.author = 'Matej Minažek'
s.email = 'matej.minazek@ingemark.com'
s.homepage = 'http://www.ingemark.com'
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.add_runtime_dependency 'aws-sdk-sns', '>= 1', '< 2'
s.add_runtime_dependency 'exception_notification', '4.2.1'
s.add_development_dependency 'factory_girl', '4.5'
s.add_development_dependency 'mocha', '~> 0.13.0'
s.add_development_dependency 'rails', '>= 4.0.0', '< 6'
s.add_development_dependency 'rspec', '3.4.0'
s.add_development_dependency 'rubocop', '~> 0.52'
s.add_development_dependency 'sqlite3', '1.3.10'
end