anoubis 1.0.0 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. data/app/controllers/anoubis/application_controller.rb +22 -6
  4. data/app/controllers/anoubis/core/application_controller.rb +6 -6
  5. data/app/controllers/anoubis/core/index/actions.rb +3 -3
  6. data/app/controllers/anoubis/core/index/callbacks.rb +1 -1
  7. data/app/controllers/anoubis/core/index_controller.rb +7 -7
  8. data/app/controllers/anoubis/data/actions.rb +956 -0
  9. data/app/controllers/anoubis/data/callbacks.rb +66 -0
  10. data/app/controllers/anoubis/data/convert.rb +405 -0
  11. data/app/controllers/anoubis/data/defaults.rb +215 -0
  12. data/app/controllers/anoubis/data/get.rb +529 -0
  13. data/app/controllers/anoubis/data/load.rb +87 -0
  14. data/app/controllers/anoubis/data/set.rb +47 -0
  15. data/app/controllers/anoubis/data/setup.rb +102 -0
  16. data/app/controllers/anoubis/data_controller.rb +21 -0
  17. data/app/controllers/anoubis/etc/base.rb +16 -11
  18. data/app/controllers/anoubis/etc/data.rb +1 -1
  19. data/app/controllers/anoubis/etc/field.rb +10 -10
  20. data/app/controllers/anoubis/etc/field_options.rb +1 -1
  21. data/app/controllers/anoubis/etc/field_order.rb +1 -1
  22. data/app/controllers/anoubis/etc/filter.rb +2 -2
  23. data/app/controllers/anoubis/etc/menu.rb +2 -2
  24. data/app/controllers/anoubis/etc/model.rb +1 -1
  25. data/app/controllers/anoubis/etc/tab_item.rb +1 -1
  26. data/app/controllers/anoubis/etc.rb +1 -1
  27. data/app/controllers/anoubis/export.rb +1 -1
  28. data/app/controllers/anoubis/output/autocomplete.rb +1 -1
  29. data/app/controllers/anoubis/output/basic.rb +2 -2
  30. data/app/controllers/anoubis/output/data.rb +1 -1
  31. data/app/controllers/anoubis/output/delete.rb +1 -1
  32. data/app/controllers/anoubis/output/edit.rb +1 -1
  33. data/app/controllers/anoubis/output/frame.rb +5 -5
  34. data/app/controllers/anoubis/output/login.rb +1 -1
  35. data/app/controllers/anoubis/output/menu.rb +3 -3
  36. data/app/controllers/anoubis/output/update.rb +1 -1
  37. data/app/controllers/anoubis/sso/client/application_controller.rb +2 -2
  38. data/app/controllers/anoubis/sso/client/index/actions.rb +6 -6
  39. data/app/controllers/anoubis/sso/client/index/callbacks.rb +1 -1
  40. data/app/controllers/anoubis/sso/client/index_controller.rb +5 -5
  41. data/app/controllers/anoubis/sso/server/application_controller.rb +2 -2
  42. data/app/controllers/anoubis/sso/server/login_controller.rb +6 -6
  43. data/app/controllers/anoubis/sso/server/user_controller.rb +3 -3
  44. data/app/controllers/anoubis/tenant/application_controller.rb +4 -4
  45. data/app/controllers/anoubis/tenant/index/actions.rb +15 -15
  46. data/app/controllers/anoubis/tenant/index/callbacks.rb +2 -2
  47. data/app/controllers/anoubis/tenant/index_controller.rb +7 -7
  48. data/app/models/anoubis/application_record.rb +90 -2
  49. data/app/models/anoubis/core/application_record.rb +3 -3
  50. data/app/models/anoubis/sso/client/group_menu.rb +6 -6
  51. data/app/models/anoubis/sso/client/menu.rb +8 -8
  52. data/app/models/anoubis/sso/client/user.rb +3 -3
  53. data/app/models/anoubis/sso/server/user.rb +1 -1
  54. data/app/models/anoubis/tenant/group_menu.rb +5 -5
  55. data/app/models/anoubis/tenant/menu.rb +13 -13
  56. data/app/models/anoubis/tenant/system.rb +5 -5
  57. data/app/models/anoubis/tenant/user.rb +4 -4
  58. data/app/services/anoubis/log_service.rb +97 -0
  59. data/app/services/anoubis/request_service.rb +134 -0
  60. data/app/services/anoubis/session_service.rb +1 -1
  61. data/config/locales/en.yml +31 -2
  62. data/config/locales/ru.yml +32 -5
  63. data/config/routes.rb +19 -19
  64. data/db/seeds.rb +30 -30
  65. data/lib/anoubis/version.rb +1 -1
  66. data/lib/anoubis.rb +1 -1
  67. data/spec/controllers/anoubis/index_controller_spec.rb +1 -1
  68. data/spec/dummy/log/development.log +0 -0
  69. data/spec/dummy/log/test.log +0 -0
  70. data/spec/dummy/tmp/development_secret.txt +1 -0
  71. data/spec/models/anoubis/group_locale_spec.rb +1 -1
  72. data/spec/models/anoubis/group_menu_spec.rb +6 -6
  73. data/spec/models/anoubis/group_spec.rb +3 -3
  74. data/spec/models/anoubis/menu_locale_spec.rb +1 -1
  75. data/spec/models/anoubis/menu_spec.rb +1 -1
  76. data/spec/models/anoubis/system_locale_spec.rb +1 -1
  77. data/spec/models/anoubis/system_menu_spec.rb +5 -5
  78. data/spec/models/anoubis/system_spec.rb +4 -4
  79. data/spec/models/anoubis/tenant_spec.rb +4 -4
  80. data/spec/models/anoubis/user_spec.rb +2 -2
  81. metadata +92 -87
  82. data/app/controllers/anoubis/core/data/actions.rb +0 -962
  83. data/app/controllers/anoubis/core/data/callbacks.rb +0 -68
  84. data/app/controllers/anoubis/core/data/convert.rb +0 -407
  85. data/app/controllers/anoubis/core/data/defaults.rb +0 -217
  86. data/app/controllers/anoubis/core/data/get.rb +0 -531
  87. data/app/controllers/anoubis/core/data/load.rb +0 -89
  88. data/app/controllers/anoubis/core/data/set.rb +0 -49
  89. data/app/controllers/anoubis/core/data/setup.rb +0 -104
  90. data/app/controllers/anoubis/core/data_controller.rb +0 -28
  91. data/app/controllers/anoubis/sso/client/data/actions.rb +0 -5
  92. data/app/controllers/anoubis/sso/client/data/callbacks.rb +0 -5
  93. data/app/controllers/anoubis/sso/client/data/convert.rb +0 -5
  94. data/app/controllers/anoubis/sso/client/data/defaults.rb +0 -5
  95. data/app/controllers/anoubis/sso/client/data/get.rb +0 -5
  96. data/app/controllers/anoubis/sso/client/data/load.rb +0 -26
  97. data/app/controllers/anoubis/sso/client/data/set.rb +0 -5
  98. data/app/controllers/anoubis/sso/client/data/setup.rb +0 -5
  99. data/app/controllers/anoubis/sso/client/data_controller.rb +0 -21
  100. data/app/controllers/anoubis/tenant/data/actions.rb +0 -11
  101. data/app/controllers/anoubis/tenant/data/callbacks.rb +0 -11
  102. data/app/controllers/anoubis/tenant/data/convert.rb +0 -11
  103. data/app/controllers/anoubis/tenant/data/defaults.rb +0 -11
  104. data/app/controllers/anoubis/tenant/data/get.rb +0 -11
  105. data/app/controllers/anoubis/tenant/data/load.rb +0 -52
  106. data/app/controllers/anoubis/tenant/data/set.rb +0 -11
  107. data/app/controllers/anoubis/tenant/data/setup.rb +0 -11
  108. data/app/controllers/anoubis/tenant/data_controller.rb +0 -28
  109. data/app/controllers/anoubis/tenants_controller.rb +0 -7
  110. data/app/controllers/anoubis/users_controller.rb +0 -7
  111. data/app/mailers/anoubis/application_mailer.rb +0 -8
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe Group, type: :model do
5
5
  it "is valid" do
