forked from pubnub/ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubnub.gemspec
28 lines (25 loc) · 1.11 KB
/
pubnub.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pubnub/version'
Gem::Specification.new do |spec|
spec.name = 'pubnub'
spec.version = Pubnub::VERSION
spec.authors = ['PubNub']
spec.email = ['support@pubnub.com']
spec.summary = 'PubNub Official Ruby gem.'
spec.description = 'Ruby anywhere in the world in 250ms with PubNub!'
spec.homepage = 'https://github.com/pubnub/ruby'
spec.licenses = ['LicenseRef-LICENSE.txt']
spec.files = `git ls-files -z`.split("\x0").grep_v(/^(test|spec|fixtures)/)
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.required_ruby_version = '>= 3.0.0'
spec.add_dependency 'addressable', '>= 2.0.0'
spec.add_dependency 'concurrent-ruby', '~> 1.1.5'
spec.add_dependency 'concurrent-ruby-edge', '~> 0.5.0'
spec.add_dependency 'dry-validation', '~> 1.0'
spec.add_dependency 'httpclient', '~> 2.8', '>= 2.8.3'
spec.add_dependency 'json', '>= 2.2.0', '< 3'
spec.add_dependency 'timers', '>= 4.3.0'
end