five-two-nw-olivander 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 +7 -0
- data/CHANGELOG.md +51 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/config/manifest.js +4 -0
- data/app/assets/config/olivander_manifest.js +4 -0
- data/app/assets/fonts/fa-brands-400.eot +0 -0
- data/app/assets/fonts/fa-brands-400.svg +3717 -0
- data/app/assets/fonts/fa-brands-400.ttf +0 -0
- data/app/assets/fonts/fa-brands-400.woff +0 -0
- data/app/assets/fonts/fa-brands-400.woff2 +0 -0
- data/app/assets/fonts/fa-regular-400.eot +0 -0
- data/app/assets/fonts/fa-regular-400.svg +801 -0
- data/app/assets/fonts/fa-regular-400.ttf +0 -0
- data/app/assets/fonts/fa-regular-400.woff +0 -0
- data/app/assets/fonts/fa-regular-400.woff2 +0 -0
- data/app/assets/fonts/fa-solid-900.eot +0 -0
- data/app/assets/fonts/fa-solid-900.svg +5034 -0
- data/app/assets/fonts/fa-solid-900.ttf +0 -0
- data/app/assets/fonts/fa-solid-900.woff +0 -0
- data/app/assets/fonts/fa-solid-900.woff2 +0 -0
- data/app/assets/images/avatar0.png +0 -0
- data/app/assets/images/avatar1.png +0 -0
- data/app/assets/images/avatar2.png +0 -0
- data/app/assets/images/avatar3.png +0 -0
- data/app/assets/images/avatar4.png +0 -0
- data/app/assets/images/default-150x150.png +0 -0
- data/app/assets/images/icons.png +0 -0
- data/app/assets/javascripts/adminlte/dist/css/adminlte.min.css +12 -0
- data/app/assets/javascripts/adminlte/dist/js/adminlte.js +3069 -0
- data/app/assets/javascripts/adminlte/plugins/bootstrap/js/bootstrap.bundle.min.js +7 -0
- data/app/assets/javascripts/adminlte/plugins/chart.js/Chart.min.js +7 -0
- data/app/assets/javascripts/adminlte/plugins/daterangepicker/daterangepicker.css +410 -0
- data/app/assets/javascripts/adminlte/plugins/daterangepicker/daterangepicker.js +1578 -0
- data/app/assets/javascripts/adminlte/plugins/fontawesome-free/css/all.min.css +5 -0
- data/app/assets/javascripts/adminlte/plugins/icheck-bootstrap/icheck-bootstrap.min.css +5 -0
- data/app/assets/javascripts/adminlte/plugins/jquery/jquery.min.js +2 -0
- data/app/assets/javascripts/adminlte/plugins/jquery-knob/jquery.knob.min.js +1 -0
- data/app/assets/javascripts/adminlte/plugins/jquery-ui/jquery-ui.min.js +6 -0
- data/app/assets/javascripts/adminlte/plugins/jqvmap/jquery.vmap.min.js +10 -0
- data/app/assets/javascripts/adminlte/plugins/jqvmap/jqvmap.min.css +1 -0
- data/app/assets/javascripts/adminlte/plugins/jqvmap/maps/jquery.vmap.usa.js +2 -0
- data/app/assets/javascripts/adminlte/plugins/moment/moment.min.js +2 -0
- data/app/assets/javascripts/adminlte/plugins/overlayScrollbars/css/OverlayScrollbars.min.css +13 -0
- data/app/assets/javascripts/adminlte/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js +13 -0
- data/app/assets/javascripts/adminlte/plugins/sparklines/sparkline.js +210 -0
- data/app/assets/javascripts/adminlte/plugins/summernote/summernote-bs4.min.css +1 -0
- data/app/assets/javascripts/adminlte/plugins/summernote/summernote-bs4.min.js +2 -0
- data/app/assets/javascripts/adminlte/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css +5 -0
- data/app/assets/javascripts/adminlte/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js +6 -0
- data/app/assets/javascripts/adminlte.js +16 -0
- data/app/assets/stylesheets/adminlte.css +27 -0
- data/app/assets/stylesheets/fa-fix.scss +41 -0
- data/app/assets/stylesheets/olivander/application.css +15 -0
- data/app/controllers/olivander/application_controller.rb +4 -0
- data/app/datatables/test_datatable.rb +15 -0
- data/app/helpers/olivander/application_helper.rb +11 -0
- data/app/jobs/olivander/application_job.rb +4 -0
- data/app/mailers/olivander/application_mailer.rb +6 -0
- data/app/models/olivander/application_record.rb +5 -0
- data/app/views/layouts/olivander/adminlte/_content.html.haml +8 -0
- data/app/views/layouts/olivander/adminlte/_content_kanban.html.haml +13 -0
- data/app/views/layouts/olivander/adminlte/_control_sidebar.html.haml +1 -0
- data/app/views/layouts/olivander/adminlte/_flashes.html.haml +2 -0
- data/app/views/layouts/olivander/adminlte/_footer.html.haml +9 -0
- data/app/views/layouts/olivander/adminlte/_head.html.haml +11 -0
- data/app/views/layouts/olivander/adminlte/_login_flashes.html.haml +0 -0
- data/app/views/layouts/olivander/adminlte/_navbar.html.haml +108 -0
- data/app/views/layouts/olivander/adminlte/_sidebar.html.haml +24 -0
- data/app/views/layouts/olivander/adminlte/login.html.haml +27 -0
- data/app/views/layouts/olivander/adminlte/main.html.haml +17 -0
- data/app/views/layouts/olivander/application.html.haml +17 -0
- data/config/initializers/effective_datatables.rb +49 -0
- data/config/routes.rb +2 -0
- data/lib/five-two-nw-olivander.rb +5 -0
- data/lib/olivander/engine.rb +15 -0
- data/lib/olivander/version.rb +3 -0
- data/lib/olivander.rb +6 -0
- data/lib/tasks/olivander_tasks.rake +4 -0
- metadata +197 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 804923f3e2c0757a3477f96abbeb27d83230e0cb57be24c0943ed72ac270ca73
|
4
|
+
data.tar.gz: c5117164723c492667ac149891e2ef2619688074a63e8a387b2c7701a2e85b4a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e8c3e1a18f2cc7d51605a5522445684e2ddbb39acb8767816983106d8d7dfce85a8e4321034d5d4605021790d5719288c361f67f359964ca53db98277863568e
|
7
|
+
data.tar.gz: 3c14a579d133cea6d03239af43390de369d7d023a590c17e5e29ebbc213126e8a6be8bfe82daa3d26cbce1947501d1be6a6217417693c1f5b67cfaadc3e416cf
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
|
2
|
+
# Change Log
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
6
|
+
and this project adheres to [Semantic Versioning](http://semver.org/).
|
7
|
+
|
8
|
+
## [Unreleased] - yyyy-mm-dd
|
9
|
+
|
10
|
+
Here we write upgrading notes for brands. It's a team effort to make them as
|
11
|
+
straightforward as possible.
|
12
|
+
|
13
|
+
### Added
|
14
|
+
- [PROJECTNAME-XXXX](http://tickets.projectname.com/browse/PROJECTNAME-XXXX)
|
15
|
+
MINOR Ticket title goes here.
|
16
|
+
- [PROJECTNAME-YYYY](http://tickets.projectname.com/browse/PROJECTNAME-YYYY)
|
17
|
+
PATCH Ticket title goes here.
|
18
|
+
|
19
|
+
### Changed
|
20
|
+
|
21
|
+
### Fixed
|
22
|
+
|
23
|
+
## [1.2.4] - 2017-03-15
|
24
|
+
|
25
|
+
Here we would have the update steps for 1.2.4 for people to follow.
|
26
|
+
|
27
|
+
### Added
|
28
|
+
|
29
|
+
### Changed
|
30
|
+
|
31
|
+
- [PROJECTNAME-ZZZZ](http://tickets.projectname.com/browse/PROJECTNAME-ZZZZ)
|
32
|
+
PATCH Drupal.org is now used for composer.
|
33
|
+
|
34
|
+
### Fixed
|
35
|
+
|
36
|
+
- [PROJECTNAME-TTTT](http://tickets.projectname.com/browse/PROJECTNAME-TTTT)
|
37
|
+
PATCH Add logic to runsheet teaser delete to delete corresponding
|
38
|
+
schedule cards.
|
39
|
+
|
40
|
+
## [1.2.3] - 2017-03-14
|
41
|
+
|
42
|
+
### Added
|
43
|
+
|
44
|
+
### Changed
|
45
|
+
|
46
|
+
### Fixed
|
47
|
+
|
48
|
+
- [PROJECTNAME-UUUU](http://tickets.projectname.com/browse/PROJECTNAME-UUUU)
|
49
|
+
MINOR Fix module foo tests
|
50
|
+
- [PROJECTNAME-RRRR](http://tickets.projectname.com/browse/PROJECTNAME-RRRR)
|
51
|
+
MAJOR Module foo's timeline uses the browser timezone for date resolution
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2023 Eric Dennis
|
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,28 @@
|
|
1
|
+
# Olivander
|
2
|
+
Short description and motivation.
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
How to use my plugin.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "five-two-nw-olivander"
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install five-two-nw-olivander
|
22
|
+
```
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
Contribution directions go here.
|
26
|
+
|
27
|
+
## License
|
28
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
Binary file
|