next_sgad 0.1.3

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 (212) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +34 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/config/next_sgad_manifest.js +2 -0
  6. data/app/assets/javascripts/next_sgad/activities.js +2 -0
  7. data/app/assets/javascripts/next_sgad/application.js +108 -0
  8. data/app/assets/javascripts/next_sgad/assessments.js +2 -0
  9. data/app/assets/javascripts/next_sgad/attendances.js +2 -0
  10. data/app/assets/javascripts/next_sgad/configurations.js +2 -0
  11. data/app/assets/javascripts/next_sgad/departments.js +2 -0
  12. data/app/assets/javascripts/next_sgad/employee_goals.js +2 -0
  13. data/app/assets/javascripts/next_sgad/employees.js +2 -0
  14. data/app/assets/javascripts/next_sgad/functions.js +7 -0
  15. data/app/assets/javascripts/next_sgad/goals.js +2 -0
  16. data/app/assets/javascripts/next_sgad/jquery.orgchart.min.js +2 -0
  17. data/app/assets/javascripts/next_sgad/justifications.js +2 -0
  18. data/app/assets/javascripts/next_sgad/positions.js +2 -0
  19. data/app/assets/javascripts/next_sgad/results.js +2 -0
  20. data/app/assets/stylesheets/next_sgad/activities.css +4 -0
  21. data/app/assets/stylesheets/next_sgad/application.css +77 -0
  22. data/app/assets/stylesheets/next_sgad/assessments.css +4 -0
  23. data/app/assets/stylesheets/next_sgad/attendances.css +4 -0
  24. data/app/assets/stylesheets/next_sgad/configurations.css +4 -0
  25. data/app/assets/stylesheets/next_sgad/departments.css +4 -0
  26. data/app/assets/stylesheets/next_sgad/employee_goals.css +4 -0
  27. data/app/assets/stylesheets/next_sgad/employees.css +4 -0
  28. data/app/assets/stylesheets/next_sgad/functions.css +4 -0
  29. data/app/assets/stylesheets/next_sgad/goals.css +4 -0
  30. data/app/assets/stylesheets/next_sgad/jquery.orgchart.min.css +2 -0
  31. data/app/assets/stylesheets/next_sgad/justifications.css +4 -0
  32. data/app/assets/stylesheets/next_sgad/positions.css +4 -0
  33. data/app/assets/stylesheets/next_sgad/results.css +4 -0
  34. data/app/controllers/next_sgad/activities_controller.rb +63 -0
  35. data/app/controllers/next_sgad/application_controller.rb +5 -0
  36. data/app/controllers/next_sgad/assessments_controller.rb +62 -0
  37. data/app/controllers/next_sgad/attendances_controller.rb +62 -0
  38. data/app/controllers/next_sgad/configurations_controller.rb +62 -0
  39. data/app/controllers/next_sgad/departments_controller.rb +62 -0
  40. data/app/controllers/next_sgad/employee_goals_controller.rb +62 -0
  41. data/app/controllers/next_sgad/employees_controller.rb +62 -0
  42. data/app/controllers/next_sgad/functions_controller.rb +62 -0
  43. data/app/controllers/next_sgad/goals_controller.rb +62 -0
  44. data/app/controllers/next_sgad/justifications_controller.rb +62 -0
  45. data/app/controllers/next_sgad/positions_controller.rb +78 -0
  46. data/app/controllers/next_sgad/results_controller.rb +62 -0
  47. data/app/helpers/next_sgad/activities_helper.rb +4 -0
  48. data/app/helpers/next_sgad/application_helper.rb +4 -0
  49. data/app/helpers/next_sgad/assessments_helper.rb +4 -0
  50. data/app/helpers/next_sgad/attendances_helper.rb +4 -0
  51. data/app/helpers/next_sgad/configurations_helper.rb +4 -0
  52. data/app/helpers/next_sgad/departments_helper.rb +4 -0
  53. data/app/helpers/next_sgad/employee_goals_helper.rb +4 -0
  54. data/app/helpers/next_sgad/employees_helper.rb +4 -0
  55. data/app/helpers/next_sgad/functions_helper.rb +4 -0
  56. data/app/helpers/next_sgad/goals_helper.rb +4 -0
  57. data/app/helpers/next_sgad/justifications_helper.rb +4 -0
  58. data/app/helpers/next_sgad/positions_helper.rb +55 -0
  59. data/app/helpers/next_sgad/results_helper.rb +4 -0
  60. data/app/jobs/next_sgad/application_job.rb +4 -0
  61. data/app/mailers/next_sgad/application_mailer.rb +6 -0
  62. data/app/models/next_sgad/activity.rb +4 -0
  63. data/app/models/next_sgad/application_record.rb +18 -0
  64. data/app/models/next_sgad/assessment.rb +128 -0
  65. data/app/models/next_sgad/attendance.rb +70 -0
  66. data/app/models/next_sgad/configuration.rb +4 -0
  67. data/app/models/next_sgad/department.rb +20 -0
  68. data/app/models/next_sgad/employee.rb +28 -0
  69. data/app/models/next_sgad/employee_goal.rb +36 -0
  70. data/app/models/next_sgad/function.rb +8 -0
  71. data/app/models/next_sgad/goal.rb +37 -0
  72. data/app/models/next_sgad/justification.rb +47 -0
  73. data/app/models/next_sgad/position.rb +36 -0
  74. data/app/models/next_sgad/result.rb +27 -0
  75. data/app/models/next_sgad/setting.rb +13 -0
  76. data/app/views/layouts/next_sgad/application.html.erb +14 -0
  77. data/app/views/next_sgad/activities/_form.html.erb +27 -0
  78. data/app/views/next_sgad/activities/edit.html.erb +6 -0
  79. data/app/views/next_sgad/activities/index.html.erb +29 -0
  80. data/app/views/next_sgad/activities/new.html.erb +5 -0
  81. data/app/views/next_sgad/activities/show.html.erb +14 -0
  82. data/app/views/next_sgad/assessments/_form.html.erb +27 -0
  83. data/app/views/next_sgad/assessments/edit.html.erb +6 -0
  84. data/app/views/next_sgad/assessments/index.html.erb +29 -0
  85. data/app/views/next_sgad/assessments/new.html.erb +5 -0
  86. data/app/views/next_sgad/assessments/show.html.erb +14 -0
  87. data/app/views/next_sgad/attendances/_form.html.erb +37 -0
  88. data/app/views/next_sgad/attendances/edit.html.erb +6 -0
  89. data/app/views/next_sgad/attendances/index.html.erb +33 -0
  90. data/app/views/next_sgad/attendances/new.html.erb +5 -0
  91. data/app/views/next_sgad/attendances/show.html.erb +24 -0
  92. data/app/views/next_sgad/configurations/_form.html.erb +32 -0
  93. data/app/views/next_sgad/configurations/edit.html.erb +6 -0
  94. data/app/views/next_sgad/configurations/index.html.erb +31 -0
  95. data/app/views/next_sgad/configurations/new.html.erb +5 -0
  96. data/app/views/next_sgad/configurations/show.html.erb +19 -0
  97. data/app/views/next_sgad/departments/_form.html.erb +32 -0
  98. data/app/views/next_sgad/departments/edit.html.erb +6 -0
  99. data/app/views/next_sgad/departments/index.html.erb +33 -0
  100. data/app/views/next_sgad/departments/new.html.erb +5 -0
  101. data/app/views/next_sgad/departments/show.html.erb +24 -0
  102. data/app/views/next_sgad/employee_goals/_form.html.erb +42 -0
  103. data/app/views/next_sgad/employee_goals/edit.html.erb +6 -0
  104. data/app/views/next_sgad/employee_goals/index.html.erb +35 -0
  105. data/app/views/next_sgad/employee_goals/new.html.erb +5 -0
  106. data/app/views/next_sgad/employee_goals/show.html.erb +29 -0
  107. data/app/views/next_sgad/employees/_form.html.erb +27 -0
  108. data/app/views/next_sgad/employees/_organigrama.html.erb +7 -0
  109. data/app/views/next_sgad/employees/edit.html.erb +6 -0
  110. data/app/views/next_sgad/employees/index.html.erb +31 -0
  111. data/app/views/next_sgad/employees/new.html.erb +5 -0
  112. data/app/views/next_sgad/employees/show.html.erb +19 -0
  113. data/app/views/next_sgad/functions/_form.html.erb +22 -0
  114. data/app/views/next_sgad/functions/edit.html.erb +6 -0
  115. data/app/views/next_sgad/functions/index.html.erb +27 -0
  116. data/app/views/next_sgad/functions/new.html.erb +5 -0
  117. data/app/views/next_sgad/functions/show.html.erb +9 -0
  118. data/app/views/next_sgad/goals/_form.html.erb +62 -0
  119. data/app/views/next_sgad/goals/edit.html.erb +6 -0
  120. data/app/views/next_sgad/goals/index.html.erb +41 -0
  121. data/app/views/next_sgad/goals/new.html.erb +5 -0
  122. data/app/views/next_sgad/goals/show.html.erb +49 -0
  123. data/app/views/next_sgad/justifications/_form.html.erb +22 -0
  124. data/app/views/next_sgad/justifications/edit.html.erb +6 -0
  125. data/app/views/next_sgad/justifications/index.html.erb +27 -0
  126. data/app/views/next_sgad/justifications/new.html.erb +5 -0
  127. data/app/views/next_sgad/justifications/show.html.erb +9 -0
  128. data/app/views/next_sgad/positions/_form.html.erb +43 -0
  129. data/app/views/next_sgad/positions/edit.html.erb +6 -0
  130. data/app/views/next_sgad/positions/index.html.erb +94 -0
  131. data/app/views/next_sgad/positions/new.html.erb +5 -0
  132. data/app/views/next_sgad/positions/organigram.html.erb +1 -0
  133. data/app/views/next_sgad/positions/show.html.erb +34 -0
  134. data/app/views/next_sgad/results/_form.html.erb +37 -0
  135. data/app/views/next_sgad/results/edit.html.erb +6 -0
  136. data/app/views/next_sgad/results/index.html.erb +33 -0
  137. data/app/views/next_sgad/results/new.html.erb +5 -0
  138. data/app/views/next_sgad/results/show.html.erb +24 -0
  139. data/config/initializers/core_extentions.rb +1 -0
  140. data/config/initializers/initializer.rb +1 -0
  141. data/config/initializers/m.rb +1 -0
  142. data/config/initializers/semper.rb +1 -0
  143. data/config/routes.rb +16 -0
  144. data/db/migrate/20171014174705_create_next_sgad_departments.rb +11 -0
  145. data/db/migrate/20171014175212_create_next_sgad_employees.rb +11 -0
  146. data/db/migrate/20171014175507_create_next_sgad_positions.rb +13 -0
  147. data/db/migrate/20171014183337_create_next_sgad_configurations.rb +11 -0
  148. data/db/migrate/20171015073528_add_next_sgad_department_to_department.rb +6 -0
  149. data/db/migrate/20171019142918_remove_table_configurations.rb +5 -0
  150. data/db/migrate/20171019143336_create_next_sgad_settings.rb +11 -0
  151. data/db/migrate/20171022113005_add_paygrade_to_next_sgad_employee.rb +6 -0
  152. data/db/migrate/20171024154422_create_next_sgad_assessments.rb +10 -0
  153. data/db/migrate/20171024172007_create_next_sgad_goals.rb +18 -0
  154. data/db/migrate/20171024181227_create_next_sgad_employee_goals.rb +16 -0
  155. data/db/migrate/20171024192907_corrects_references.rb +8 -0
  156. data/db/migrate/20171024193750_copies_info_from_old_references.rb +8 -0
  157. data/db/migrate/20171025093224_change_column_year_from_assessments.rb +6 -0
  158. data/db/migrate/20171025134655_add_goal_type_to_employee_goals.rb +8 -0
  159. data/db/migrate/20171025135319_addname_to_next_sgad_employee_goals.rb +5 -0
  160. data/db/migrate/20171025153545_add_position_reference_to_goals.rb +4 -0
  161. data/db/migrate/20171026055530_add_position_to_next_sgad_goals.rb +5 -0
  162. data/db/migrate/20171026060110_add_position_to_next_sgad_employee.rb +5 -0
  163. data/db/migrate/20171026060351_copies_posiiton_id_to_employees.rb +9 -0
  164. data/db/migrate/20171026061315_remove_old_reference_columns.rb +8 -0
  165. data/db/migrate/20171026115447_add_description_to_next_sgad_goals.rb +6 -0
  166. data/db/migrate/20171026142240_add_position_to_next_sgad_employee_goals.rb +5 -0
  167. data/db/migrate/20171027210543_create_next_sgad_functions.rb +9 -0
  168. data/db/migrate/20171027210912_add_function_to_next_sgad_positions.rb +5 -0
  169. data/db/migrate/20171027213833_create_join_table_goal_position.rb +8 -0
  170. data/db/migrate/20171027221550_create_join_table_employee_position.rb +8 -0
  171. data/db/migrate/20171027223737_add_efective_to_next_sgad_positions.rb +5 -0
  172. data/db/migrate/20171027230032_remove_position_from_next_sgad_employee.rb +6 -0
  173. data/db/migrate/20171027230033_clear_data.rb +7 -0
  174. data/db/migrate/20171028061909_add_description_to_next_sgad_functions.rb +5 -0
  175. data/db/migrate/20171028140106_add_percentages_to_next_sagad_assessments.rb +6 -0
  176. data/db/migrate/20171029074321_rename_paygrade_and_level_from_employee.rb +7 -0
  177. data/db/migrate/20171029103212_add_email_to_next_sgad_employee.rb +5 -0
  178. data/db/migrate/20171029154047_add_coment_to_next_sgad_employee_goals.rb +6 -0
  179. data/db/migrate/20171029160044_add_amount_to_next_sgad_employee_goals.rb +5 -0
  180. data/db/migrate/20171101112232_change_self_assessment_from_next_sgad_employee_goals.rb +13 -0
  181. data/db/migrate/20171106113735_add_first_name_to_next_sgad_employees.rb +24 -0
  182. data/db/migrate/20171110103155_add_number_to_next_sgad_functions.rb +5 -0
  183. data/db/migrate/20171111081148_create_next_sgad_justifications.rb +9 -0
  184. data/db/migrate/20171111093506_create_next_sgad_attendances.rb +13 -0
  185. data/db/migrate/20171111093524_add_references_to_justifications_and_attendences.rb +10 -0
  186. data/db/migrate/20171111094154_create_join_table_attendance_justification.rb +8 -0
  187. data/db/migrate/20171111121753_create_next_sgad_results.rb +13 -0
  188. data/db/migrate/20171111121935_resolts_relationship.rb +9 -0
  189. data/db/migrate/20171112004221_add_attendance_percentage_to_next_sgad_assessment.rb +14 -0
  190. data/db/migrate/20171112121440_add_status_to_next_sgad_justifications.rb +7 -0
  191. data/db/migrate/20171112172436_add_department_to_attendances.rb +6 -0
  192. data/db/migrate/20171113125224_add_configuration_columns_to_nexts_sgad_assessment.rb +18 -0
  193. data/db/migrate/20171113143825_add_max_number_of_absences_for_five_to_next_sgad_assessments.rb +9 -0
  194. data/db/migrate/20171114135601_change_column_status_from_result.rb +6 -0
  195. data/db/migrate/20171115085324_create_next_sgad_activities.rb +10 -0
  196. data/db/migrate/20171115110522_add_column_nature_and_value_to_results.rb +7 -0
  197. data/db/migrate/20171115111821_remove_unused_columns.rb +19 -0
  198. data/db/migrate/20171115140048_corrects_status.rb +6 -0
  199. data/db/migrate/20171115160122_add_justification_status_to_next_sgad_attendances.rb +5 -0
  200. data/db/migrate/20171115161157_migrate_fill_justification_columns.rb +7 -0
  201. data/lib/concerns/models/employee.rb +25 -0
  202. data/lib/generators/initializer/USAGE +8 -0
  203. data/lib/generators/initializer/initializer_generator.rb +6 -0
  204. data/lib/generators/initializer/templates/initializer.rb +1 -0
  205. data/lib/generators/initializer_generator.rb +6 -0
  206. data/lib/generators/views/USAGE +8 -0
  207. data/lib/generators/views/views_generator.rb +3 -0
  208. data/lib/next_sgad/engine.rb +13 -0
  209. data/lib/next_sgad/version.rb +3 -0
  210. data/lib/next_sgad.rb +5 -0
  211. data/lib/tasks/next_sgad_tasks.rake +4 -0
  212. metadata +268 -0