6
6
  expect(build_stubbed(:group)).to be_valid
@@ -32,7 +32,7 @@ module Anubis
32
32
 
33
33
  it "can't change admin group ident" do
34
34
  system = create :system
35
- group = Anubis::Group.where(system: system, ident: 'admin').first
35
+ group = Anoubis::Group.where(system: system, ident: 'admin').first
36
36
  group.ident = 'tst'
37
37
  expect(group.save).to eq false
38
38
  end
@@ -44,7 +44,7 @@ module Anubis
44
44
  end
45
45
 
46
46
  it "can't destroy admin group of main system" do
47
- group = Anubis::Group.where(system_id: 1, ident: 'admin').first
47
+ group = Anoubis::Group.where(system_id: 1, ident: 'admin').first
48
48
  group.destroy
49
49
  expect(group.destroyed?).to eq false
50
50
  end
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe MenuLocale, type: :model do
5
5
  it "has short title" do
6
6
  expect(build_stubbed(:menu_locale, title: 'T'*2)).to be_invalid
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe Menu, type: :model do
5
5
  it "is valid" do
6
6
  expect(build_stubbed(:menu)).to be_valid
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe SystemLocale, type: :model do
5
5
  it "has short title" do
6
6
  expect(build_stubbed(:system_locale, title: 'T'*2)).to be_invalid
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe SystemMenu, type: :model do
5
5
  before(:all) do
