phcdevworks_notifications 2.3.0 → 3.0.0
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 +4 -4
- data/MIT-LICENSE +20 -20
- data/README.md +7 -2
- data/Rakefile +8 -8
- data/app/helpers/phcdevworks_notifications/application_helper.rb +0 -0
- data/app/views/phcdevworks_notifications/bootstrap/_notifications.html.erb +0 -0
- data/app/views/phcdevworks_notifications/bootstrap/_validations.html.erb +0 -0
- data/app/views/phcdevworks_notifications/custom/_notifications.html.erb +0 -0
- data/app/views/phcdevworks_notifications/metronic/_notifications.html.erb +0 -0
- data/app/views/phcdevworks_notifications/metronic/_validations.html.erb +0 -0
- data/lib/phcdevworks_notifications/engine.rb +4 -12
- data/lib/phcdevworks_notifications/version.rb +3 -3
- data/lib/phcdevworks_notifications.rb +6 -6
- data/lib/tasks/phcdevworks_notifications_tasks.rake +4 -4
- metadata +9 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 050534af49240652196e7c79021fb8b392b31899da3d1fa657299e049147a518
|
4
|
+
data.tar.gz: 79b1d967212c484518ec9634921af0fc9017c61af3cd7a6caa920148eee12398
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6d3ea87e3f0000abb8d87cecc60c4731d52d2c89ec14e612845e8560e7e0877e576f39ea26ea2762a9f812c96b84e10f33b110bf5974c9355076b792b8f5716
|
7
|
+
data.tar.gz: 68b28d192237056611ab108cda3b82e17054c1186f5dda76b0ec207703617852050ffeb10c3a59c8c2511df7f0ebfb3807c21a9f505c410cd567bef291f4fba9
|
data/MIT-LICENSE
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
Copyright
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
Copyright 2022 PHCDevworks
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
-
### PHCDevworks Notifications for Rails
|
2
|
-
|
1
|
+
### PHCDevworks Notifications for Rails 7 (Form Validation & Notification Engine)
|
2
|
+
|
3
|
+
PHCDevworks Notifications Rails 7 engine with helpers for alerts and form validation notifications.
|
3
4
|
|
4
5
|
* Add alert and form validation helpers ruby on rails.
|
5
6
|
* Setup in seconds with only one line of code in the application_helper file.
|
@@ -24,3 +25,7 @@ Add the line of code below to your app/views/layouts/application.rb
|
|
24
25
|
Add the line of code below to your _form.rb file. Change @example_object to the same one on your form.
|
25
26
|
|
26
27
|
<%= render 'phcdevworks_notifications/bootstrap/validations', :object => @example_object %>
|
28
|
+
|
29
|
+
### Status
|
30
|
+
|
31
|
+
[](https://badge.fury.io/rb/phcdevworks_notifications) [](https://github.com/phcdevworks/phcdevworks_notifications/actions/workflows/publish_gem_github_com.yml) [](https://github.com/phcdevworks/phcdevworks_notifications/actions/workflows/publish_gem_rubygems_org.yml)
|
data/Rakefile
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
require "bundler/setup"
|
2
|
-
|
3
|
-
APP_RAKEFILE = File.expand_path("spec/test_app/Rakefile", __dir__)
|
4
|
-
load "rails/tasks/engine.rake"
|
5
|
-
|
6
|
-
load "rails/tasks/statistics.rake"
|
7
|
-
|
8
|
-
require "bundler/gem_tasks"
|
1
|
+
require "bundler/setup"
|
2
|
+
|
3
|
+
APP_RAKEFILE = File.expand_path("spec/test_app/Rakefile", __dir__)
|
4
|
+
load "rails/tasks/engine.rake"
|
5
|
+
|
6
|
+
load "rails/tasks/statistics.rake"
|
7
|
+
|
8
|
+
require "bundler/gem_tasks"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,12 +1,4 @@
|
|
1
|
-
module PhcdevworksNotifications
|
2
|
-
class Engine < ::Rails::Engine
|
3
|
-
|
4
|
-
|
5
|
-
require "phcthemes_admin_panel_pack"
|
6
|
-
require "phcthemes_web_theme_pack"
|
7
|
-
|
8
|
-
# Plugin Namespace
|
9
|
-
isolate_namespace PhcdevworksNotifications
|
10
|
-
|
11
|
-
end
|
12
|
-
end
|
1
|
+
module PhcdevworksNotifications
|
2
|
+
class Engine < ::Rails::Engine
|
3
|
+
end
|
4
|
+
end
|
@@ -1,3 +1,3 @@
|
|
1
|
-
module PhcdevworksNotifications
|
2
|
-
VERSION =
|
3
|
-
end
|
1
|
+
module PhcdevworksNotifications
|
2
|
+
VERSION = "3.0.0"
|
3
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
require "phcdevworks_notifications/version"
|
2
|
-
require "phcdevworks_notifications/engine"
|
3
|
-
|
4
|
-
module PhcdevworksNotifications
|
5
|
-
# Your code goes here...
|
6
|
-
end
|
1
|
+
require "phcdevworks_notifications/version"
|
2
|
+
require "phcdevworks_notifications/engine"
|
3
|
+
|
4
|
+
module PhcdevworksNotifications
|
5
|
+
# Your code goes here...
|
6
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# desc "Explaining what the task does"
|
2
|
-
# task :phcdevworks_notifications do
|
3
|
-
# # Task goes here
|
4
|
-
# end
|
1
|
+
# desc "Explaining what the task does"
|
2
|
+
# task :phcdevworks_notifications do
|
3
|
+
# # Task goes here
|
4
|
+
# end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phcdevworks_notifications
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PHCDevworks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '7.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '7.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: phcthemes_admin_panel_pack
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '5.1'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '5.1'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: phcthemes_web_theme_pack
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '5.0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '5.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: sqlite3
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -90,7 +90,6 @@ homepage: https://phcdevworks.com/
|
|
90
90
|
licenses:
|
91
91
|
- MIT
|
92
92
|
metadata:
|
93
|
-
allowed_push_host: https://rubygems.org/
|
94
93
|
homepage_uri: https://phcdevworks.com/
|
95
94
|
source_code_uri: https://github.com/phcdevworks/phcdevworks_notifications
|
96
95
|
changelog_uri: https://github.com/phcdevworks/phcdevworks_notifications/releases
|
@@ -109,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
108
|
- !ruby/object:Gem::Version
|
110
109
|
version: '0'
|
111
110
|
requirements: []
|
112
|
-
rubygems_version: 3.
|
111
|
+
rubygems_version: 3.0.3.1
|
113
112
|
signing_key:
|
114
113
|
specification_version: 4
|
115
114
|
summary: PHCDevworks - Helpers - Notifications
|