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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09a2938f8f1694ee5ff49eb651c751f20014a785
4
- data.tar.gz: e09c9c5a131f3770866821a147c7581b2ec25133
3
+ metadata.gz: 05286ab87d68a0f660e6d6241bfffe08844243ac
4
+ data.tar.gz: e8026c2ace0bcbeab7a80cf6a114c38633ff10b1
5
5
  SHA512:
6
- metadata.gz: 2378df882b015959c858a9c3bb8c2ae529a161c88792c1a6fa7007452bdc3033efe7eec7ad33958d246de59868520d61b136c007e7bd6061cd7b8a594f9b24fb
7
- data.tar.gz: b2b3b4fe14a2e7af8539e8f3a0fce84e5d78296c39e39b6799aaa9d9675ee0a015d642c1a2a1bbc595792336baa4a92adcf0a0cebb68a287537728cb88ce002f
6
+ metadata.gz: fb79e1cd9b958a3dcb8ab241247667e7bd046c231e2d65a6f053441cd00ce8b06a9df07b533dbad391326636eb9f38ad955a2bb61583473e48eaa12c4dd534b6
7
+ data.tar.gz: 58fbef1c87adc86f71bec550fc75a4dbb726488859c2fac56c1044f507951f0fe8706c792ee0756516cb6b5782558a1b61b69a55f1af082640b22cf224b6af28
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-push-notification (0.5.2)
4
+ rack-push-notification (0.5.3)
5
5
  rack (~> 1.4)
6
6
  rack-contrib (~> 1.1)
7
7
  sequel (>= 3.0)
@@ -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.2"
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.2
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-05 00:00:00.000000000 Z
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