6
6
  @system = create :system, ident: 'test'
@@ -20,7 +20,7 @@ module Anubis
20
20
 
21
21
  it "check created tree" do
22
22
  create :system_menu, system: @system, menu: @menu3
23
- expect(Anubis::SystemMenu.where(system: @system).count(:id)).to eq 3
23
+ expect(Anoubis::SystemMenu.where(system: @system).count(:id)).to eq 3
24
24
  end
25
25
 
26
26
  it "can destroy" do
@@ -31,8 +31,8 @@ module Anubis
31
31
 
32
32
  it "can destroy tree" do
33
33
  create :system_menu, system: @system, menu: @menu3
34
- Anubis::SystemMenu.where(system: @system, menu: @menu1).first.destroy
35
- expect(Anubis::SystemMenu.where(system: @system).count(:id)).to eq 0
34
+ Anoubis::SystemMenu.where(system: @system, menu: @menu1).first.destroy
35
+ expect(Anoubis::SystemMenu.where(system: @system).count(:id)).to eq 0
36
36
  end
37
37
 
38
38
  after(:all) do
@@ -40,7 +40,7 @@ module Anubis
40
40
  @menu2.destroy
41
41
  @menu1.destroy
42
42
  #@group.destroy
43
- Anubis::Group.where(system_id: @system.id).each do |item|
43
+ Anoubis::Group.where(system_id: @system.id).each do |item|
44
44
  item.destroy
45
45
  end
46
46
  @system.destroy
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe System, type: :model do
5
5
  it "is valid" do
6
6
  expect(build_stubbed(:system)).to be_valid
@@ -30,14 +30,14 @@ module Anubis
30
30
  end
31
31
 
32
32
  it "can't change main system ident" do
33
- system = Anubis::System.find(1)
33
+ system = Anoubis::System.find(1)
34
34
  system.ident = 'tst'
35
35
  expect(system.save).to eq false
36
36
  end
37
37
 
38
38
  it "can destroy" do
39
39
  system = create :system, ident: 'dst'
40
- Anubis::Group.where(system_id: system.id).each do |item|
40
+ Anoubis::Group.where(system_id: system.id).each do |item|
41
41
  item.destroy
42
42
  end
