├── .codeclimate.yml ├── .gitignore ├── .hound.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .stickler.yml ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── graphql-pundit.gemspec ├── lib ├── graphql-pundit.rb └── graphql-pundit │ ├── authorization.rb │ ├── common.rb │ ├── field.rb │ ├── instrumenter.rb │ ├── instrumenters │ ├── after_scope.rb │ ├── authorization.rb │ ├── before_scope.rb │ └── scope.rb │ ├── scope.rb │ └── version.rb └── spec ├── graphql-pundit ├── authorization_spec.rb ├── common_spec.rb ├── instrumenters │ ├── after_scope_spec.rb │ ├── authorization_spec.rb │ └── before_scope_spec.rb └── scope_spec.rb ├── spec_helper.rb └── support └── simplecov.rb /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.hound.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 2 | -------------------------------------------------------------------------------- /.stickler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.stickler.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/bin/setup -------------------------------------------------------------------------------- /graphql-pundit.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/graphql-pundit.gemspec -------------------------------------------------------------------------------- /lib/graphql-pundit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/authorization.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/common.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/field.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/instrumenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/instrumenter.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/instrumenters/after_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/instrumenters/after_scope.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/instrumenters/authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/instrumenters/authorization.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/instrumenters/before_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/instrumenters/before_scope.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/instrumenters/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/instrumenters/scope.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/scope.rb -------------------------------------------------------------------------------- /lib/graphql-pundit/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/lib/graphql-pundit/version.rb -------------------------------------------------------------------------------- /spec/graphql-pundit/authorization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/graphql-pundit/authorization_spec.rb -------------------------------------------------------------------------------- /spec/graphql-pundit/common_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/graphql-pundit/common_spec.rb -------------------------------------------------------------------------------- /spec/graphql-pundit/instrumenters/after_scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/graphql-pundit/instrumenters/after_scope_spec.rb -------------------------------------------------------------------------------- /spec/graphql-pundit/instrumenters/authorization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/graphql-pundit/instrumenters/authorization_spec.rb -------------------------------------------------------------------------------- /spec/graphql-pundit/instrumenters/before_scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/graphql-pundit/instrumenters/before_scope_spec.rb -------------------------------------------------------------------------------- /spec/graphql-pundit/scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/graphql-pundit/scope_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/simplecov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ontohub/graphql-pundit/HEAD/spec/support/simplecov.rb --------------------------------------------------------------------------------