File: websocket.gemspec

package info (click to toggle)
ruby-websocket 1.2.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 464 kB
  • sloc: ruby: 2,669; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'websocket/version'

Gem::Specification.new do |s|
  s.name        = 'websocket'
  s.version     = WebSocket::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Bernard Potocki']
  s.email       = ['bernard.potocki@imanel.org']
  s.homepage    = 'http://github.com/imanel/websocket-ruby'
  s.summary     = 'Universal Ruby library to handle WebSocket protocol'
  s.description = 'Universal Ruby library to handle WebSocket protocol'
  s.license     = 'MIT'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  s.require_paths = ['lib']

  s.required_ruby_version = '>= 2.0'
end