jinda 0.7.7.3 → 0.7.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -12
  3. data/lib/generators/jinda/templates/app/mailers/{application_mailer.rb-org → application_mailer.rb} +0 -0
  4. data/lib/generators/jinda/templates/config/mongoid.yml +3 -3
  5. data/lib/jinda/version.rb +1 -1
  6. data/test/dummy/Dockerfile +4 -2
  7. data/test/dummy/Gemfile +5 -2
  8. data/test/dummy/Gemfile.lock +21 -22
  9. data/test/dummy/Guardfile +96 -0
  10. data/test/dummy/app/assets/javascripts/application.js +8 -8
  11. data/test/dummy/app/assets/stylesheets/{application.css.scss → application.scss} +12 -4
  12. data/test/dummy/app/assets/stylesheets/jinda.scss +253 -0
  13. data/test/dummy/app/controllers/adminltes_controller.rb +2 -0
  14. data/test/dummy/app/mailers/application_mailer.rb +2 -2
  15. data/test/dummy/app/views/adminltes/dashboard1.haml +461 -0
  16. data/test/dummy/app/views/adminltes/dashboard2.haml +656 -0
  17. data/test/dummy/app/views/identities/new-bak.html.haml +32 -0
  18. data/test/dummy/app/views/identities/new.html.haml +13 -0
  19. data/test/dummy/app/views/layouts/application.haml +51 -4
  20. data/test/dummy/app/views/layouts/application.haml.bak +4 -0
  21. data/test/dummy/app/views/layouts/lte/_flash.haml +9 -0
  22. data/test/dummy/app/views/layouts/lte/_footer.haml +7 -0
  23. data/test/dummy/app/views/layouts/lte/_header.haml +111 -0
  24. data/test/dummy/app/views/layouts/lte/_menu.haml +42 -0
  25. data/test/dummy/app/views/layouts/lte/_menu_mm.haml +36 -0
  26. data/test/dummy/app/views/layouts/lte/_rightbar.haml +123 -0
  27. data/test/dummy/app/views/layouts/lte/_sidebar.haml +154 -0
  28. data/test/dummy/app/views/sessions/new-bak.html.haml +22 -0
  29. data/test/dummy/app/views/sessions/new.html.haml +13 -0
  30. data/test/dummy/config/credentials.yml.enc +1 -1
  31. data/test/dummy/config/mongoid.yml +40 -54
  32. data/test/dummy/docker-compose.yml +4 -2
  33. data/test/dummy/log/development.log +2126 -494
  34. data/test/dummy/tmp/development_secret.txt +1 -1
  35. metadata +19 -9
  36. data/test/Gemfile +0 -2
  37. data/test/dummy/README.md.bak +0 -24
  38. data/test/dummy/app/assets/stylesheets/application.css.bak +0 -15
  39. data/test/dummy/app/assets/stylesheets/jinda_jqm.css.scss +0 -32
  40. data/test/dummy/app/mailers/application_mailer.rb-org +0 -4
@@ -1 +1 @@
1
- a6747a3d62d47f33fa1801293541d77b45499aae94910fa3febf6b0b53d136fac5e3e811f2275211f59d39ba077033477a8f0717459bffde0e1654237986f97e
1
+ 4c3fe5941e16cfbd3d524bf40427b40556764fb06d021eb9617e4386452377ee62ccb30bdc54af63bf6725a1b25953f6d888f52718c802050481310313575594
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jinda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7.3
4
+ version: 0.7.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Prateep Kul
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-11-24 00:00:00.000000000 Z
12
+ date: 2022-12-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mongoid
@@ -221,7 +221,7 @@ files:
221
221
  - lib/generators/jinda/templates/app/jinda/template/index.mm
222
222
  - lib/generators/jinda/templates/app/jinda/template/linkview.haml
223
223
  - lib/generators/jinda/templates/app/jinda/template/view.html.erb
224
- - lib/generators/jinda/templates/app/mailers/application_mailer.rb-org
224
+ - lib/generators/jinda/templates/app/mailers/application_mailer.rb
225
225
  - lib/generators/jinda/templates/app/mailers/jinda_mailer.rb
226
226
  - lib/generators/jinda/templates/app/mailers/note_mailer.rb
227
227
  - lib/generators/jinda/templates/app/mailers/user_mailer.rb
@@ -393,21 +393,20 @@ files:
393
393
  - lib/jinda/version.rb
394
394
  - lib/jquery.validate.js
395
395
  - lib/tasks/jinda.rake
396
- - test/Gemfile
397
396
  - test/dummy/Dockerfile
398
397
  - test/dummy/Gemfile
399
398
  - test/dummy/Gemfile.lock
399
+ - test/dummy/Guardfile
400
400
  - test/dummy/README.md
401
- - test/dummy/README.md.bak
402
401
  - test/dummy/Rakefile
403
402
  - test/dummy/app/assets/config/manifest.js
404
403
  - test/dummy/app/assets/config/manifest.js-rails
405
404
  - test/dummy/app/assets/javascripts/application.js
406
- - test/dummy/app/assets/stylesheets/application.css.bak
407
- - test/dummy/app/assets/stylesheets/application.css.scss
408
- - test/dummy/app/assets/stylesheets/jinda_jqm.css.scss
405
+ - test/dummy/app/assets/stylesheets/application.scss
406
+ - test/dummy/app/assets/stylesheets/jinda.scss
409
407
  - test/dummy/app/channels/application_cable/channel.rb
410
408
  - test/dummy/app/channels/application_cable/connection.rb
409
+ - test/dummy/app/controllers/adminltes_controller.rb
411
410
  - test/dummy/app/controllers/admins_controller.rb
