pusher 0.14.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +4 -2
- data/Gemfile.lock +3 -3
- data/README.md +4 -4
- data/pusher.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 611c7e51cc8a1c34197a394852f7f27d0f24683a
|
4
|
+
data.tar.gz: cac5986fea03e99ef82b425a892af9c9c5262bd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41a1e0a18ffc4543c81c8385dff3c5f735c63f0379d2fdba0c029c24eba706653687ab19172350458db1ca7a9fcca4a0173f938fe90973333f60c459619e1323
|
7
|
+
data.tar.gz: cf744ad3d1ae1e12262475fd9c64a111ab54e9c264c3a6c95a23cfe0dcda173361a89f02d560419ca21224b6dc2761c47e1b51115020853f459c173d1cba3497
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -2,7 +2,7 @@ PATH
|
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
4
|
pusher (0.12.0)
|
5
|
-
httpclient (~> 2.
|
5
|
+
httpclient (~> 2.4.0)
|
6
6
|
multi_json (~> 1.0)
|
7
7
|
signature (~> 0.1.6)
|
8
8
|
|
@@ -24,8 +24,8 @@ GEM
|
|
24
24
|
eventmachine (>= 1.0.0.beta.4)
|
25
25
|
eventmachine (1.0.3)
|
26
26
|
http_parser.rb (0.6.0.beta.2)
|
27
|
-
httpclient (2.
|
28
|
-
multi_json (1.
|
27
|
+
httpclient (2.4.0)
|
28
|
+
multi_json (1.10.1)
|
29
29
|
rack (1.5.2)
|
30
30
|
rake (10.1.0)
|
31
31
|
rspec (2.14.1)
|
data/README.md
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
Pusher gem
|
2
2
|
==========
|
3
3
|
|
4
|
-
[](http://travis-ci.org/pusher/pusher-gem)
|
5
5
|
|
6
6
|
## Installation & Configuration
|
7
7
|
|
8
8
|
Add pusher to your Gemfile, and then run `bundle install`
|
9
9
|
|
10
10
|
gem 'pusher'
|
11
|
-
|
11
|
+
|
12
12
|
or install via gem
|
13
13
|
|
14
14
|
gem install pusher
|
@@ -17,7 +17,7 @@ After registering at <http://pusher.com> configure your app with the security cr
|
|
17
17
|
|
18
18
|
### Global
|
19
19
|
|
20
|
-
The most standard way of configuring Pusher is to do it globally on the Pusher class.
|
20
|
+
The most standard way of configuring Pusher is to do it globally on the Pusher class.
|
21
21
|
|
22
22
|
Pusher.app_id = 'your-pusher-app-id'
|
23
23
|
Pusher.key = 'your-pusher-key'
|
@@ -98,7 +98,7 @@ All requests must be signed by using your secret key, which is handled automatic
|
|
98
98
|
|
99
99
|
# using the Pusher class
|
100
100
|
Pusher.get('url_without_app_id', params)
|
101
|
-
|
101
|
+
|
102
102
|
# using a client
|
103
103
|
pusher_client.post('url_without_app_id', params)
|
104
104
|
|
data/pusher.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "pusher"
|
6
|
-
s.version = "0.14.
|
6
|
+
s.version = "0.14.1"
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Pusher"]
|
9
9
|
s.email = ["support@pusher.com"]
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|
14
14
|
|
15
15
|
s.add_dependency "multi_json", "~> 1.0"
|
16
16
|
s.add_dependency 'signature', "~> 0.1.6"
|
17
|
-
s.add_dependency "httpclient", "~> 2.3
|
17
|
+
s.add_dependency "httpclient", "~> 2.3"
|
18
18
|
s.add_dependency "jruby-openssl" if defined?(JRUBY_VERSION)
|
19
19
|
|
20
20
|
s.add_development_dependency "rspec", "~> 2.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pusher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pusher
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 2.3
|
47
|
+
version: '2.3'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 2.3
|
54
|
+
version: '2.3'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
170
170
|
version: '0'
|
171
171
|
requirements: []
|
172
172
|
rubyforge_project:
|
173
|
-
rubygems_version: 2.
|
173
|
+
rubygems_version: 2.0.14
|
174
174
|
signing_key:
|
175
175
|
specification_version: 4
|
176
176
|
summary: Pusher API client
|