custom_inputs 0.1.0 → 0.1.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/Gemfile.lock +1 -1
- data/README.md +7 -0
- data/custom_inputs.gemspec +11 -3
- data/lib/custom_inputs/version.rb +1 -1
- metadata +14 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d928ecaf1b92c94a43e91d3406e7fcfe22e04ac5e238db8a8ecbd1eba02f429
|
|
4
|
+
data.tar.gz: aec812443614a4639b00afea97505fd2d7ceebbcbe3c5af5ef1a00814dac7b2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6e63cfa849a3a73e4ab86f9054e8bca16bb08f042bd5fe5ab91f34cac579b610127eb1d5e465f02ab19e95d3512c17a7dcb9f70cb62d6f573c7a9e13f39c978
|
|
7
|
+
data.tar.gz: 611018f7b07ab8d2241379513fe48e30f0501e591a5dfa26f1d80fdf701d23d52c58bd24f455d42c71fb380b725b551c6afee8c785c37885de3acf7a2d40301f
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -11,6 +11,13 @@ If you are using any other theme you can ignore the css files of this gem and im
|
|
|
11
11
|
|
|
12
12
|
*Note:* Although these inputs are being actively used in a production app you should use them at your own risk.
|
|
13
13
|
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
**Demo App:** https://custom-inputs-demo.herokuapp.com/admin \
|
|
18
|
+
**Demo User:** admin@example.com / password
|
|
19
|
+
|
|
20
|
+
|
|
14
21
|
- [Array input](#array-input)
|
|
15
22
|
- [List input](#list-input)
|
|
16
23
|
|
data/custom_inputs.gemspec
CHANGED
|
@@ -11,8 +11,15 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.authors = ["Hasan Ali Ayar"]
|
|
12
12
|
spec.email = ["hasan.a.ayar@gmail.com"]
|
|
13
13
|
|
|
14
|
-
spec.summary =
|
|
15
|
-
|
|
14
|
+
spec.summary = <<SUMMARY
|
|
15
|
+
Custom form input fields for active admin + formtastic."
|
|
16
|
+
|
|
17
|
+
Demo app: https://custom-inputs-demo.herokuapp.com/admin
|
|
18
|
+
Demo user: admin@example.com / password
|
|
19
|
+
|
|
20
|
+
SUMMARY
|
|
21
|
+
spec.description = <<DESC
|
|
22
|
+
I've been using Active Admin for developing admin panels for my clients.
|
|
16
23
|
There are number of custom input components accumulated along the way.
|
|
17
24
|
|
|
18
25
|
I've decided to make a gem and share all these custom input components that I think may be very useful.
|
|
@@ -21,7 +28,8 @@ These inputs are optimised for Arctic Admin theme.
|
|
|
21
28
|
If you are using any other theme you can ignore the css files of this gem and implement your own css.
|
|
22
29
|
|
|
23
30
|
Note: Although these inputs are being actively used in a production app you should use them at your own risk.
|
|
24
|
-
|
|
31
|
+
DESC
|
|
32
|
+
|
|
25
33
|
spec.homepage = "https://github.com/hasan-aa/custom_inputs"
|
|
26
34
|
spec.license = "MIT"
|
|
27
35
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: custom_inputs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hasan Ali Ayar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-03
|
|
11
|
+
date: 2020-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -52,7 +52,16 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
55
|
+
description: |
|
|
56
|
+
I've been using Active Admin for developing admin panels for my clients.
|
|
57
|
+
There are number of custom input components accumulated along the way.
|
|
58
|
+
|
|
59
|
+
I've decided to make a gem and share all these custom input components that I think may be very useful.
|
|
60
|
+
|
|
61
|
+
These inputs are optimised for Arctic Admin theme.
|
|
62
|
+
If you are using any other theme you can ignore the css files of this gem and implement your own css.
|
|
63
|
+
|
|
64
|
+
Note: Although these inputs are being actively used in a production app you should use them at your own risk.
|
|
56
65
|
email:
|
|
57
66
|
- hasan.a.ayar@gmail.com
|
|
58
67
|
executables: []
|
|
@@ -109,5 +118,6 @@ requirements: []
|
|
|
109
118
|
rubygems_version: 3.0.3
|
|
110
119
|
signing_key:
|
|
111
120
|
specification_version: 4
|
|
112
|
-
summary: Custom form input fields for active admin + formtastic.
|
|
121
|
+
summary: 'Custom form input fields for active admin + formtastic." Demo app: https://custom-inputs-demo.herokuapp.com/admin
|
|
122
|
+
Demo user: admin@example.com / password'
|
|
113
123
|
test_files: []
|