43
43
  system.destroy
@@ -45,7 +45,7 @@ module Anubis
45
45
  end
46
46
 
47
47
  it "can't destroy main system" do
48
- system = Anubis::System.find(1)
48
+ system = Anoubis::System.find(1)
49
49
  system.destroy
50
50
  expect(system.destroyed?).to eq false
51
51
  end
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe Tenant, type: :model do
5
5
  it "is valid" do
6
6
  expect(build_stubbed(:tenant)).to be_valid
@@ -44,14 +44,14 @@ module Anubis
44
44
  end
45
45
 
46
46
  it "can't change system tenant ident" do
47
- tenant = Anubis::Tenant.find(1)
47
+ tenant = Anoubis::Tenant.find(1)
48
48
  tenant.ident = 'tst'
49
49
  expect(tenant.save).to eq false
50
50
  end
51
51
 
52
52
  it "can destroy" do
53
53
  tenant = create :tenant, title: 'Destroy', ident: 'dst'
54
- Anubis::TenantSystem.where(tenant_id: tenant.id).each do |item|
54
+ Anoubis::TenantSystem.where(tenant_id: tenant.id).each do |item|
55
55
  item.destroy
56
56
  end
57
57
  tenant.destroy
@@ -59,7 +59,7 @@ module Anubis
59
59
  end
60
60
 
61
61
  it "can't destroy system tenant" do
62
- tenant = Anubis::Tenant.find(1)
62
+ tenant = Anoubis::Tenant.find(1)
63
63
  tenant.destroy
64
64
  expect(tenant.destroyed?).to eq false
65
65
  end
@@ -1,6 +1,6 @@
1
1
  require 'rails_helper'
2
2
 
3
- module Anubis
3
+ module Anoubis
4
4
  RSpec.describe User, type: :model do
5
5
  it "is valid" do
6
6
  expect(build_stubbed(:user)).to be_valid
@@ -49,7 +49,7 @@ module Anubis
49
49
  end
50
50
 
51
51
  it "can't destroy Main Administrator" do
52
- user = Anubis::User.find(1)
52
+ user = Anoubis::User.find(1)
53
53
  user.destroy
54
54
  expect(user.destroyed?).to eq false
55
55
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anoubis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrey Ryabov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-31 00:00:00.000000000 Z
11
+ date: 2022-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 6.1.0
19
+ version: 7.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 6.1.0
26
+ version: 7.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: redis
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: 0.5.3
83
+ - !ruby/object:Gem::Dependency
84
+ name: gelf
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 3.1.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: 3.1.0
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: rake
85
99
  requirement: !ruby/object:Gem::Requirement
@@ -135,18 +149,18 @@ files:
135
149
  - Rakefile
136
150
  - app/controllers/anoubis/application_controller.rb
137
151
  - app/controllers/anoubis/core/application_controller.rb
138
- - app/controllers/anoubis/core/data/actions.rb
139
- - app/controllers/anoubis/core/data/callbacks.rb
140
- - app/controllers/anoubis/core/data/convert.rb
141
- - app/controllers/anoubis/core/data/defaults.rb
142
- - app/controllers/anoubis/core/data/get.rb
143
- - app/controllers/anoubis/core/data/load.rb
144
- - app/controllers/anoubis/core/data/set.rb
145
- - app/controllers/anoubis/core/data/setup.rb
146
- - app/controllers/anoubis/core/data_controller.rb
147
152
  - app/controllers/anoubis/core/index/actions.rb
148
153
  - app/controllers/anoubis/core/index/callbacks.rb
149
154
  - app/controllers/anoubis/core/index_controller.rb
155
+ - app/controllers/anoubis/data/actions.rb
156
+ - app/controllers/anoubis/data/callbacks.rb
157
+ - app/controllers/anoubis/data/convert.rb
158
+ - app/controllers/anoubis/data/defaults.rb
159
+ - app/controllers/anoubis/data/get.rb
160
+ - app/controllers/anoubis/data/load.rb
161
+ - app/controllers/anoubis/data/set.rb
162
+ - app/controllers/anoubis/data/setup.rb
163
+ - app/controllers/anoubis/data_controller.rb
150
164
  - app/controllers/anoubis/etc.rb
