├── .editorconfig ├── .gitattributes ├── .gitignore ├── .rubocop.yml ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app └── models │ └── role_core │ ├── application_record.rb │ └── role.rb ├── bin └── rails ├── db └── migrate │ └── 20170705174003_create_roles.rb ├── lib ├── generators │ └── role_core │ │ ├── config │ │ ├── USAGE │ │ ├── config_generator.rb │ │ └── templates │ │ │ ├── role_core.en.yml │ │ │ └── role_core.rb │ │ └── model │ │ ├── USAGE │ │ ├── model_generator.rb │ │ └── templates │ │ └── role.rb ├── role_core.rb ├── role_core │ ├── computed_permissions.rb │ ├── concerns │ │ └── models │ │ │ └── role.rb │ ├── contrib │ │ └── can_can_can_permission.rb │ ├── engine.rb │ ├── mapper.rb │ ├── permission.rb │ ├── permission_set.rb │ └── version.rb └── tasks │ └── role_core_tasks.rake ├── role_core.gemspec └── test ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ └── application.js │ │ └── stylesheets │ │ │ └── application.scss │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── dynamic_permissions_controller.rb │ │ ├── home_controller.rb │ │ ├── projects_controller.rb │ │ ├── roles_controller.rb │ │ ├── session_controller.rb │ │ ├── tasks_controller.rb │ │ ├── teams_controller.rb │ │ └── users_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── lib │ │ └── .keep │ ├── models │ │ ├── ability.rb │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── dynamic_permission.rb │ │ ├── project.rb │ │ ├── role.rb │ │ ├── role_assignment.rb │ │ ├── task.rb │ │ ├── team.rb │ │ └── user.rb │ └── views │ │ ├── dynamic_permissions │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ │ ├── home │ │ └── index.html.erb │ │ ├── layouts │ │ ├── _alert.html.erb │ │ ├── _footer.html.erb │ │ ├── _nav.html.erb │ │ ├── _notice.html.erb │ │ └── application.html.erb │ │ ├── projects │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ │ ├── roles │ │ ├── _form.html.erb │ │ ├── _permissions.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ │ ├── tasks │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ │ ├── teams │ │ ├── _form.html.erb │ │ ├── _permissions.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ │ └── users │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── update ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── role_core.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ ├── en.yml │ │ └── role_core.en.yml │ ├── puma.rb │ ├── routes.rb │ ├── secrets.yml │ └── spring.rb ├── db │ ├── migrate │ │ ├── 20170702201238_create_users.rb │ │ ├── 20170703051239_create_projects.rb │ │ ├── 20170703193631_create_tasks.rb │ │ ├── 20170705175121_create_role_assignments.rb │ │ ├── 20220122193725_create_dynamic_permissions.rb │ │ └── 20220122193822_create_teams.rb │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico └── test │ ├── application_system_test_case.rb │ ├── controllers │ ├── dynamic_permissions_controller_test.rb │ ├── projects_controller_test.rb │ ├── roles_controller_test.rb │ ├── session_controller_test.rb │ ├── tasks_controller_test.rb │ ├── teams_controller_test.rb │ └── users_controller_test.rb │ ├── fixtures │ ├── dynamic_permissions.yml │ ├── projects.yml │ ├── roles.yml │ ├── tasks.yml │ ├── teams.yml │ └── users.yml │ ├── models │ ├── dynamic_permission_test.rb │ ├── project_test.rb │ ├── role_test.rb │ ├── task_test.rb │ ├── team_test.rb │ └── user_test.rb │ └── system │ ├── dynamic_permissions_test.rb │ ├── projects_test.rb │ ├── roles_test.rb │ ├── tasks_test.rb │ ├── teams_test.rb │ └── users_test.rb ├── integration └── navigation_test.rb ├── role_core_test.rb └── test_helper.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/Rakefile -------------------------------------------------------------------------------- /app/models/role_core/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/app/models/role_core/application_record.rb -------------------------------------------------------------------------------- /app/models/role_core/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/app/models/role_core/role.rb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/bin/rails -------------------------------------------------------------------------------- /db/migrate/20170705174003_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/db/migrate/20170705174003_create_roles.rb -------------------------------------------------------------------------------- /lib/generators/role_core/config/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/config/USAGE -------------------------------------------------------------------------------- /lib/generators/role_core/config/config_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/config/config_generator.rb -------------------------------------------------------------------------------- /lib/generators/role_core/config/templates/role_core.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/config/templates/role_core.en.yml -------------------------------------------------------------------------------- /lib/generators/role_core/config/templates/role_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/config/templates/role_core.rb -------------------------------------------------------------------------------- /lib/generators/role_core/model/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/model/USAGE -------------------------------------------------------------------------------- /lib/generators/role_core/model/model_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/model/model_generator.rb -------------------------------------------------------------------------------- /lib/generators/role_core/model/templates/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/generators/role_core/model/templates/role.rb -------------------------------------------------------------------------------- /lib/role_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core.rb -------------------------------------------------------------------------------- /lib/role_core/computed_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/computed_permissions.rb -------------------------------------------------------------------------------- /lib/role_core/concerns/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/concerns/models/role.rb -------------------------------------------------------------------------------- /lib/role_core/contrib/can_can_can_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/contrib/can_can_can_permission.rb -------------------------------------------------------------------------------- /lib/role_core/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/engine.rb -------------------------------------------------------------------------------- /lib/role_core/mapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/mapper.rb -------------------------------------------------------------------------------- /lib/role_core/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/permission.rb -------------------------------------------------------------------------------- /lib/role_core/permission_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/role_core/permission_set.rb -------------------------------------------------------------------------------- /lib/role_core/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module RoleCore 4 | VERSION = "0.0.31" 5 | end 6 | -------------------------------------------------------------------------------- /lib/tasks/role_core_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/lib/tasks/role_core_tasks.rake -------------------------------------------------------------------------------- /role_core.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/role_core.gemspec -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/dynamic_permissions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/dynamic_permissions_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/roles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/roles_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/session_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/session_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/tasks_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/teams_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ApplicationHelper 4 | end 5 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/ability.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/dynamic_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/dynamic_permission.rb -------------------------------------------------------------------------------- /test/dummy/app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/project.rb -------------------------------------------------------------------------------- /test/dummy/app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/role.rb -------------------------------------------------------------------------------- /test/dummy/app/models/role_assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/role_assignment.rb -------------------------------------------------------------------------------- /test/dummy/app/models/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/task.rb -------------------------------------------------------------------------------- /test/dummy/app/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/team.rb -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/models/user.rb -------------------------------------------------------------------------------- /test/dummy/app/views/dynamic_permissions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/dynamic_permissions/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/dynamic_permissions/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/dynamic_permissions/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/dynamic_permissions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/dynamic_permissions/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/dynamic_permissions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/dynamic_permissions/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/home/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_alert.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/layouts/_alert.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/layouts/_nav.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/layouts/_notice.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/roles/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/roles/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/roles/_permissions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/roles/_permissions.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/roles/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/roles/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/roles/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/roles/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/roles/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/roles/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/tasks/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/tasks/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/tasks/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/tasks/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/tasks/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/tasks/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/tasks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/tasks/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/teams/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/teams/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/teams/_permissions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/teams/_permissions.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/teams/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/teams/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/teams/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/teams/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/teams/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/teams/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/users/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/app/views/users/new.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/bin/update -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/role_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/role_core.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/locales/role_core.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/locales/role_core.en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/secrets.yml -------------------------------------------------------------------------------- /test/dummy/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/config/spring.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20170702201238_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/migrate/20170702201238_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20170703051239_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/migrate/20170703051239_create_projects.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20170703193631_create_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/migrate/20170703193631_create_tasks.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20170705175121_create_role_assignments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/migrate/20170705175121_create_role_assignments.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20220122193725_create_dynamic_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/migrate/20220122193725_create_dynamic_permissions.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20220122193822_create_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/migrate/20220122193822_create_teams.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/dynamic_permissions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/dynamic_permissions_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/projects_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/roles_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/roles_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/session_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/session_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/tasks_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/tasks_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/teams_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/teams_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/dummy/test/fixtures/dynamic_permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/fixtures/dynamic_permissions.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/fixtures/roles.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/fixtures/tasks.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/teams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/fixtures/teams.yml -------------------------------------------------------------------------------- /test/dummy/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/dummy/test/models/dynamic_permission_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/models/dynamic_permission_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/models/project_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/role_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/models/role_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/models/task_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/team_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/models/team_test.rb -------------------------------------------------------------------------------- /test/dummy/test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/models/user_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/dynamic_permissions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/system/dynamic_permissions_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/projects_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/system/projects_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/roles_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/system/roles_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/tasks_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/system/tasks_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/teams_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/system/teams_test.rb -------------------------------------------------------------------------------- /test/dummy/test/system/users_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/dummy/test/system/users_test.rb -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /test/role_core_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/role_core_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails-engine/role_core/HEAD/test/test_helper.rb --------------------------------------------------------------------------------