rack-push-notification 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +16 -12
- data/lib/rack/push-notification.rb +2 -1
- data/rack-push-notification-0.5.1.gem +0 -0
- data/rack-push-notification.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 09a2938f8f1694ee5ff49eb651c751f20014a785
|
4
|
+
data.tar.gz: e09c9c5a131f3770866821a147c7581b2ec25133
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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.
|
21
|
-
rspec (
|
22
|
-
rspec-core (~>
|
23
|
-
rspec-expectations (~>
|
24
|
-
rspec-mocks (~>
|
25
|
-
rspec-core (
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
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, :
|
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.
|
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.
|
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:
|
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
|