151
165
  - app/controllers/anoubis/etc/base.rb
152
166
  - app/controllers/anoubis/etc/data.rb
@@ -168,15 +182,6 @@ files:
168
182
  - app/controllers/anoubis/output/menu.rb
169
183
  - app/controllers/anoubis/output/update.rb
170
184
  - app/controllers/anoubis/sso/client/application_controller.rb
171
- - app/controllers/anoubis/sso/client/data/actions.rb
172
- - app/controllers/anoubis/sso/client/data/callbacks.rb
173
- - app/controllers/anoubis/sso/client/data/convert.rb
174
- - app/controllers/anoubis/sso/client/data/defaults.rb
175
- - app/controllers/anoubis/sso/client/data/get.rb
176
- - app/controllers/anoubis/sso/client/data/load.rb
177
- - app/controllers/anoubis/sso/client/data/set.rb
178
- - app/controllers/anoubis/sso/client/data/setup.rb
179
- - app/controllers/anoubis/sso/client/data_controller.rb
180
185
  - app/controllers/anoubis/sso/client/index/actions.rb
181
186
  - app/controllers/anoubis/sso/client/index/callbacks.rb
182
187
  - app/controllers/anoubis/sso/client/index_controller.rb
@@ -184,22 +189,10 @@ files:
184
189
  - app/controllers/anoubis/sso/server/login_controller.rb
185
190
  - app/controllers/anoubis/sso/server/user_controller.rb
186
191
  - app/controllers/anoubis/tenant/application_controller.rb
187
- - app/controllers/anoubis/tenant/data/actions.rb
188
- - app/controllers/anoubis/tenant/data/callbacks.rb
189
- - app/controllers/anoubis/tenant/data/convert.rb
190
- - app/controllers/anoubis/tenant/data/defaults.rb
191
- - app/controllers/anoubis/tenant/data/get.rb
192
- - app/controllers/anoubis/tenant/data/load.rb
193
- - app/controllers/anoubis/tenant/data/set.rb
194
- - app/controllers/anoubis/tenant/data/setup.rb
195
- - app/controllers/anoubis/tenant/data_controller.rb
196
192
  - app/controllers/anoubis/tenant/index/actions.rb
197
193
  - app/controllers/anoubis/tenant/index/callbacks.rb
198
194
  - app/controllers/anoubis/tenant/index_controller.rb
199
- - app/controllers/anoubis/tenants_controller.rb
200
- - app/controllers/anoubis/users_controller.rb
201
195
  - app/jobs/anoubis/application_job.rb
202
- - app/mailers/anoubis/application_mailer.rb
203
196
  - app/models/anoubis/application_record.rb
204
197
  - app/models/anoubis/core/application_record.rb
205
198
  - app/models/anoubis/core/locales.rb
@@ -225,6 +218,8 @@ files:
225
218
  - app/models/anoubis/tenant/user.rb
226
219
  - app/models/anoubis/tenant/user_group.rb
227
220
  - app/services/anoubis/core_service.rb
221
+ - app/services/anoubis/log_service.rb
222
+ - app/services/anoubis/request_service.rb
228
223
  - app/services/anoubis/session_service.rb
229
224
  - app/validators/presence_in_tenant_validator.rb
230
225
  - config/initializers/mime_type.rb
@@ -292,6 +287,9 @@ files:
292
287
  - spec/dummy/config/storage.yml
293
288
  - spec/dummy/db/schema.rb
294
289
  - spec/dummy/db/seeds.rb
290
+ - spec/dummy/log/development.log
291
+ - spec/dummy/log/test.log
292
+ - spec/dummy/tmp/development_secret.txt
295
293
  - spec/factories/anubis_group_locales.rb
