forked from calonso/ruby-push-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-push-notifications.gemspec
27 lines (23 loc) · 1.14 KB
/
ruby-push-notifications.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "ruby-push-notifications"
spec.version = "1.3.0"
spec.authors = ['Carlos Alonso']
spec.summary = %q{iOS, Android and Windows Phone Push Notifications made easy!}
spec.description = %q{Easy to use gem to send iOS, Android and Windows Phone Push notifications}
spec.homepage = 'https://github.com/calonso/ruby-push-notifications'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.0.0'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'builder', '~> 3.0'
spec.add_development_dependency 'bundler', '~> 1.6'
# spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 10.4'
spec.add_development_dependency 'simplecov', '~> 0.12.0'
spec.add_development_dependency 'rspec', '~> 3.2'
spec.add_development_dependency 'factory_girl', '~> 4.0'
spec.add_development_dependency 'webmock', '~> 1.20'
end