administrate-notus_theme 0.1.0
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 +23 -0
- data/Rakefile +3 -0
- data/app/assets/stylesheets/administrate-notus_theme/theme.css +2054 -0
- data/app/assets/stylesheets/administrate-notus_theme/theme.tailwind.css +205 -0
- data/lib/administrate/notus_theme/railtie.rb +7 -0
- data/lib/administrate/notus_theme/version.rb +5 -0
- data/lib/administrate/notus_theme.rb +8 -0
- data/lib/generators/administrate/notus_theme/install_generator.rb +25 -0
- data/lib/tasks/administrate/notus_theme_tasks.rake +4 -0
- metadata +69 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b5ec8bf403f2d83c624ea2ee71249dc980ecb0de36f60c68c821ee9366bf0796
|
4
|
+
data.tar.gz: 499e175b139065f99032f5febc049d0f4abad2c02daab0e6dd216488488a6418
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ea6da456b043a960b625cbc1fd054d7b533c0d82193712c1fd48a0a44db71defefc3362d08217448a01ae6229475067f2632fca8544ca152d7d821cbd7fa73af
|
7
|
+
data.tar.gz: 8d73ca57d6db723e0d82d51927401b13ec4a4b19da477fe79f5dfdefcaef2462685c364afa9de397f9b5d8340efe639265a00e0df3a602173cc9dbe99508f9db
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2022 蒼時弦也
|
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,23 @@
|
|
1
|
+
# Administrate Notus Theme
|
2
|
+
|
3
|
+
The Administrate [Notus Theme](https://demos.creative-tim.com/notus-js/) designed by Creative Tim.
|
4
|
+
|
5
|
+
![screenshot](screenshot.png)
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "administrate-notus_theme"
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ rails g administrate:notus_theme:install
|
17
|
+
```
|
18
|
+
|
19
|
+
## Contributing
|
20
|
+
Contribution directions go here.
|
21
|
+
|
22
|
+
## License
|
23
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED