gitextract_7d3k2x6f/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── release.yml │ ├── rubocop.yml │ ├── test-jruby.yml │ └── test.yml ├── .gitignore ├── .rubocop-md.yml ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── action_policy-graphql.gemspec ├── bin/ │ ├── console │ └── setup ├── gemfiles/ │ ├── action_policy/ │ │ └── master.gemfile │ ├── graphql/ │ │ └── master.gemfile │ ├── jruby.gemfile │ └── rubocop.gemfile ├── lib/ │ ├── action_policy/ │ │ ├── graphql/ │ │ │ ├── authorized_field.rb │ │ │ ├── behaviour.rb │ │ │ ├── fields.rb │ │ │ ├── types/ │ │ │ │ ├── authorization_result.rb │ │ │ │ └── failure_reasons.rb │ │ │ └── version.rb │ │ └── graphql.rb │ └── action_policy-graphql.rb └── spec/ ├── action_policy/ │ └── graphql/ │ ├── authorized_spec.rb │ ├── behaviour_spec.rb │ └── expose_authorization_rules_spec.rb ├── spec_helper.rb └── support/ ├── graphql_context.rb └── schema.rb