296
294
  - spec/factories/anubis_group_menus.rb
297
295
  - spec/factories/anubis_groups.rb
@@ -319,7 +317,11 @@ files:
319
317
  homepage: https://github.com/RA-Company/
320
318
  licenses:
321
319
  - MIT
322
- metadata: {}
320
+ metadata:
321
+ homepage_uri: https://github.com/RA-Company/
322
+ source_code_uri: https://github.com/RA-Company/anoubis
323
+ changelog_uri: https://github.com/RA-Company/anoubis/blob/main/CHANGELOG.md
324
+ documentation_uri: https://www.rubydoc.info/gems/anoubis/1.0.8
323
325
  post_install_message:
324
326
  rdoc_options: []
325
327
  require_paths:
@@ -335,74 +337,77 @@ required_rubygems_version: !ruby/object:Gem::Requirement
335
337
  - !ruby/object:Gem::Version
336
338
  version: '0'
337
339
  requirements: []
338
- rubygems_version: 3.1.2
340
+ rubygems_version: 3.2.3
339
341
  signing_key:
340
342
  specification_version: 4
341
343
  summary: Anoubis API Backend System
342
344
  test_files:
343
- - spec/models/anoubis/system_spec.rb
344
- - spec/models/anoubis/group_locale_spec.rb
345
- - spec/models/anoubis/system_locale_spec.rb
346
- - spec/models/anoubis/group_menu_spec.rb
347
- - spec/models/anoubis/menu_spec.rb
348
- - spec/models/anoubis/menu_locale_spec.rb
349
- - spec/models/anoubis/user_spec.rb
350
- - spec/models/anoubis/system_menu_spec.rb
351
- - spec/models/anoubis/tenant_spec.rb
352
- - spec/models/anoubis/group_spec.rb
353
- - spec/factories/anubis_users.rb
354
- - spec/factories/anubis_system_menus.rb
355
- - spec/factories/anubis_menus.rb
356
- - spec/factories/anubis_systems.rb
357
- - spec/factories/anubis_menu_locales.rb
358
- - spec/factories/anubis_group_locales.rb
359
- - spec/factories/anubis_tenants.rb
360
- - spec/factories/anubis_groups.rb
361
- - spec/factories/anubis_system_locales.rb
362
- - spec/factories/anubis_group_menus.rb
363
345
  - spec/anubis_spec.rb
364
- - spec/rails_helper.rb
365
346
  - spec/controllers/anoubis/index_controller_spec.rb
366
- - spec/requests/anoubis/users_request_spec.rb
367
- - spec/integration/navigation_test.rb
368
- - spec/dummy/bin/setup
369
- - spec/dummy/bin/bundle
370
- - spec/dummy/bin/rails
371
- - spec/dummy/bin/update
372
- - spec/dummy/bin/rake
373
- - spec/dummy/app/channels/application_cable/connection.rb
374
- - spec/dummy/app/channels/application_cable/channel.rb
375
- - spec/dummy/app/models/application_record.rb
376
- - spec/dummy/app/mailers/application_mailer.rb
377
- - spec/dummy/app/assets/stylesheets/application.css
378
- - spec/dummy/app/assets/javascripts/application.js
347
+ - spec/dummy/Rakefile
379
348
  - spec/dummy/app/assets/config/manifest.js
349
+ - spec/dummy/app/assets/javascripts/application.js
350
+ - spec/dummy/app/assets/stylesheets/application.css
351
+ - spec/dummy/app/channels/application_cable/channel.rb
352
+ - spec/dummy/app/channels/application_cable/connection.rb
380
353
  - spec/dummy/app/controllers/application_controller.rb
381
- - spec/dummy/app/views/layouts/mailer.text.erb
382
- - spec/dummy/app/views/layouts/mailer.html.erb
383
354
  - spec/dummy/app/jobs/application_job.rb
