catabler 1.0.0.pre.beta15.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +27 -0
- data/Rakefile +8 -0
- data/app/assets/javascript/tabler.esm.js +8326 -0
- data/app/assets/javascript/tabler.esm.min.js +15 -0
- data/app/assets/javascript/tabler.js +8387 -0
- data/app/assets/javascript/tabler.min.js +15 -0
- data/app/assets/stylesheets/tabler.css +22420 -0
- data/app/assets/stylesheets/tabler.min.css +14 -0
- data/config/routes.rb +2 -0
- data/lib/catabler/engine.rb +4 -0
- data/lib/catabler/version.rb +3 -0
- data/lib/catabler.rb +6 -0
- data/lib/tasks/catabler_tasks.rake +4 -0
- metadata +102 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 61bb7b29bc975b37069bb38cf622915301ae63149d52df30d6b84c9d2ae57662
|
4
|
+
data.tar.gz: dcb51b0a93fdea0d620784b2014fd33fd042efb1083532a2c75a0c4e51c21382
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f14dc82ed4640d4c063865e63e60fa62c60de0b23374447a318eb88cf69ed9f5be5e8f81e1eb547d956336f828098e25a18a75fd7b0487dc6c9d7a760fb7881b
|
7
|
+
data.tar.gz: a16b3f8856abbf356dc9d5eccc45379745be53a8bd806995a804d2a77137ea51a7d096548c316dd5751a7e30246f98691366a4272a20c91235d63b70d592e4b4
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright Yuriy Kirillov
|
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
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# Catabler
|
2
|
+
[Tabler](https://tabler.io/) ruby gem for Ruby on Rails 8
|
3
|
+
|
4
|
+
## Installation
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem "catabler"
|
9
|
+
```
|
10
|
+
|
11
|
+
And css to application.css
|
12
|
+
```css
|
13
|
+
@import url("./tabler.min.css");
|
14
|
+
```
|
15
|
+
|
16
|
+
Pin in importmap.rb
|
17
|
+
```ruby
|
18
|
+
pin "tabler", to: "tabler.esm.min.js"
|
19
|
+
```
|
20
|
+
|
21
|
+
Import in application.js
|
22
|
+
```ruby
|
23
|
+
import "tabler"
|
24
|
+
```
|
25
|
+
|
26
|
+
## License
|
27
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|