rack-push-notification 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/rack/push-notification.rb +1 -1
- data/rack-push-notification-0.5.2.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: 05286ab87d68a0f660e6d6241bfffe08844243ac
|
4
|
+
data.tar.gz: e8026c2ace0bcbeab7a80cf6a114c38633ff10b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb79e1cd9b958a3dcb8ab241247667e7bd046c231e2d65a6f053441cd00ce8b06a9df07b533dbad391326636eb9f38ad955a2bb61583473e48eaa12c4dd534b6
|
7
|
+
data.tar.gz: 58fbef1c87adc86f71bec550fc75a4dbb726488859c2fac56c1044f507951f0fe8706c792ee0756516cb6b5782558a1b61b69a55f1af082640b22cf224b6af28
|
data/Gemfile.lock
CHANGED
@@ -18,9 +18,9 @@ module Rack
|
|
18
18
|
configure do
|
19
19
|
if ENV['DATABASE_URL']
|
20
20
|
Sequel.extension :pg_inet, :migration
|
21
|
-
Sequel::Model.db.extension :pg_array
|
22
21
|
|
23
22
|
DB = Sequel.connect(ENV['DATABASE_URL'])
|
23
|
+
Sequel::Model.db.extension :pg_array
|
24
24
|
DB.extend Sequel::Postgres::PGArray::DatabaseMethods
|
25
25
|
Sequel::Migrator.run(DB, ::File.join(::File.dirname(__FILE__), 'push-notification/migrations'), table: 'push_notification_schema_info')
|
26
26
|
end
|
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.3"
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattt Thompson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -124,6 +124,7 @@ files:
|
|
124
124
|
- ./LICENSE
|
125
125
|
- ./rack-push-notification-0.5.0.gem
|
126
126
|
- ./rack-push-notification-0.5.1.gem
|
127
|
+
- ./rack-push-notification-0.5.2.gem
|
127
128
|
- ./rack-push-notification.gemspec
|
128
129
|
- ./Rakefile
|
129
130
|
- ./README.md
|