-
Notifications
You must be signed in to change notification settings - Fork 61
/
pusher-client.gemspec
30 lines (26 loc) · 1.11 KB
/
pusher-client.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
29
30
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pusher-client/version'
Gem::Specification.new do |s|
s.name = 'pusher-client'
s.version = PusherClient::VERSION
s.authors = ["Pusher", "Logan Koester"]
s.email = ['[email protected]']
s.homepage = 'http://github.com/pusher/pusher-ruby-client'
s.summary = 'Client for consuming WebSockets from http://pusher.com'
s.description = 'Client for consuming WebSockets from http://pusher.com'
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.extra_rdoc_files = %w(LICENSE.txt README.rdoc)
s.require_paths = ['lib']
s.licenses = ['MIT']
s.add_runtime_dependency 'websocket', '~> 1.0'
s.add_runtime_dependency 'json'
s.add_development_dependency "rspec"
s.add_development_dependency "rake"
s.add_development_dependency "bundler"
end