ezii-os 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/Aptfile +2 -0
  3. data/Gemfile +3 -1
  4. data/Gemfile.lock +27 -0
  5. data/Procfile +2 -1
  6. data/app/assets/stylesheets/banal/brainstorms.scss +3 -0
  7. data/app/assets/stylesheets/banal/projects.scss +3 -0
  8. data/app/assets/stylesheets/tasks.scss +3 -0
  9. data/app/controllers/application_controller.rb +9 -0
  10. data/app/controllers/banal/brainstorms_controller.rb +74 -0
  11. data/app/controllers/banal/projects_controller.rb +74 -0
  12. data/app/controllers/directories_controller.rb +2 -2
  13. data/app/controllers/ezii_os_files_controller.rb +17 -0
  14. data/app/controllers/tasks_controller.rb +74 -0
  15. data/app/helpers/banal/brainstorms_helper.rb +2 -0
  16. data/app/helpers/banal/projects_helper.rb +2 -0
  17. data/app/helpers/tasks_helper.rb +2 -0
  18. data/app/models/banal/brainstorm.rb +2 -0
  19. data/app/models/banal/project.rb +4 -0
  20. data/app/models/banal.rb +5 -0
  21. data/app/models/ezii_os_path.rb +2 -1
  22. data/app/models/task.rb +2 -0
  23. data/app/views/application/_navbar.html.erb +20 -0
  24. data/app/views/banal/brainstorms/_banal_brainstorm.json.jbuilder +2 -0
  25. data/app/views/banal/brainstorms/_form.html.erb +47 -0
  26. data/app/views/banal/brainstorms/edit.html.erb +6 -0
  27. data/app/views/banal/brainstorms/index.html.erb +37 -0
  28. data/app/views/banal/brainstorms/index.json.jbuilder +1 -0
  29. data/app/views/banal/brainstorms/new.html.erb +5 -0
  30. data/app/views/banal/brainstorms/show.html.erb +34 -0
  31. data/app/views/banal/brainstorms/show.json.jbuilder +1 -0
  32. data/app/views/banal/projects/_banal_project.json.jbuilder +2 -0
  33. data/app/views/banal/projects/_form.html.erb +22 -0
  34. data/app/views/banal/projects/edit.html.erb +6 -0
  35. data/app/views/banal/projects/index.html.erb +27 -0
  36. data/app/views/banal/projects/index.json.jbuilder +1 -0
  37. data/app/views/banal/projects/new.html.erb +5 -0
  38. data/app/views/banal/projects/show.html.erb +9 -0
  39. data/app/views/banal/projects/show.json.jbuilder +1 -0
  40. data/app/views/directories/show.html.erb +8 -4
  41. data/app/views/ezii_os_files/_entity_visual_selection.html.erb +66 -0
  42. data/app/views/ezii_os_files/_wit_ai_widget.html.erb +80 -72
  43. data/app/views/layouts/application.html.erb +26 -197
  44. data/app/views/layouts/application_legacy.html.erb +212 -0
  45. data/app/views/tasks/_form.html.erb +37 -0
  46. data/app/views/tasks/_task.json.jbuilder +2 -0
  47. data/app/views/tasks/edit.html.erb +6 -0
  48. data/app/views/tasks/index.html.erb +33 -0
  49. data/app/views/tasks/index.json.jbuilder +1 -0
  50. data/app/views/tasks/new.html.erb +5 -0
  51. data/app/views/tasks/show.html.erb +12 -0
  52. data/app/views/tasks/show.json.jbuilder +1 -0
  53. data/config/routes.rb +7 -0
  54. data/db/development.sqlite3 +0 -0
  55. data/db/migrate/20190912113509_create_tasks.rb +12 -0
  56. data/db/migrate/20190912173649_create_banal_projects.rb +9 -0
  57. data/db/migrate/20190912173916_create_banal_brainstorms.rb +14 -0
  58. data/db/seeds.rb +7 -0
  59. data/ezii-os.gemspec +1 -1
  60. data/lib/tasks/rgeo_supports_geos.rake +6 -0
  61. data/lib/tasks/task.rake +5 -5
  62. data/log/development.log +8016 -0
  63. data/test/controllers/banal/brainstorms_controller_test.rb +48 -0
  64. data/test/controllers/banal/projects_controller_test.rb +48 -0
  65. data/test/controllers/tasks_controller_test.rb +48 -0
  66. data/test/fixtures/banal/brainstorms.yml +17 -0
  67. data/test/fixtures/banal/projects.yml +7 -0
  68. data/test/fixtures/tasks.yml +13 -0
  69. data/test/models/banal/brainstorm_test.rb +7 -0
  70. data/test/models/banal/project_test.rb +7 -0
  71. data/test/models/task_test.rb +7 -0
  72. data/test/system/banal/brainstorms_test.rb +53 -0
  73. data/test/system/banal/projects_test.rb +43 -0
  74. data/test/system/tasks_test.rb +49 -0
  75. metadata +58 -4
  76. data/app/assets/stylesheets/scaffolds.scss +0 -84
  77. data/ezii-os-0.0.0.0.1.gem +0 -0
  78. data/ezii-os-0.0.0.1.0.gem +0 -0
