-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwamp_client.gemspec
More file actions
33 lines (28 loc) · 1.36 KB
/
wamp_client.gemspec
File metadata and controls
33 lines (28 loc) · 1.36 KB
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
29
30
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wamp/client/version'
Gem::Specification.new do |spec|
spec.name = 'wamp_client'
spec.version = Wamp::Client::VERSION
spec.authors = ['Eric Chapman']
spec.email = ['eric.chappy@gmail.com']
spec.summary = %q{Web Application Messaging Protocol Client}
spec.description = %q{An implementation of The Web Application Messaging Protocol (WAMP)}
spec.homepage = 'https://github.com/ericchapman/ruby_wamp_client'
spec.license = 'MIT'
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_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'rspec-eventmachine', '~> 0.2'
spec.add_development_dependency 'simplecov', '~> 0.12'
spec.add_development_dependency 'codecov', '~> 0.1.9'
spec.add_development_dependency 'faye-websocket', '~> 0.10.4'
spec.required_ruby_version = '>= 2.0'
spec.add_dependency 'websocket-eventmachine-client', '~> 1.1'
spec.add_dependency 'json', '~> 2.0'
end