dynamic_table 0.1.0 → 0.2.1
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/app/assets/javascripts/dynamic_table.js +8 -0
- data/lib/dynamic_table/engine.rb +0 -2
- data/lib/dynamic_table/version.rb +1 -1
- data/lib/dynamic_table.rb +1 -3
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ea59d401a991922d41f51fa61bf6de67c7750c4f2dfb9c587760a502daf350f
|
4
|
+
data.tar.gz: db86615924942018f954cdd9df44b2007f91b55910db7fadffa31328a4806189
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad5b00ef96f38f48d4e8f97167cfa44c39d8b59fe2e34fe306a3204f9a92c2ccb0475c05e3667981ec2961fac86c83c0528eb1496807bf3caeca604a562b0ca6
|
7
|
+
data.tar.gz: e8455de77ee6106671e7aefeb77b2cefd2936203524ac23cdcac0e8b6018950d773ef3cf3caccbda77d8cb5a99dfc1b167f404fee0f018121dae712ba759ec4f
|
@@ -1,3 +1,11 @@
|
|
1
|
+
/**
|
2
|
+
* @version: 0.2
|
3
|
+
* @author: Jayanth Ravindarn
|
4
|
+
* @copyright: Copyright (c) 2024 Jayanth Ravindran. All rights reserved.
|
5
|
+
* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php
|
6
|
+
* @website: https://github.com/jravz/dynamic_table
|
7
|
+
*/
|
8
|
+
// Following the UMD template https://github.com/umdjs/umd/blob/master/templates/returnExportsGlobal.js
|
1
9
|
(function(root, factory) {
|
2
10
|
if (typeof define === 'function' && define.amd) {
|
3
11
|
define([], factory);
|
data/lib/dynamic_table/engine.rb
CHANGED
@@ -1,9 +1,7 @@
|
|
1
1
|
module DynamicTable
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
initializer "dynamic_table.assets.precompile" do |app|
|
4
|
-
puts "DynamicTable Engine Loaded" # Debugging statemen
|
5
4
|
app.config.assets.precompile += %w(dynamic_table.scss dynamic_table.js)
|
6
5
|
end
|
7
|
-
puts "DynamicTable Engine Loaded2" # Debugging statemen
|
8
6
|
end
|
9
7
|
end
|
data/lib/dynamic_table.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dynamic_table
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jayanth
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
14
|
This GEM is an attempt to create editable tables wherein cells may contain text, dates, select,decimals and so on.
|
@@ -29,6 +29,9 @@ homepage:
|
|
29
29
|
licenses: []
|
30
30
|
metadata:
|
31
31
|
allowed_push_host: https://rubygems.org
|
32
|
+
homepage_uri: https://github.com/jravz/dynamic_table
|
33
|
+
source_code_uri: https://github.com/jravz/dynamic_table
|
34
|
+
changelog_uri: https://github.com/jravz/dynamic_table
|
32
35
|
post_install_message:
|
33
36
|
rdoc_options: []
|
34
37
|
require_paths:
|