412
411
  - test/dummy/app/controllers/api/v1/notes_controller.rb
413
412
  - test/dummy/app/controllers/application_controller.rb
@@ -439,7 +438,6 @@ files:
439
438
  - test/dummy/app/jinda/template/view.html.erb
440
439
  - test/dummy/app/jobs/application_job.rb
441
440
  - test/dummy/app/mailers/application_mailer.rb
442
- - test/dummy/app/mailers/application_mailer.rb-org
443
441
  - test/dummy/app/mailers/jinda_mailer.rb
444
442
  - test/dummy/app/mailers/note_mailer.rb
445
443
  - test/dummy/app/mailers/user_mailer.rb
@@ -459,6 +457,8 @@ files:
459
457
  - test/dummy/app/models/person.rb
460
458
  - test/dummy/app/models/user.rb
461
459
  - test/dummy/app/views/adminbsbs/content.haml
460
+ - test/dummy/app/views/adminltes/dashboard1.haml
461
+ - test/dummy/app/views/adminltes/dashboard2.haml
462
462
  - test/dummy/app/views/admins/edit_role/edit_role.html.erb
463
463
  - test/dummy/app/views/admins/edit_role/select_user.html.erb
464
464
  - test/dummy/app/views/api/v1/note.haml
@@ -483,6 +483,7 @@ files:
483
483
  - test/dummy/app/views/docs/edit/select_note.html.erb
484
484
  - test/dummy/app/views/docs/index.haml
485
485
  - test/dummy/app/views/docs/my.haml
486
+ - test/dummy/app/views/identities/new-bak.html.haml
486
487
  - test/dummy/app/views/identities/new.html.haml
487
488
  - test/dummy/app/views/jinda/_activity.md
488
489
  - test/dummy/app/views/jinda/_menu.haml
@@ -510,6 +511,7 @@ files:
510
511
  - test/dummy/app/views/layouts/_head.html.erb
511
512
  - test/dummy/app/views/layouts/_meta_tag.html.erb
512
513
  - test/dummy/app/views/layouts/application.haml
514
+ - test/dummy/app/views/layouts/application.haml.bak
513
515
  - test/dummy/app/views/layouts/application.html.erb.bak
514
516
  - test/dummy/app/views/layouts/bsb/_footer.haml
515
517
  - test/dummy/app/views/layouts/bsb/_header.haml
@@ -522,6 +524,13 @@ files:
522
524
  - test/dummy/app/views/layouts/jqm/_full.haml
523
525
  - test/dummy/app/views/layouts/jqm/_page.haml
524
526
  - test/dummy/app/views/layouts/jqm/application.haml-jqm
527
+ - test/dummy/app/views/layouts/lte/_flash.haml
528
+ - test/dummy/app/views/layouts/lte/_footer.haml
529
+ - test/dummy/app/views/layouts/lte/_header.haml
530
+ - test/dummy/app/views/layouts/lte/_menu.haml
531
+ - test/dummy/app/views/layouts/lte/_menu_mm.haml
532
+ - test/dummy/app/views/layouts/lte/_rightbar.haml
533
+ - test/dummy/app/views/layouts/lte/_sidebar.haml
525
534
  - test/dummy/app/views/layouts/mailer.html.erb
526
535
  - test/dummy/app/views/layouts/mailer.html.haml
527
536
  - test/dummy/app/views/layouts/mailer.text.erb
@@ -545,6 +554,7 @@ files:
545
554
  - test/dummy/app/views/notes/xedit/edit_note.html.erb
546
555
  - test/dummy/app/views/password_resets/edit.html.erb
547
556
  - test/dummy/app/views/password_resets/new.html.haml
557
+ - test/dummy/app/views/sessions/new-bak.html.haml
548
558
  - test/dummy/app/views/sessions/new.html.haml
549
559
  - test/dummy/app/views/sitemap/index.xml.haml
550
560
  - test/dummy/app/views/user_mailer/password_reset.html.haml
data/test/Gemfile DELETED
@@ -1,2 +0,0 @@
1
- gem 'jinda', path: '../../../jinda'
2
- gem 'jinda_adminlte' , path: '../../../jinda_adminlte'
@@ -1,24 +0,0 @@
1
- # README
2
-
3
- This README would normally document whatever steps are necessary to get the
4
- application up and running.
5
-
6
- Things you may want to cover:
7
-
8
- * Ruby version
9
-
10
- * System dependencies
11
-
12
- * Configuration
13
-
14
- * Database creation
15
-
16
- * Database initialization
17
-
18
- * How to run the test suite
19
-
20
- * Services (job queues, cache servers, search engines, etc.)
21
-
22
- * Deployment instructions
23
-
24
- * ...
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
6
- * vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,32 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the top of the
9
- * compiled file, but it's generally better to create a new file per style scope.
10
- *
11
- *= require normalize-rails
12
- */
13
-
14
- @import "jquery.mobile-1.2.1";
15
- @import "jquery.mobile.splitview";
16
- @import "jquery.mobile.grids.collapsible";
17
- @import "jquery.mobile.datebox.css";
18
- @import "sarabun";
19
- @import "jinda";
20
- @import "kul-4.2";
21
- @import "articles";
22
- @import "app.scss";
23
- @import "font-awesome-sprockets";
24
- @import "font-awesome";
25
- @import "social";
26
-
27
-
28
-
29
-
30
-
31
-
32
-
@@ -1,4 +0,0 @@
1
- class ApplicationMailer < ActionMailer::Base
2
- default from: 'from@example.com'
3
- layout 'mailer'
4
- end