Sha256: f6ff29581ba46500fb8cf6dcc459b3d47c5d6fbd3f0587aee7a08a5d94cf79b4
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# -*- 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 = ['support@pusher.com'] 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pusher-client-0.6.2 | pusher-client.gemspec |
pusher-client-0.6.1 | pusher-client.gemspec |
pusher-client-0.6.0 | pusher-client.gemspec |