Sha256: 4d8a68c17ebc71a37f1ddc2a4519304d75d82577037d178b236fa1e266e5c0d0

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pubnub-5.3.4 pubnub.gemspec
pubnub-5.3.3 pubnub.gemspec