metadata ADDED
@@ -0,0 +1,268 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: next_sgad
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Sérgio Maziano
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-11-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pg
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: NEXT SGAD
28
+ email:
29
+ - sergio@smarttechys.co.ao
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - MIT-LICENSE
35
+ - README.md
36
+ - Rakefile
37
+ - app/assets/config/next_sgad_manifest.js
38
+ - app/assets/javascripts/next_sgad/activities.js
39
+ - app/assets/javascripts/next_sgad/application.js
40
+ - app/assets/javascripts/next_sgad/assessments.js
41
+ - app/assets/javascripts/next_sgad/attendances.js
42
+ - app/assets/javascripts/next_sgad/configurations.js
43
+ - app/assets/javascripts/next_sgad/departments.js
44
+ - app/assets/javascripts/next_sgad/employee_goals.js
45
+ - app/assets/javascripts/next_sgad/employees.js
46
+ - app/assets/javascripts/next_sgad/functions.js
47
+ - app/assets/javascripts/next_sgad/goals.js
48
+ - app/assets/javascripts/next_sgad/jquery.orgchart.min.js
49
+ - app/assets/javascripts/next_sgad/justifications.js
50
+ - app/assets/javascripts/next_sgad/positions.js
51
+ - app/assets/javascripts/next_sgad/results.js
52
+ - app/assets/stylesheets/next_sgad/activities.css
53
+ - app/assets/stylesheets/next_sgad/application.css
54
+ - app/assets/stylesheets/next_sgad/assessments.css
55
+ - app/assets/stylesheets/next_sgad/attendances.css
56
+ - app/assets/stylesheets/next_sgad/configurations.css
57
+ - app/assets/stylesheets/next_sgad/departments.css
58
+ - app/assets/stylesheets/next_sgad/employee_goals.css
59
+ - app/assets/stylesheets/next_sgad/employees.css
60
+ - app/assets/stylesheets/next_sgad/functions.css
61
+ - app/assets/stylesheets/next_sgad/goals.css
62
+ - app/assets/stylesheets/next_sgad/jquery.orgchart.min.css
63
+ - app/assets/stylesheets/next_sgad/justifications.css
64
+ - app/assets/stylesheets/next_sgad/positions.css
65
+ - app/assets/stylesheets/next_sgad/results.css
66
+ - app/controllers/next_sgad/activities_controller.rb
67
+ - app/controllers/next_sgad/application_controller.rb
68
+ - app/controllers/next_sgad/assessments_controller.rb
69
+ - app/controllers/next_sgad/attendances_controller.rb
70
+ - app/controllers/next_sgad/configurations_controller.rb
71
+ - app/controllers/next_sgad/departments_controller.rb
72
+ - app/controllers/next_sgad/employee_goals_controller.rb
73
+ - app/controllers/next_sgad/employees_controller.rb
74
+ - app/controllers/next_sgad/functions_controller.rb
75
+ - app/controllers/next_sgad/goals_controller.rb
76
+ - app/controllers/next_sgad/justifications_controller.rb
77
+ - app/controllers/next_sgad/positions_controller.rb
78
+ - app/controllers/next_sgad/results_controller.rb
79
+ - app/helpers/next_sgad/activities_helper.rb
80
+ - app/helpers/next_sgad/application_helper.rb
81
+ - app/helpers/next_sgad/assessments_helper.rb
82
+ - app/helpers/next_sgad/attendances_helper.rb
83
+ - app/helpers/next_sgad/configurations_helper.rb
84
+ - app/helpers/next_sgad/departments_helper.rb
85
+ - app/helpers/next_sgad/employee_goals_helper.rb
86
+ - app/helpers/next_sgad/employees_helper.rb
87
+ - app/helpers/next_sgad/functions_helper.rb
88
+ - app/helpers/next_sgad/goals_helper.rb
89
+ - app/helpers/next_sgad/justifications_helper.rb
90
+ - app/helpers/next_sgad/positions_helper.rb
91
+ - app/helpers/next_sgad/results_helper.rb
92
+ - app/jobs/next_sgad/application_job.rb
93
+ - app/mailers/next_sgad/application_mailer.rb
94
+ - app/models/next_sgad/activity.rb
95
+ - app/models/next_sgad/application_record.rb
96
+ - app/models/next_sgad/assessment.rb
97
+ - app/models/next_sgad/attendance.rb
98
+ - app/models/next_sgad/configuration.rb
99
+ - app/models/next_sgad/department.rb
100
+ - app/models/next_sgad/employee.rb
101
+ - app/models/next_sgad/employee_goal.rb
102
+ - app/models/next_sgad/function.rb
103
+ - app/models/next_sgad/goal.rb
104
+ - app/models/next_sgad/justification.rb
105
+ - app/models/next_sgad/position.rb
106
+ - app/models/next_sgad/result.rb
107
+ - app/models/next_sgad/setting.rb
108
+ - app/views/layouts/next_sgad/application.html.erb
109
+ - app/views/next_sgad/activities/_form.html.erb
110
+ - app/views/next_sgad/activities/edit.html.erb
111
+ - app/views/next_sgad/activities/index.html.erb
112
+ - app/views/next_sgad/activities/new.html.erb
113
+ - app/views/next_sgad/activities/show.html.erb
114
+ - app/views/next_sgad/assessments/_form.html.erb
115
+ - app/views/next_sgad/assessments/edit.html.erb
116
+ - app/views/next_sgad/assessments/index.html.erb
117
+ - app/views/next_sgad/assessments/new.html.erb
118
+ - app/views/next_sgad/assessments/show.html.erb
119
+ - app/views/next_sgad/attendances/_form.html.erb
120
+ - app/views/next_sgad/attendances/edit.html.erb
121
+ - app/views/next_sgad/attendances/index.html.erb
122
+ - app/views/next_sgad/attendances/new.html.erb
123
+ - app/views/next_sgad/attendances/show.html.erb
124
+ - app/views/next_sgad/configurations/_form.html.erb
125
+ - app/views/next_sgad/configurations/edit.html.erb
126
+ - app/views/next_sgad/configurations/index.html.erb
127
+ - app/views/next_sgad/configurations/new.html.erb
128
+ - app/views/next_sgad/configurations/show.html.erb
129
+ - app/views/next_sgad/departments/_form.html.erb
130
+ - app/views/next_sgad/departments/edit.html.erb
131
+ - app/views/next_sgad/departments/index.html.erb
132
+ - app/views/next_sgad/departments/new.html.erb
133
+ - app/views/next_sgad/departments/show.html.erb
134
+ - app/views/next_sgad/employee_goals/_form.html.erb
135
+ - app/views/next_sgad/employee_goals/edit.html.erb
136
+ - app/views/next_sgad/employee_goals/index.html.erb
137
+ - app/views/next_sgad/employee_goals/new.html.erb
138
+ - app/views/next_sgad/employee_goals/show.html.erb
139
+ - app/views/next_sgad/employees/_form.html.erb
140
+ - app/views/next_sgad/employees/_organigrama.html.erb
141
+ - app/views/next_sgad/employees/edit.html.erb
142
+ - app/views/next_sgad/employees/index.html.erb
143
+ - app/views/next_sgad/employees/new.html.erb
144
+ - app/views/next_sgad/employees/show.html.erb
145
+ - app/views/next_sgad/functions/_form.html.erb
146
+ - app/views/next_sgad/functions/edit.html.erb
147
+ - app/views/next_sgad/functions/index.html.erb
148
+ - app/views/next_sgad/functions/new.html.erb
149
+ - app/views/next_sgad/functions/show.html.erb
150
+ - app/views/next_sgad/goals/_form.html.erb
151
+ - app/views/next_sgad/goals/edit.html.erb
152
+ - app/views/next_sgad/goals/index.html.erb
153
+ - app/views/next_sgad/goals/new.html.erb
154
+ - app/views/next_sgad/goals/show.html.erb
155
+ - app/views/next_sgad/justifications/_form.html.erb
156
+ - app/views/next_sgad/justifications/edit.html.erb
157
+ - app/views/next_sgad/justifications/index.html.erb
158
+ - app/views/next_sgad/justifications/new.html.erb
159
+ - app/views/next_sgad/justifications/show.html.erb
160
+ - app/views/next_sgad/positions/_form.html.erb
161
+ - app/views/next_sgad/positions/edit.html.erb
162
+ - app/views/next_sgad/positions/index.html.erb
163
+ - app/views/next_sgad/positions/new.html.erb
164
+ - app/views/next_sgad/positions/organigram.html.erb
165
+ - app/views/next_sgad/positions/show.html.erb
166
+ - app/views/next_sgad/results/_form.html.erb
167
+ - app/views/next_sgad/results/edit.html.erb
168
+ - app/views/next_sgad/results/index.html.erb
169
+ - app/views/next_sgad/results/new.html.erb
170
+ - app/views/next_sgad/results/show.html.erb
171
+ - config/initializers/core_extentions.rb
172
+ - config/initializers/initializer.rb
173
+ - config/initializers/m.rb
174
+ - config/initializers/semper.rb
175
+ - config/routes.rb
176
+ - db/migrate/20171014174705_create_next_sgad_departments.rb
177
+ - db/migrate/20171014175212_create_next_sgad_employees.rb
178
+ - db/migrate/20171014175507_create_next_sgad_positions.rb
179
+ - db/migrate/20171014183337_create_next_sgad_configurations.rb
180
+ - db/migrate/20171015073528_add_next_sgad_department_to_department.rb
181
+ - db/migrate/20171019142918_remove_table_configurations.rb
182
+ - db/migrate/20171019143336_create_next_sgad_settings.rb
183
+ - db/migrate/20171022113005_add_paygrade_to_next_sgad_employee.rb
184
+ - db/migrate/20171024154422_create_next_sgad_assessments.rb
185
+ - db/migrate/20171024172007_create_next_sgad_goals.rb
186
+ - db/migrate/20171024181227_create_next_sgad_employee_goals.rb
187
+ - db/migrate/20171024192907_corrects_references.rb
188
+ - db/migrate/20171024193750_copies_info_from_old_references.rb
189
+ - db/migrate/20171025093224_change_column_year_from_assessments.rb
190
+ - db/migrate/20171025134655_add_goal_type_to_employee_goals.rb
191
+ - db/migrate/20171025135319_addname_to_next_sgad_employee_goals.rb
192
+ - db/migrate/20171025153545_add_position_reference_to_goals.rb
193
+ - db/migrate/20171026055530_add_position_to_next_sgad_goals.rb
194
+ - db/migrate/20171026060110_add_position_to_next_sgad_employee.rb
195
+ - db/migrate/20171026060351_copies_posiiton_id_to_employees.rb
196
+ - db/migrate/20171026061315_remove_old_reference_columns.rb
197
+ - db/migrate/20171026115447_add_description_to_next_sgad_goals.rb
198
+ - db/migrate/20171026142240_add_position_to_next_sgad_employee_goals.rb
199
+ - db/migrate/20171027210543_create_next_sgad_functions.rb
200
+ - db/migrate/20171027210912_add_function_to_next_sgad_positions.rb
201
+ - db/migrate/20171027213833_create_join_table_goal_position.rb
202
+ - db/migrate/20171027221550_create_join_table_employee_position.rb
203
+ - db/migrate/20171027223737_add_efective_to_next_sgad_positions.rb
204
+ - db/migrate/20171027230032_remove_position_from_next_sgad_employee.rb
205
+ - db/migrate/20171027230033_clear_data.rb
206
+ - db/migrate/20171028061909_add_description_to_next_sgad_functions.rb
207
+ - db/migrate/20171028140106_add_percentages_to_next_sagad_assessments.rb
208
+ - db/migrate/20171029074321_rename_paygrade_and_level_from_employee.rb
209
+ - db/migrate/20171029103212_add_email_to_next_sgad_employee.rb
210
+ - db/migrate/20171029154047_add_coment_to_next_sgad_employee_goals.rb
211
+ - db/migrate/20171029160044_add_amount_to_next_sgad_employee_goals.rb
212
+ - db/migrate/20171101112232_change_self_assessment_from_next_sgad_employee_goals.rb
213
+ - db/migrate/20171106113735_add_first_name_to_next_sgad_employees.rb
214
+ - db/migrate/20171110103155_add_number_to_next_sgad_functions.rb
215
+ - db/migrate/20171111081148_create_next_sgad_justifications.rb
216
+ - db/migrate/20171111093506_create_next_sgad_attendances.rb
217
+ - db/migrate/20171111093524_add_references_to_justifications_and_attendences.rb
218
+ - db/migrate/20171111094154_create_join_table_attendance_justification.rb
219
+ - db/migrate/20171111121753_create_next_sgad_results.rb
220
+ - db/migrate/20171111121935_resolts_relationship.rb
221
+ - db/migrate/20171112004221_add_attendance_percentage_to_next_sgad_assessment.rb
222
+ - db/migrate/20171112121440_add_status_to_next_sgad_justifications.rb
223
+ - db/migrate/20171112172436_add_department_to_attendances.rb
224
+ - db/migrate/20171113125224_add_configuration_columns_to_nexts_sgad_assessment.rb
225
+ - db/migrate/20171113143825_add_max_number_of_absences_for_five_to_next_sgad_assessments.rb
226
+ - db/migrate/20171114135601_change_column_status_from_result.rb
227
+ - db/migrate/20171115085324_create_next_sgad_activities.rb
228
+ - db/migrate/20171115110522_add_column_nature_and_value_to_results.rb
229
+ - db/migrate/20171115111821_remove_unused_columns.rb
230
+ - db/migrate/20171115140048_corrects_status.rb
231
+ - db/migrate/20171115160122_add_justification_status_to_next_sgad_attendances.rb
232
+ - db/migrate/20171115161157_migrate_fill_justification_columns.rb
233
+ - lib/concerns/models/employee.rb
234
+ - lib/generators/initializer/USAGE
235
+ - lib/generators/initializer/initializer_generator.rb
236
+ - lib/generators/initializer/templates/initializer.rb
237
+ - lib/generators/initializer_generator.rb
238
+ - lib/generators/views/USAGE
239
+ - lib/generators/views/views_generator.rb
240
+ - lib/next_sgad.rb
241
+ - lib/next_sgad/engine.rb
242
+ - lib/next_sgad/version.rb
243
+ - lib/tasks/next_sgad_tasks.rake
244
+ homepage: http://www.smarttechys.co.ao
245
+ licenses:
246
+ - MIT
247
+ metadata: {}
248
+ post_install_message:
249
+ rdoc_options: []
250
+ require_paths:
251
+ - lib
252
+ required_ruby_version: !ruby/object:Gem::Requirement
253
+ requirements:
254
+ - - ">="
255
+ - !ruby/object:Gem::Version
256
+ version: '0'
257
+ required_rubygems_version: !ruby/object:Gem::Requirement
258
+ requirements:
259
+ - - ">="
260
+ - !ruby/object:Gem::Version
261
+ version: '0'
262
+ requirements: []
263
+ rubyforge_project:
264
+ rubygems_version: 2.6.10
265
+ signing_key:
266
+ specification_version: 4
267
+ summary: SGAD
268
+ test_files: []