Skip to content

Commit

Permalink
Update .gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
collimarco committed Nov 26, 2022
1 parent a5a71db commit ef1ebb3
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions web-push.gemspec
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'web_push/version'
require_relative 'lib/web_push/version'

Gem::Specification.new do |spec|
spec.name = 'web-push'
spec.version = WebPush::VERSION
spec.authors = ['zaru@sakuraba']
spec.email = ['[email protected]']
spec.name = 'web-push'
spec.version = WebPush::VERSION
spec.authors = ['zaru', 'collimarco']
spec.email = ['[email protected]']

spec.summary = 'Encryption Utilities for Web Push payload. '
spec.homepage = 'https://github.com/zaru/webpush'
spec.summary = 'Web Push library for Ruby (RFC8030)'
spec.homepage = 'https://github.com/pushpad/web-push'

spec.files = `git ls-files`.split("\n")

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.2'

spec.add_dependency 'hkdf', '~> 0.2'
Expand Down

0 comments on commit ef1ebb3

Please sign in to comment.