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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 529c89c30b29ce1e8ba4558f0efbab8e2983e898
4
- data.tar.gz: 328df39b09ed4f244a2a8576de2d4c16d7c6d53b
3
+ metadata.gz: 611c7e51cc8a1c34197a394852f7f27d0f24683a
4
+ data.tar.gz: cac5986fea03e99ef82b425a892af9c9c5262bd3
5
5
  SHA512:
6
- metadata.gz: 7d38ac2d891c4c5772f2f37511ff132a9258bff1fed9a2c23edddda00c034b3bca4b3d0d6673b45d3787271ac1366bf1d17382b7487167e3db9d87a2eff2d8cc
7
- data.tar.gz: e9ff5af00c144d87fbe2de78f88b7b5d54b82a16968b01377c75154950ba1eb4efc15a5e10c0df99f2acb2016adbd43980af97481ff5c8c97dbff44c2276d670
6
+ metadata.gz: 41a1e0a18ffc4543c81c8385dff3c5f735c63f0379d2fdba0c029c24eba706653687ab19172350458db1ca7a9fcca4a0173f938fe90973333f60c459619e1323
7
+ data.tar.gz: cf744ad3d1ae1e12262475fd9c64a111ab54e9c264c3a6c95a23cfe0dcda173361a89f02d560419ca21224b6dc2761c47e1b51115020853f459c173d1cba3497
data/.travis.yml CHANGED
@@ -4,10 +4,12 @@ rvm:
4
4
  - 1.8.7
5
5
  - 1.9.2
6
6
  - 1.9.3
7
+ - 2.0.0
8
+ - 2.1.1
9
+ - 2.1.2
7
10
  - jruby-18mode
8
11
  - jruby-19mode
9
- - rbx-18mode
10
- - rbx-19mode
12
+ - rbx-2
11
13
 
12
14
  matrix:
13
15
  allow_failures:
data/Gemfile.lock CHANGED
@@ -2,7 +2,7 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  pusher (0.12.0)
5
- httpclient (~> 2.3.0)
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.3.4.1)
28
- multi_json (1.7.8)
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
- [![Build Status](https://secure.travis-ci.org/pusher/pusher-gem.png?branch=master)](http://travis-ci.org/pusher/pusher-gem)
4
+ [![Build Status](https://secure.travis-ci.org/pusher/pusher-gem.svg?branch=master)](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.0"
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.0"
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.0
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-17 00:00:00.000000000 Z
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.0
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.0
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.1.11
173
+ rubygems_version: 2.0.14
174
174
  signing_key:
175
175
  specification_version: 4
176
176
  summary: Pusher API client