fwt_push_notification_server 0.1.0.b2 → 0.1.0.b3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e524b1b91b8a0a3e090a75f398a11b643c00e08
|
|
4
|
+
data.tar.gz: c678d415500ee7bcc2acd706753af6a7a25de19c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7bbbd9ca4f0d8533491fc5048acdbcc881870f393b896d4be3e0c6ae08d431a4649fd2e0655e5b93e94041e74014b942a727e0f4b82b3860cae613510f6b516
|
|
7
|
+
data.tar.gz: 81be126b2be7c9015465b061e894f6b7dd1b30cc98a3f6ff01a629073de60a730411692f2ad48ac6d14d79bfff489ce6cd0983c1a159183aa6c93dfac7693612
|
|
@@ -28,7 +28,11 @@ module FwtPushNotificationServer
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def user_info_params
|
|
31
|
-
params[:user].
|
|
31
|
+
unless params[:user].nil? && FwtPushNotificationServer.permitted_user_attributes.nil?
|
|
32
|
+
params[:user].permit(FwtPushNotificationServer.permitted_user_attributes)
|
|
33
|
+
else
|
|
34
|
+
nil
|
|
35
|
+
end
|
|
32
36
|
end
|
|
33
37
|
|
|
34
38
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fwt_push_notification_server
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.b3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kamil Kocemba
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-10-
|
|
11
|
+
date: 2013-10-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
version: 1.3.1
|
|
141
141
|
requirements: []
|
|
142
142
|
rubyforge_project:
|
|
143
|
-
rubygems_version: 2.
|
|
143
|
+
rubygems_version: 2.1.8
|
|
144
144
|
signing_key:
|
|
145
145
|
specification_version: 4
|
|
146
146
|
summary: Rails engine to make push notifications a bit easier.
|