384
- - spec/dummy/Rakefile
385
- - spec/dummy/config.ru
386
- - spec/dummy/db/schema.rb
387
- - spec/dummy/db/seeds.rb
388
- - spec/dummy/config/storage.yml
355
+ - spec/dummy/app/mailers/application_mailer.rb
356
+ - spec/dummy/app/models/application_record.rb
357
+ - spec/dummy/app/views/layouts/mailer.html.erb
358
+ - spec/dummy/app/views/layouts/mailer.text.erb
359
+ - spec/dummy/bin/bundle
360
+ - spec/dummy/bin/rails
361
+ - spec/dummy/bin/rake
362
+ - spec/dummy/bin/setup
363
+ - spec/dummy/bin/update
364
+ - spec/dummy/config/application.rb
389
365
  - spec/dummy/config/boot.rb
366
+ - spec/dummy/config/cable.yml
367
+ - spec/dummy/config/database.yml
368
+ - spec/dummy/config/environment.rb
369
+ - spec/dummy/config/environments/development.rb
370
+ - spec/dummy/config/environments/production.rb
371
+ - spec/dummy/config/environments/test.rb
390
372
  - spec/dummy/config/initializers/application_controller_renderer.rb
391
- - spec/dummy/config/initializers/filter_parameter_logging.rb
392
- - spec/dummy/config/initializers/wrap_parameters.rb
373
+ - spec/dummy/config/initializers/backtrace_silencers.rb
393
374
  - spec/dummy/config/initializers/cors.rb
375
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
394
376
  - spec/dummy/config/initializers/inflections.rb
395
- - spec/dummy/config/initializers/backtrace_silencers.rb
396
377
  - spec/dummy/config/initializers/mime_types.rb
397
- - spec/dummy/config/cable.yml
378
+ - spec/dummy/config/initializers/wrap_parameters.rb
398
379
  - spec/dummy/config/locales/en.yml
399
- - spec/dummy/config/database.yml
400
380
  - spec/dummy/config/puma.rb
401
381
  - spec/dummy/config/routes.rb
402
- - spec/dummy/config/environments/test.rb
403
- - spec/dummy/config/environments/production.rb
404
- - spec/dummy/config/environments/development.rb
405
- - spec/dummy/config/application.rb
406
- - spec/dummy/config/environment.rb
407
382
  - spec/dummy/config/spring.rb
383
+ - spec/dummy/config/storage.yml
384
+ - spec/dummy/config.ru
385
+ - spec/dummy/db/schema.rb
386
+ - spec/dummy/db/seeds.rb
387
+ - spec/dummy/log/development.log
388
+ - spec/dummy/log/test.log
389
+ - spec/dummy/tmp/development_secret.txt
390
+ - spec/factories/anubis_group_locales.rb
391
+ - spec/factories/anubis_group_menus.rb
392
+ - spec/factories/anubis_groups.rb
393
+ - spec/factories/anubis_menu_locales.rb
394
+ - spec/factories/anubis_menus.rb
395
+ - spec/factories/anubis_system_locales.rb
396
+ - spec/factories/anubis_system_menus.rb
397
+ - spec/factories/anubis_systems.rb
398
+ - spec/factories/anubis_tenants.rb
399
+ - spec/factories/anubis_users.rb
400
+ - spec/integration/navigation_test.rb
401
+ - spec/models/anoubis/group_locale_spec.rb
402
+ - spec/models/anoubis/group_menu_spec.rb
403
+ - spec/models/anoubis/group_spec.rb
404
+ - spec/models/anoubis/menu_locale_spec.rb
405
+ - spec/models/anoubis/menu_spec.rb
406
+ - spec/models/anoubis/system_locale_spec.rb
407
+ - spec/models/anoubis/system_menu_spec.rb
408
+ - spec/models/anoubis/system_spec.rb
409
+ - spec/models/anoubis/tenant_spec.rb
410
+ - spec/models/anoubis/user_spec.rb
411
+ - spec/rails_helper.rb
412
+ - spec/requests/anoubis/users_request_spec.rb
408
413
  - spec/spec_helper.rb