@@ -0,0 +1,48 @@
1
+ require 'test_helper'
2
+
3
+ class Banal::BrainstormsControllerTest < ActionDispatch::IntegrationTest
4
+ setup do
5
+ @banal_brainstorm = banal_brainstorms(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get banal_brainstorms_url
10
+ assert_response :success
11
+ end
12
+
13
+ test "should get new" do
14
+ get new_banal_brainstorm_url
15
+ assert_response :success
16
+ end
17
+
18
+ test "should create banal_brainstorm" do
19
+ assert_difference('Banal::Brainstorm.count') do
20
+ post banal_brainstorms_url, params: { banal_brainstorm: { comments: @banal_brainstorm.comments, idea: @banal_brainstorm.idea, idea_owner: @banal_brainstorm.idea_owner, main_category: @banal_brainstorm.main_category, priority: @banal_brainstorm.priority, status: @banal_brainstorm.status } }
21
+ end
22
+
23
+ assert_redirected_to banal_brainstorm_url(Banal::Brainstorm.last)
24
+ end
25
+
26
+ test "should show banal_brainstorm" do
27
+ get banal_brainstorm_url(@banal_brainstorm)
28
+ assert_response :success
29
+ end
30
+
31
+ test "should get edit" do
32
+ get edit_banal_brainstorm_url(@banal_brainstorm)
33
+ assert_response :success
34
+ end
35
+
36
+ test "should update banal_brainstorm" do
37
+ patch banal_brainstorm_url(@banal_brainstorm), params: { banal_brainstorm: { comments: @banal_brainstorm.comments, idea: @banal_brainstorm.idea, idea_owner: @banal_brainstorm.idea_owner, main_category: @banal_brainstorm.main_category, priority: @banal_brainstorm.priority, status: @banal_brainstorm.status } }
38
+ assert_redirected_to banal_brainstorm_url(@banal_brainstorm)
39
+ end
40
+
41
+ test "should destroy banal_brainstorm" do
42
+ assert_difference('Banal::Brainstorm.count', -1) do
43
+ delete banal_brainstorm_url(@banal_brainstorm)
44
+ end
45
+
46
+ assert_redirected_to banal_brainstorms_url
47
+ end
48
+ end
@@ -0,0 +1,48 @@
1
+ require 'test_helper'
2
+
3
+ class Banal::ProjectsControllerTest < ActionDispatch::IntegrationTest
4
+ setup do
5
+ @banal_project = banal_projects(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get banal_projects_url
10
+ assert_response :success
11
+ end
12
+
13
+ test "should get new" do
14
+ get new_banal_project_url
15
+ assert_response :success
16
+ end
17
+
18
+ test "should create banal_project" do
19
+ assert_difference('Banal::Project.count') do
20
+ post banal_projects_url, params: { banal_project: { name: @banal_project.name } }
21
+ end
22
+
23
+ assert_redirected_to banal_project_url(Banal::Project.last)
24
+ end
25
+
26
+ test "should show banal_project" do
27
+ get banal_project_url(@banal_project)
28
+ assert_response :success
29
+ end
30
+
31
+ test "should get edit" do
32
+ get edit_banal_project_url(@banal_project)
33
+ assert_response :success
34
+ end
35
+
36
+ test "should update banal_project" do
37
+ patch banal_project_url(@banal_project), params: { banal_project: { name: @banal_project.name } }
38
+ assert_redirected_to banal_project_url(@banal_project)
39
+ end
40
+
41
+ test "should destroy banal_project" do
42
+ assert_difference('Banal::Project.count', -1) do
43
+ delete banal_project_url(@banal_project)
44
+ end
45
+
46
+ assert_redirected_to banal_projects_url
47
+ end
48
+ end
@@ -0,0 +1,48 @@
1
+ require 'test_helper'
2
+
3
+ class TasksControllerTest < ActionDispatch::IntegrationTest
4
+ setup do
5
+ @task = tasks(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get tasks_url
10
+ assert_response :success
11
+ end
12
+
13
+ test "should get new" do
14
+ get new_task_url
15
+ assert_response :success
16
+ end
17
+
18
+ test "should create task" do
19
+ assert_difference('Task.count') do
20
+ post tasks_url, params: { task: { briefing: @task.briefing, cta_copy: @task.cta_copy, reward: @task.reward, title: @task.title } }
21
+ end
22
+
23
+ assert_redirected_to task_url(Task.last)
24
+ end
25
+
26
+ test "should show task" do
27
+ get task_url(@task)
28
+ assert_response :success
29
+ end
30
+
31
+ test "should get edit" do
32
+ get edit_task_url(@task)
33
+ assert_response :success
34
+ end
35
+
36
+ test "should update task" do
37
+ patch task_url(@task), params: { task: { briefing: @task.briefing, cta_copy: @task.cta_copy, reward: @task.reward, title: @task.title } }
38
+ assert_redirected_to task_url(@task)
39
+ end
40
+
41
+ test "should destroy task" do
42
+ assert_difference('Task.count', -1) do
43
+ delete task_url(@task)
44
+ end
45
+
46
+ assert_redirected_to tasks_url
47
+ end
48
+ end
@@ -0,0 +1,17 @@
1
+ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ idea: MyText
5
+ main_category: MyString
6
+ priority: MyString
7
+ status: MyString
8
+ comments: MyText
9
+ idea_owner: MyString
10
+
11
+ two:
12
+ idea: MyText
13
+ main_category: MyString
14
+ priority: MyString
15
+ status: MyString
16
+ comments: MyText
17
+ idea_owner: MyString
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+
6
+ two:
7
+ name: MyString
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ reward: 1
5
+ title: MyString
6
+ briefing: MyText
7
+ cta_copy: MyString
8
+
9
+ two:
10
+ reward: 1
11
+ title: MyString
12
+ briefing: MyText
13
+ cta_copy: MyString
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Banal::BrainstormTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Banal::ProjectTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class TaskTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,53 @@
1
+ require "application_system_test_case"
2
+
3
+ class Banal::BrainstormsTest < ApplicationSystemTestCase
4
+ setup do
5
+ @banal_brainstorm = banal_brainstorms(:one)
6
+ end
7
+
8
+ test "visiting the index" do
9
+ visit banal_brainstorms_url
10
+ assert_selector "h1", text: "Banal/Brainstorms"
11
+ end
12
+
13
+ test "creating a Brainstorm" do
14
+ visit banal_brainstorms_url
15
+ click_on "New Banal/Brainstorm"
16
+
17
+ fill_in "Comments", with: @banal_brainstorm.comments
18
+ fill_in "Idea", with: @banal_brainstorm.idea
19
+ fill_in "Idea owner", with: @banal_brainstorm.idea_owner
20
+ fill_in "Main category", with: @banal_brainstorm.main_category
21
+ fill_in "Priority", with: @banal_brainstorm.priority
22
+ fill_in "Status", with: @banal_brainstorm.status
23
+ click_on "Create Brainstorm"
24
+
25
+ assert_text "Brainstorm was successfully created"
26
+ click_on "Back"
27
+ end
28
+
29
+ test "updating a Brainstorm" do
30
+ visit banal_brainstorms_url
31
+ click_on "Edit", match: :first
32
+
33
+ fill_in "Comments", with: @banal_brainstorm.comments
34
+ fill_in "Idea", with: @banal_brainstorm.idea
35
+ fill_in "Idea owner", with: @banal_brainstorm.idea_owner
36
+ fill_in "Main category", with: @banal_brainstorm.main_category
37
+ fill_in "Priority", with: @banal_brainstorm.priority
38
+ fill_in "Status", with: @banal_brainstorm.status
39
+ click_on "Update Brainstorm"
40
+
41
+ assert_text "Brainstorm was successfully updated"
42
+ click_on "Back"
43
+ end
44
+
45
+ test "destroying a Brainstorm" do
46
+ visit banal_brainstorms_url
47
+ page.accept_confirm do
48
+ click_on "Destroy", match: :first
49
+ end
50
+
51
+ assert_text "Brainstorm was successfully destroyed"
52
+ end
53
+ end
@@ -0,0 +1,43 @@
1
+ require "application_system_test_case"
2
+
3
+ class Banal::ProjectsTest < ApplicationSystemTestCase
4
+ setup do
5
+ @banal_project = banal_projects(:one)
6
+ end
7
+
8
+ test "visiting the index" do
9
+ visit banal_projects_url
10
+ assert_selector "h1", text: "Banal/Projects"
11
+ end
12
+
13
+ test "creating a Project" do
14
+ visit banal_projects_url
15
+ click_on "New Banal/Project"
16
+
17
+ fill_in "Name", with: @banal_project.name
18
+ click_on "Create Project"
19
+
20
+ assert_text "Project was successfully created"
21
+ click_on "Back"
22
+ end
23
+
24
+ test "updating a Project" do
25
+ visit banal_projects_url
26
+ click_on "Edit", match: :first
27
+
28
+ fill_in "Name", with: @banal_project.name
29
+ click_on "Update Project"
30
+
31
+ assert_text "Project was successfully updated"
32
+ click_on "Back"
33
+ end
34
+
35
+ test "destroying a Project" do
36
+ visit banal_projects_url
37
+ page.accept_confirm do
38
+ click_on "Destroy", match: :first
39
+ end
40
+
41
+ assert_text "Project was successfully destroyed"
42
+ end
43
+ end
@@ -0,0 +1,49 @@
1
+ require "application_system_test_case"
2
+
3
+ class TasksTest < ApplicationSystemTestCase
4
+ setup do
5
+ @task = tasks(:one)
6
+ end
7
+
8
+ test "visiting the index" do
9
+ visit tasks_url
10
+ assert_selector "h1", text: "Tasks"
11
+ end
12
+
13
+ test "creating a Task" do
14
+ visit tasks_url
15
+ click_on "New Task"
16
+
17
+ fill_in "Briefing", with: @task.briefing
18
+ fill_in "Cta copy", with: @task.cta_copy
19
+ fill_in "Reward", with: @task.reward
20
+ fill_in "Title", with: @task.title
21
+ click_on "Create Task"
22
+
23
+ assert_text "Task was successfully created"
24
+ click_on "Back"
25
+ end
26
+
27
+ test "updating a Task" do
28
+ visit tasks_url
29
+ click_on "Edit", match: :first
30
+
31
+ fill_in "Briefing", with: @task.briefing
32
+ fill_in "Cta copy", with: @task.cta_copy
33
+ fill_in "Reward", with: @task.reward
34
+ fill_in "Title", with: @task.title
35
+ click_on "Update Task"
36
+
37
+ assert_text "Task was successfully updated"
38
+ click_on "Back"
39
+ end
40
+
41
+ test "destroying a Task" do
42
+ visit tasks_url
43
+ page.accept_confirm do
44
+ click_on "Destroy", match: :first
45
+ end
46
+
47
+ assert_text "Task was successfully destroyed"
48
+ end
49
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ezii-os
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Arno Korfmann
@@ -16,6 +16,7 @@ executables: []
16
16
  extensions: []
17
17
  extra_rdoc_files: []
18
18
  files:
19
+ - Aptfile
19
20
  - Gemfile
20
21
  - Gemfile.lock
21
22
  - "Icon\r"
@@ -25,6 +26,8 @@ files:
25
26
  - app/assets/config/manifest.js
26
27
  - app/assets/stylesheets/apis.scss
27
28
  - app/assets/stylesheets/application.css
29
+ - app/assets/stylesheets/banal/brainstorms.scss
30
+ - app/assets/stylesheets/banal/projects.scss
28
31
  - app/assets/stylesheets/banal_business_testcases.scss
29
32
  - app/assets/stylesheets/basecamp_integrations.scss
30
33
  - app/assets/stylesheets/code_change_requests.scss
@@ -39,8 +42,8 @@ files:
39
42
  - app/assets/stylesheets/file_systems.scss
40
43
  - app/assets/stylesheets/imported_data.scss
41
44
  - app/assets/stylesheets/partners/get_paids.scss
42
- - app/assets/stylesheets/scaffolds.scss
43
45
  - app/assets/stylesheets/searches.scss
46
+ - app/assets/stylesheets/tasks.scss
44
47
  - app/assets/stylesheets/types.scss
45
48
  - app/assets/stylesheets/unzips.scss
46
49
  - app/assets/stylesheets/wit_ai_parse_model_examples.scss
@@ -49,6 +52,8 @@ files:
49
52
  - app/channels/application_cable/connection.rb
50
53
  - app/controllers/apis_controller.rb
51
54
  - app/controllers/application_controller.rb
55
+ - app/controllers/banal/brainstorms_controller.rb
56
+ - app/controllers/banal/projects_controller.rb
52
57
  - app/controllers/banal_business_testcases_controller.rb
53
58
  - app/controllers/basecamp_integrations_controller.rb
54
59
  - app/controllers/code_change_requests_controller.rb
@@ -64,12 +69,15 @@ files:
64
69
  - app/controllers/imported_data_controller.rb
65
70
  - app/controllers/partners/get_paids_controller.rb
66
71
  - app/controllers/searches_controller.rb
72
+ - app/controllers/tasks_controller.rb
67
73
  - app/controllers/types_controller.rb
68
74
  - app/controllers/unzips_controller.rb
69
75
  - app/controllers/wit_ai_parse_model_examples_controller.rb
70
76
  - app/controllers/wit_ai_parse_models_controller.rb
71
77
  - app/helpers/apis_helper.rb
72
78
  - app/helpers/application_helper.rb
79
+ - app/helpers/banal/brainstorms_helper.rb
80
+ - app/helpers/banal/projects_helper.rb
73
81
  - app/helpers/banal_business_testcases_helper.rb
74
82
  - app/helpers/basecamp_integrations_helper.rb
75
83
  - app/helpers/code_change_requests_helper.rb
@@ -85,6 +93,7 @@ files:
85
93
  - app/helpers/imported_data_helper.rb
86
94
  - app/helpers/partners/get_paids_helper.rb
87
95
  - app/helpers/searches_helper.rb
96
+ - app/helpers/tasks_helper.rb
88
97
  - app/helpers/types_helper.rb
89
98
  - app/helpers/unzips_helper.rb
90
99
  - app/helpers/wit_ai_parse_model_examples_helper.rb
@@ -96,6 +105,9 @@ files:
96
105
  - app/mailers/application_mailer.rb
97
106
  - app/models/api.rb
98
107
  - app/models/application_record.rb
108
+ - app/models/banal.rb
109
+ - app/models/banal/brainstorm.rb
110
+ - app/models/banal/project.rb
99
111
  - app/models/banal_business_testcase.rb
100
112
  - app/models/banal_dropbox_api.rb
101
113
  - app/models/basecamp_integration.rb
@@ -114,6 +126,7 @@ files:
114
126
  - app/models/partners.rb
115
127
  - app/models/partners/get_paid.rb
116
128
  - app/models/search.rb
129
+ - app/models/task.rb
117
130
  - app/models/type.rb
118
131
  - app/models/unzip.rb
119
132
  - app/models/wit_ai_parse_model.rb
@@ -126,6 +139,23 @@ files:
126
139
  - app/views/apis/new.html.erb
127
140
  - app/views/apis/show.html.erb
128
141
  - app/views/apis/show.json.jbuilder
142
+ - app/views/application/_navbar.html.erb
143
+ - app/views/banal/brainstorms/_banal_brainstorm.json.jbuilder
144
+ - app/views/banal/brainstorms/_form.html.erb
145
+ - app/views/banal/brainstorms/edit.html.erb
146
+ - app/views/banal/brainstorms/index.html.erb
147
+ - app/views/banal/brainstorms/index.json.jbuilder
148
+ - app/views/banal/brainstorms/new.html.erb
149
+ - app/views/banal/brainstorms/show.html.erb
150
+ - app/views/banal/brainstorms/show.json.jbuilder
151
+ - app/views/banal/projects/_banal_project.json.jbuilder
152
+ - app/views/banal/projects/_form.html.erb
153
+ - app/views/banal/projects/edit.html.erb
154
+ - app/views/banal/projects/index.html.erb
155
+ - app/views/banal/projects/index.json.jbuilder
156
+ - app/views/banal/projects/new.html.erb
157
+ - app/views/banal/projects/show.html.erb
158
+ - app/views/banal/projects/show.json.jbuilder
129
159
  - app/views/banal_business_testcases/_banal_business_testcase.json.jbuilder
130
160
  - app/views/banal_business_testcases/_form.html.erb
131
161
  - app/views/banal_business_testcases/edit.html.erb
@@ -206,6 +236,7 @@ files:
206
236
  - app/views/ezii_integrations/new.html.erb
207
237
  - app/views/ezii_integrations/show.html.erb
208
238
  - app/views/ezii_integrations/show.json.jbuilder
239
+ - app/views/ezii_os_files/_entity_visual_selection.html.erb
209
240
  - app/views/ezii_os_files/_ezii_os_file.json.jbuilder
210
241
  - app/views/ezii_os_files/_form.html.erb
211
242
  - app/views/ezii_os_files/_wit_ai_widget.html.erb
@@ -225,6 +256,7 @@ files:
225
256
  - app/views/file_systems/show.json.jbuilder
226
257
  - app/views/imported_data/overview.html.erb
227
258
  - app/views/layouts/application.html.erb
259
+ - app/views/layouts/application_legacy.html.erb
228
260
  - app/views/layouts/mailer.html.erb
229
261
  - app/views/layouts/mailer.text.erb
230
262
  - app/views/partners/get_paids/_form.html.erb
@@ -243,6 +275,14 @@ files:
243
275
  - app/views/searches/new.html.erb
244
276
  - app/views/searches/show.html.erb
245
277
  - app/views/searches/show.json.jbuilder
278
+ - app/views/tasks/_form.html.erb
279
+ - app/views/tasks/_task.json.jbuilder
280
+ - app/views/tasks/edit.html.erb
281
+ - app/views/tasks/index.html.erb
282
+ - app/views/tasks/index.json.jbuilder
283
+ - app/views/tasks/new.html.erb
284
+ - app/views/tasks/show.html.erb
285
+ - app/views/tasks/show.json.jbuilder
246
286
  - app/views/types/_form.html.erb
247
287
  - app/views/types/_type.json.jbuilder
248
288
  - app/views/types/edit.html.erb
@@ -340,12 +380,14 @@ files:
340
380
  - db/migrate/20190828104427_create_apis.rb
341
381
  - db/migrate/20190828105156_create_code_link_batches.rb
342
382
  - db/migrate/20190829174432_create_cookie_changes.rb
383
+ - db/migrate/20190912113509_create_tasks.rb
384
+ - db/migrate/20190912173649_create_banal_projects.rb
385
+ - db/migrate/20190912173916_create_banal_brainstorms.rb
343
386
  - db/schema.rb
344
387
  - db/seeds.rb
345
388
  - db/test.sqlite3
346
- - ezii-os-0.0.0.0.1.gem
347
- - ezii-os-0.0.0.1.0.gem
348
389
  - ezii-os.gemspec
390
+ - lib/tasks/rgeo_supports_geos.rake
349
391
  - lib/tasks/task.rake
350
392
  - log/development.log
351
393
  - node_modules/@babel/code-frame/LICENSE
@@ -14526,6 +14568,8 @@ files:
14526
14568
  - test/application_system_test_case.rb
14527
14569
  - test/channels/application_cable/connection_test.rb
14528
14570
  - test/controllers/apis_controller_test.rb
14571
+ - test/controllers/banal/brainstorms_controller_test.rb
14572
+ - test/controllers/banal/projects_controller_test.rb
14529
14573
  - test/controllers/banal_business_testcases_controller_test.rb
14530
14574
  - test/controllers/basecamp_integrations_controller_test.rb
14531
14575
  - test/controllers/code_change_requests_controller_test.rb
@@ -14541,11 +14585,14 @@ files:
14541
14585
  - test/controllers/imported_data_controller_test.rb
14542
14586
  - test/controllers/partners/get_paids_controller_test.rb
14543
14587
  - test/controllers/searches_controller_test.rb
14588
+ - test/controllers/tasks_controller_test.rb
14544
14589
  - test/controllers/types_controller_test.rb
14545
14590
  - test/controllers/unzips_controller_test.rb
14546
14591
  - test/controllers/wit_ai_parse_model_examples_controller_test.rb
14547
14592
  - test/controllers/wit_ai_parse_models_controller_test.rb
14548
14593
  - test/fixtures/apis.yml
14594
+ - test/fixtures/banal/brainstorms.yml
14595
+ - test/fixtures/banal/projects.yml
14549
14596
  - test/fixtures/banal_business_testcases.yml
14550
14597
  - test/fixtures/basecamp_integrations.yml
14551
14598
  - test/fixtures/code_change_requests.yml
@@ -14560,11 +14607,14 @@ files:
14560
14607
  - test/fixtures/file_systems.yml
14561
14608
  - test/fixtures/partners/get_paids.yml
14562
14609
  - test/fixtures/searches.yml
14610
+ - test/fixtures/tasks.yml
14563
14611
  - test/fixtures/types.yml
14564
14612
  - test/fixtures/unzips.yml
14565
14613
  - test/fixtures/wit_ai_parse_model_examples.yml
14566
14614
  - test/fixtures/wit_ai_parse_models.yml
14567
14615
  - test/models/api_test.rb
14616
+ - test/models/banal/brainstorm_test.rb
14617
+ - test/models/banal/project_test.rb
14568
14618
  - test/models/banal_business_testcase_test.rb
14569
14619
  - test/models/basecamp_integration_test.rb
14570
14620
  - test/models/code_change_request_test.rb
@@ -14579,11 +14629,14 @@ files:
14579
14629
  - test/models/file_system_test.rb
14580
14630
  - test/models/partners/get_paid_test.rb
14581
14631
  - test/models/search_test.rb
14632
+ - test/models/task_test.rb
14582
14633
  - test/models/type_test.rb
14583
14634
  - test/models/unzip_test.rb
14584
14635
  - test/models/wit_ai_parse_model_example_test.rb
14585
14636
  - test/models/wit_ai_parse_model_test.rb
14586
14637
  - test/system/apis_test.rb
14638
+ - test/system/banal/brainstorms_test.rb
14639
+ - test/system/banal/projects_test.rb
14587
14640
  - test/system/banal_business_testcases_test.rb
14588
14641
  - test/system/basecamp_integrations_test.rb
14589
14642
  - test/system/code_change_requests_test.rb
@@ -14598,6 +14651,7 @@ files:
14598
14651
  - test/system/file_systems_test.rb
14599
14652
  - test/system/partners/get_paids_test.rb
14600
14653
  - test/system/searches_test.rb
14654
+ - test/system/tasks_test.rb
14601
14655
  - test/system/types_test.rb
14602
14656
  - test/system/unzips_test.rb
14603
14657
  - test/system/wit_ai_parse_model_examples_test.rb
@@ -1,84 +0,0 @@
1
- body {
2
- background-color: #fff;
3
- color: #333;
4
- margin: 33px;
5
- font-family: verdana, arial, helvetica, sans-serif;
6
- font-size: 13px;
7
- line-height: 18px;
8
- }
9
-
10
- p, ol, ul, td {
11
- font-family: verdana, arial, helvetica, sans-serif;
12
- font-size: 13px;
13
- line-height: 18px;
14
- }
15
-
16
- pre {
17
- background-color: #eee;
18
- padding: 10px;
19
- font-size: 11px;
20
- }
21
-
22
- a {
23
- color: #000;
24
-
25
- &:visited {
26
- color: #666;
27
- }
28
-
29
- &:hover {
30
- color: #fff;
31
- background-color: #000;
32
- }
33
- }
34
-
35
- th {
36
- padding-bottom: 5px;
37
- }
38
-
39
- td {
40
- padding: 0 5px 7px;
41
- }
42
-
43
- div {
44
- &.field, &.actions {
45
- margin-bottom: 10px;
46
- }
47
- }
48
-
49
- #notice {
50
- color: green;
51
- }
52
-
53
- .field_with_errors {
54
- padding: 2px;
55
- background-color: red;
56
- display: table;
57
- }
58
-
59
- #error_explanation {
60
- width: 450px;
61
- border: 2px solid red;
62
- padding: 7px 7px 0;
63
- margin-bottom: 20px;
64
- background-color: #f0f0f0;
65
-
66
- h2 {
67
- text-align: left;
68
- font-weight: bold;
69
- padding: 5px 5px 5px 15px;
70
- font-size: 12px;
71
- margin: -7px -7px 0;
72
- background-color: #c00;
73
- color: #fff;
74
- }
75
-
76
- ul li {
77
- font-size: 12px;
78
- list-style: square;
79
- }
80
- }
81
-
82
- label {
83
- display: block;
84
- }
Binary file
Binary file