admin_tools_ennder 1.3.20

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.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/Changelog +158 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.md +89 -0
  5. data/Rakefile +2 -0
  6. data/TODO +0 -0
  7. data/app/controllers/admin_dev_infos_controller.rb +46 -0
  8. data/app/controllers/admin_gems_controller.rb +24 -0
  9. data/app/controllers/admin_inflexions_controller.rb +6 -0
  10. data/app/controllers/admin_menu_controller.rb +2 -0
  11. data/app/controllers/admin_routes_controller.rb +21 -0
  12. data/app/controllers/admin_send_file_controller.rb +8 -0
  13. data/app/controllers/admin_translations_controller.rb +21 -0
  14. data/app/controllers/admin_url_infos_controller.rb +7 -0
  15. data/app/controllers/application_controller.rb +10 -0
  16. data/app/controllers/commands_controller.rb +152 -0
  17. data/app/controllers/gmm_controller.rb +27 -0
  18. data/app/controllers/processus_controller.rb +8 -0
  19. data/app/helpers/application_helper.rb +11 -0
  20. data/app/metal/metal_processus_liste.rb +13 -0
  21. data/app/models/command.rb +5 -0
  22. data/app/views/admin_dev_infos/index.html.erb +7 -0
  23. data/app/views/admin_dev_infos/show.html.erb +43 -0
  24. data/app/views/admin_gems/_gem_infos.html.erb +46 -0
  25. data/app/views/admin_gems/index.html.erb +3 -0
  26. data/app/views/admin_inflexions/index.html.erb +41 -0
  27. data/app/views/admin_menu/index.html.erb +29 -0
  28. data/app/views/admin_routes/index.html.erb +64 -0
  29. data/app/views/admin_send_file/index.html.erb +7 -0
  30. data/app/views/admin_translations/index.html.erb +128 -0
  31. data/app/views/admin_url_infos/index.html.erb +91 -0
  32. data/app/views/commands/_execute_results.html.erb +10 -0
  33. data/app/views/commands/execute.html.erb +10 -0
  34. data/app/views/commands/executed.html.erb +12 -0
  35. data/app/views/commands/index.html.erb +24 -0
  36. data/app/views/commands/new.html.erb +15 -0
  37. data/app/views/commands/show.html.erb +10 -0
  38. data/app/views/common/_error_messages.html.erb +10 -0
  39. data/app/views/common/_top_menu.html.erb +2 -0
  40. data/app/views/gmm/index.html.erb +34 -0
  41. data/app/views/processus/index.html.erb +9 -0
  42. data/config/routes.rb +75 -0
  43. data/db/migrate/20100422173622_create_commands.rb +13 -0
  44. data/db/migrate/rails_before_5/20100422173622_create_commands.rb +13 -0
  45. data/lib/admin_tools_ennder.rb +77 -0
  46. data/lib/admin_tools_ennder/engine.rb +7 -0
  47. data/lib/gtm.rb +75 -0
  48. data/lib/tasks/admin_tools_ennder_tasks.rake +11 -0
  49. data/test/admin_tools_ennder_test.rb +8 -0
  50. data/test/test_helper.rb +3 -0
  51. metadata +95 -0
@@ -0,0 +1,11 @@
1
+ namespace :admin_tools_ennder do
2
+ desc "Synchronise les migrations du plugin admin_tools_ennder vers l'appli"
3
+ task :sync do
4
+ if Rails::VERSION::MAJOR < 5
5
+ system "rsync -uv plugins/admin_tools_ennder/db/migrate/rails_before_5/migrate db/migrate"
6
+ else
7
+ system "rsync -uv plugins/admin_tools_ennder/db/migrate db/migrate"
8
+ end
9
+ # system "rsync -ruv plugins/admin_tools_ennder/public ."
10
+ end
11
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class AdminToolsEnnderTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: admin_tools_ennder
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.20
5
+ platform: ruby
6
+ authors:
7
+ - Ennder
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-09-13 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Liste des Inflections, Traductions, Routes, Gems, Processus server, Informations
14
+ de Développement, Url courante + execution de commandes shell + helpers de téléchargement
15
+ de fichier
16
+ email: mel+rails@ennder.fr
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - Changelog
22
+ - MIT-LICENSE
23
+ - README.md
24
+ - Rakefile
25
+ - TODO
26
+ - app/controllers/admin_dev_infos_controller.rb
27
+ - app/controllers/admin_gems_controller.rb
28
+ - app/controllers/admin_inflexions_controller.rb
29
+ - app/controllers/admin_menu_controller.rb
30
+ - app/controllers/admin_routes_controller.rb
31
+ - app/controllers/admin_send_file_controller.rb
32
+ - app/controllers/admin_translations_controller.rb
33
+ - app/controllers/admin_url_infos_controller.rb
34
+ - app/controllers/application_controller.rb
35
+ - app/controllers/commands_controller.rb
36
+ - app/controllers/gmm_controller.rb
37
+ - app/controllers/processus_controller.rb
38
+ - app/helpers/application_helper.rb
39
+ - app/metal/metal_processus_liste.rb
40
+ - app/models/command.rb
41
+ - app/views/admin_dev_infos/index.html.erb
42
+ - app/views/admin_dev_infos/show.html.erb
43
+ - app/views/admin_gems/_gem_infos.html.erb
44
+ - app/views/admin_gems/index.html.erb
45
+ - app/views/admin_inflexions/index.html.erb
46
+ - app/views/admin_menu/index.html.erb
47
+ - app/views/admin_routes/index.html.erb
48
+ - app/views/admin_send_file/index.html.erb
49
+ - app/views/admin_translations/index.html.erb
50
+ - app/views/admin_url_infos/index.html.erb
51
+ - app/views/commands/_execute_results.html.erb
52
+ - app/views/commands/execute.html.erb
53
+ - app/views/commands/executed.html.erb
54
+ - app/views/commands/index.html.erb
55
+ - app/views/commands/new.html.erb
56
+ - app/views/commands/show.html.erb
57
+ - app/views/common/_error_messages.html.erb
58
+ - app/views/common/_top_menu.html.erb
59
+ - app/views/gmm/index.html.erb
60
+ - app/views/processus/index.html.erb
61
+ - config/routes.rb
62
+ - db/migrate/20100422173622_create_commands.rb
63
+ - db/migrate/rails_before_5/20100422173622_create_commands.rb
64
+ - lib/admin_tools_ennder.rb
65
+ - lib/admin_tools_ennder/engine.rb
66
+ - lib/gtm.rb
67
+ - lib/tasks/admin_tools_ennder_tasks.rake
68
+ - test/admin_tools_ennder_test.rb
69
+ - test/test_helper.rb
70
+ homepage: https://github.com/ennder/admin_tools_ennder
71
+ licenses:
72
+ - MIT
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ requirements: []
89
+ rubyforge_project:
90
+ rubygems_version: 2.7.7
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: Outil en français pour examiner le coeur d'une application Rails (Tool in
94
+ French to examine Rails application internals)
95
+ test_files: []