form_creation 0.0.8 → 0.0.9

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
  SHA256:
3
- metadata.gz: b1c33a4f366a564c541e70f3652c41bcc86c8e7552b1ab9be091f75869de92a9
4
- data.tar.gz: a087e8f78802e934385e6fbfad9ac174a228c2cea68d2e86f5a7cf9668a7d9d8
3
+ metadata.gz: 45145cb36243c500e2d67deaaeaa879d3e691e9b447dace546cf3ed29c75549b
4
+ data.tar.gz: cf33e500856cbedf0a8bda1d4af6bd603e153131b41c8dd486fd18e710abd885
5
5
  SHA512:
6
- metadata.gz: 6f564dac1b8867e6ba17a857d662e37df7298da1731e35c50dacbb6d4d7885c86e953375792c33e997907a4bad6746d98cb48740baf405138e06c1220745d75a
7
- data.tar.gz: 7ec17edea8e99cd9c936c5edba369e68887b94af65238550b9bb25ecb79e2bf94095c013ae93d2528059e184b69cf2fc77859613f65564a1e6c74ea88a78a58c
6
+ metadata.gz: ec198a775d52a0c4cf33c020bee49fa03f4d49f1f4735df725c82a5dcb1f399e44e3a7589b2383990b61065ea4faba2d3e870fbb721389c168b14ca7daa874ef
7
+ data.tar.gz: e1ba98df5360afb8a8a4d9bb72dc5ea03126394f8f5f585d75f10cb52035800e72a65d0eaf3dc12f6d6d3e6bf80773f42482d02564e79f717df44419144e3407
@@ -13,3 +13,17 @@
13
13
  //= require rails-ujs
14
14
  //= require activestorage
15
15
  //= require_tree .
16
+ $(document).ready(function(){
17
+ $("#new_post").validate({
18
+ rules: {
19
+ title: "required",
20
+ description: "required",
21
+ created_by: "required",
22
+ },
23
+ messages: {
24
+ title: "Please enter title",
25
+ description: "Please enter description",
26
+ created_by: "Please enter create_by",
27
+ },
28
+ });
29
+ });
@@ -1,17 +1,17 @@
1
1
  // Place all the behaviors and hooks related to the matching controller here.
2
2
  // All this logic will automatically be available in application.js.
3
3
 
4
- $(document).ready(function(){
5
- $("#new_post").validate({
6
- rules: {
7
- title: "required",
8
- description: "required",
9
- created_by: "required",
10
- },
11
- messages: {
12
- title: "Please enter title",
13
- description: "Please enter description",
14
- created_by: "Please enter create_by",
15
- },
16
- });
17
- });
4
+ // $(document).ready(function(){
5
+ // $("#new_post").validate({
6
+ // rules: {
7
+ // title: "required",
8
+ // description: "required",
9
+ // created_by: "required",
10
+ // },
11
+ // messages: {
12
+ // title: "Please enter title",
13
+ // description: "Please enter description",
14
+ // created_by: "Please enter create_by",
15
+ // },
16
+ // });
17
+ // });
@@ -1,3 +1,3 @@
1
1
  module FormCreation
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: form_creation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - madhubabu-nyros