rack-push-notification 0.5.1 → 0.5.2

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: 8e37ea2262361fbc38416172d702e91c8f0ea806
4
- data.tar.gz: a05e2df8ab68ed56d7640d9962e90790250c10de
3
+ metadata.gz: 09a2938f8f1694ee5ff49eb651c751f20014a785
4
+ data.tar.gz: e09c9c5a131f3770866821a147c7581b2ec25133
5
5
  SHA512:
6
- metadata.gz: e25dbdccbfc340b2a4510a9104ee50bdeae9eb37ae7e04fba68ec2cf70e9939ebc1c87f04bb94f599cb748da6fc9dca1a8f00194d17183965a1b4b571b9fbc7b
7
- data.tar.gz: e7905852954d9ec27363e5c472b2d7f94d3a5f3024d0ff2e46578214e3bc03e75b77676efeb5dafd3a836809a456b80e86e0021cd401eaa9b491ecf596cd9434
6
+ metadata.gz: 2378df882b015959c858a9c3bb8c2ae529a161c88792c1a6fa7007452bdc3033efe7eec7ad33958d246de59868520d61b136c007e7bd6061cd7b8a594f9b24fb
7
+ data.tar.gz: b2b3b4fe14a2e7af8539e8f3a0fce84e5d78296c39e39b6799aaa9d9675ee0a015d642c1a2a1bbc595792336baa4a92adcf0a0cebb68a287537728cb88ce002f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-push-notification (0.5.1)
4
+ rack-push-notification (0.5.2)
5
5
  rack (~> 1.4)
6
6
  rack-contrib (~> 1.1)
7
7
  sequel (>= 3.0)
@@ -11,22 +11,26 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- diff-lcs (1.2.4)
14
+ diff-lcs (1.2.5)
15
15
  rack (1.5.2)
16
16
  rack-contrib (1.1.0)
17
17
  rack (>= 0.9.1)
18
18
  rack-protection (1.5.3)
19
19
  rack
20
- rake (10.0.4)
21
- rspec (2.13.0)
22
- rspec-core (~> 2.13.0)
23
- rspec-expectations (~> 2.13.0)
24
- rspec-mocks (~> 2.13.0)
25
- rspec-core (2.13.1)
26
- rspec-expectations (2.13.0)
27
- diff-lcs (>= 1.1.3, < 2.0)
28
- rspec-mocks (2.13.1)
29
- sequel (4.13.0)
20
+ rake (10.4.2)
21
+ rspec (3.0.0)
22
+ rspec-core (~> 3.0.0)
23
+ rspec-expectations (~> 3.0.0)
24
+ rspec-mocks (~> 3.0.0)
25
+ rspec-core (3.0.4)
26
+ rspec-support (~> 3.0.0)
27
+ rspec-expectations (3.0.4)
28
+ diff-lcs (>= 1.2.0, < 2.0)
29
+ rspec-support (~> 3.0.0)
30
+ rspec-mocks (3.0.4)
31
+ rspec-support (~> 3.0.0)
32
+ rspec-support (3.0.4)
33
+ sequel (4.17.0)
30
34
  sinatra (1.4.5)
31
35
  rack (~> 1.4)
32
36
  rack-protection (~> 1.4)
@@ -17,7 +17,8 @@ module Rack
17
17
 
18
18
  configure do
19
19
  if ENV['DATABASE_URL']
20
- Sequel.extension :pg_inet, :pg_array, :migration
20
+ Sequel.extension :pg_inet, :migration
21
+ Sequel::Model.db.extension :pg_array
21
22
 
22
23
  DB = Sequel.connect(ENV['DATABASE_URL'])
23
24
  DB.extend Sequel::Postgres::PGArray::DatabaseMethods
Binary file
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.authors = ["Mattt Thompson"]
7
7
  s.email = "m@mattt.me"
8
8
  s.homepage = "http://mattt.me"
9
- s.version = "0.5.1"
9
+ s.version = "0.5.2"
10
10
  s.platform = Gem::Platform::RUBY
11
11
  s.summary = "Rack::PushNotification"
12
12
  s.description = "Generate a REST API for registering and querying push notification device tokens."
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-push-notification
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattt Thompson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-30 00:00:00.000000000 Z
11
+ date: 2015-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -123,6 +123,7 @@ files:
123
123
  - ./lib/rack/push-notification.rb
124
124
  - ./LICENSE
125
125
  - ./rack-push-notification-0.5.0.gem
126
+ - ./rack-push-notification-0.5.1.gem
126
127
  - ./rack-push-notification.gemspec
127
128
  - ./Rakefile
128
129
  - ./README.md