├── .github ├── dependabot.yml └── workflows │ ├── acceptance.yml │ ├── build.yml │ ├── codeql-analysis.yml │ ├── lint.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── .keep ├── entitlements-github-plugin.gemspec ├── lib ├── entitlements │ ├── backend │ │ ├── github_org.rb │ │ ├── github_org │ │ │ ├── controller.rb │ │ │ ├── provider.rb │ │ │ └── service.rb │ │ ├── github_team.rb │ │ └── github_team │ │ │ ├── controller.rb │ │ │ ├── models │ │ │ └── team.rb │ │ │ ├── provider.rb │ │ │ └── service.rb │ ├── config │ │ └── retry.rb │ └── service │ │ └── github.rb └── version.rb ├── script ├── bootstrap ├── cibuild ├── cibuild-entitlements-github-plugin-acceptance ├── lib │ └── fold.sh └── test ├── spec ├── acceptance │ ├── Dockerfile.entitlements-github-plugin │ ├── ca │ │ ├── README.md │ │ ├── certs │ │ │ └── ca.cert.pem │ │ ├── index.txt │ │ ├── index.txt.attr │ │ ├── index.txt.old │ │ ├── intermediate │ │ │ ├── certs │ │ │ │ ├── ca-chain.cert.pem │ │ │ │ ├── github.fake.cert.pem │ │ │ │ ├── intermediate.cert.pem │ │ │ │ └── ldap-server.fake.cert.pem │ │ │ ├── crlnumber │ │ │ ├── csr │ │ │ │ ├── github.fake.csr.pem │ │ │ │ ├── intermediate.csr.pem │ │ │ │ └── ldap-server.fake.csr.pem │ │ │ ├── index.txt │ │ │ ├── index.txt.attr │ │ │ ├── index.txt.attr.old │ │ │ ├── index.txt.old │ │ │ ├── newcerts │ │ │ │ ├── 1000.pem │ │ │ │ └── 1001.pem │ │ │ ├── openssl.cnf │ │ │ ├── private │ │ │ │ ├── intermediate.key.pem │ │ │ │ ├── ldap-server.fake.key.pem │ │ │ │ └── ldap-server.fake.key.pem.with-password │ │ │ ├── serial │ │ │ └── serial.old │ │ ├── newcerts │ │ │ └── 1000.pem │ │ ├── openssl.cnf │ │ ├── private │ │ │ └── ca.key.pem │ │ ├── serial │ │ └── serial.old │ ├── docker-compose.yml │ ├── fixtures │ │ ├── .gitkeep │ │ ├── basic_execution_no_action │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ └── .gitkeep │ │ ├── common │ │ │ ├── internal │ │ │ │ ├── contractors.txt │ │ │ │ └── pre-hires.txt │ │ │ └── manager-map.yaml │ │ ├── github_org_ff_invite │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ └── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ ├── github_org_ff_none │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ └── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ ├── github_org_ff_remove │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ └── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ ├── github_org_ignore │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ └── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ ├── github_org_pending │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ ├── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ │ │ └── github │ │ │ │ └── employees.txt │ │ ├── initial_run │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ ├── dummy-ou-special │ │ │ │ └── bacon.txt │ │ │ │ ├── dummy-ou │ │ │ │ ├── ragamuffin.txt │ │ │ │ └── tony.txt │ │ │ │ ├── entitlements │ │ │ │ ├── app-aws-primary-admins.yaml │ │ │ │ ├── empty-but-ok-2.txt │ │ │ │ ├── empty-but-ok-3.txt │ │ │ │ ├── empty-but-ok.txt │ │ │ │ ├── expire-later.yaml │ │ │ │ ├── expired-empty-entitlement.txt │ │ │ │ ├── expired-entitlement.txt │ │ │ │ ├── foo-bar-app │ │ │ │ │ └── baz.txt │ │ │ │ └── groupofnames │ │ │ │ │ ├── baz.txt │ │ │ │ │ └── sparkles.txt │ │ │ │ ├── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ │ │ ├── github │ │ │ │ ├── child-team.txt │ │ │ │ ├── colonel-meow.txt │ │ │ │ ├── employees.txt │ │ │ │ └── grumpy-cat.txt │ │ │ │ └── pizza_teams │ │ │ │ ├── colonel-meow.yaml │ │ │ │ ├── empty-but-ok-2.txt │ │ │ │ ├── empty-but-ok.txt │ │ │ │ ├── grumpy-cat.rb │ │ │ │ └── keyboard-cat.txt │ │ ├── modify_and_delete │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ ├── entitlements │ │ │ │ ├── app-aws-primary-admins.yaml │ │ │ │ ├── empty-but-ok-2.txt │ │ │ │ ├── empty-but-ok-3.txt │ │ │ │ ├── empty-but-ok.txt │ │ │ │ ├── expire-later.yaml │ │ │ │ ├── expired-empty-entitlement.txt │ │ │ │ ├── expired-entitlement.txt │ │ │ │ ├── foo-bar-app │ │ │ │ │ └── kittens │ │ │ │ │ │ └── baz.txt │ │ │ │ └── groupofnames-renamed │ │ │ │ │ ├── bar.txt │ │ │ │ │ └── baz.txt │ │ │ │ ├── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ │ │ ├── github │ │ │ │ ├── child-team.txt │ │ │ │ ├── colonel-meow.txt │ │ │ │ ├── employees.txt │ │ │ │ ├── grumpy-cat.txt │ │ │ │ └── new-team.txt │ │ │ │ └── pizza_teams │ │ │ │ ├── colonel-meow.yaml │ │ │ │ ├── contractors.txt │ │ │ │ ├── empty-but-ok-2.txt │ │ │ │ ├── empty-but-ok.txt │ │ │ │ ├── keyboard-cat.txt │ │ │ │ └── locked-out.yaml │ │ ├── modify_and_delete_lockout │ │ │ ├── config.yaml │ │ │ └── ldap-config │ │ │ │ ├── entitlements │ │ │ │ ├── app-aws-primary-admins.yaml │ │ │ │ ├── empty-but-ok-2.txt │ │ │ │ ├── empty-but-ok-3.txt │ │ │ │ ├── empty-but-ok.txt │ │ │ │ ├── expire-later.yaml │ │ │ │ ├── expired-empty-entitlement.txt │ │ │ │ ├── expired-entitlement.txt │ │ │ │ ├── foo-bar-app │ │ │ │ │ └── kittens │ │ │ │ │ │ └── baz.txt │ │ │ │ └── groupofnames-renamed │ │ │ │ │ ├── bar.txt │ │ │ │ │ └── baz.txt │ │ │ │ ├── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ │ │ ├── github │ │ │ │ ├── colonel-meow.txt │ │ │ │ ├── employees.txt │ │ │ │ └── grumpy-cat.txt │ │ │ │ └── pizza_teams │ │ │ │ ├── colonel-meow.yaml │ │ │ │ ├── contractors.txt │ │ │ │ ├── empty-but-ok-2.txt │ │ │ │ ├── empty-but-ok.txt │ │ │ │ ├── keyboard-cat.txt │ │ │ │ └── locked-out.yaml │ │ └── predictive │ │ │ ├── config.yaml │ │ │ ├── ldap-config │ │ │ ├── github-org-2 │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ │ ├── github-org │ │ │ │ ├── admin.txt │ │ │ │ └── member.txt │ │ │ └── github │ │ │ │ ├── colonel-meow.txt │ │ │ │ ├── employees.txt │ │ │ │ └── grumpy-cat.txt │ │ │ └── predictive-state │ │ │ ├── cn=admin,ou=meowsister-org,ou=GitHub,dc=github,dc=fake │ │ │ ├── cn=admin,ou=org2,ou=GitHub,dc=github,dc=fake │ │ │ ├── cn=colonel-meow,ou=meowsister,ou=GitHub,dc=github,dc=fake │ │ │ ├── cn=employees,ou=meowsister,ou=GitHub,dc=github,dc=fake │ │ │ ├── cn=grumpy-cat,ou=meowsister,ou=GitHub,dc=github,dc=fake │ │ │ ├── cn=member,ou=meowsister-org,ou=GitHub,dc=github,dc=fake │ │ │ └── cn=member,ou=org2,ou=GitHub,dc=github,dc=fake │ ├── git-server │ │ ├── README.md │ │ ├── keys │ │ │ └── id_rsa.pub │ │ ├── private │ │ │ └── id_rsa.base64 │ │ └── run-server.sh │ ├── github-server │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── Gemfile │ │ ├── README.md │ │ ├── data │ │ │ ├── team_map.json │ │ │ └── teams │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ └── 7.json │ │ ├── run.sh │ │ ├── ssl.crt │ │ ├── ssl.key │ │ └── web.rb │ ├── ldap-server │ │ ├── env │ │ │ ├── default.startup.yaml │ │ │ └── default.yaml │ │ ├── ldif │ │ │ ├── .gitkeep │ │ │ ├── bootstrap │ │ │ │ └── 03-ldapi.ldif │ │ │ └── data │ │ │ │ ├── .gitkeep │ │ │ │ ├── 01-config │ │ │ │ └── bump-sizelimit.ldif │ │ │ │ ├── 05-ou │ │ │ │ ├── .gitkeep │ │ │ │ ├── alumni-ou.ldif │ │ │ │ ├── groups-ou.ldif │ │ │ │ └── people-ou.ldif │ │ │ │ ├── 10-ou-custom │ │ │ │ ├── .gitkeep │ │ │ │ ├── groups-entitlements-ou.ldif │ │ │ │ └── groups-pizza_teams-ou.ldif │ │ │ │ ├── 20-groups │ │ │ │ ├── .gitkeep │ │ │ │ ├── cn=colonel-meow,ou=Staff_Account,ou=Groups,dc=github,dc=net.ldif │ │ │ │ ├── cn=garfield,ou=Staff_Account,ou=Groups,dc=github,dc=net.ldif │ │ │ │ └── cn=lockout,ou=Groups,dc=github,dc=net.ldif │ │ │ │ ├── 20-people │ │ │ │ ├── .gitkeep │ │ │ │ ├── person01.ldif │ │ │ │ ├── person02.ldif │ │ │ │ ├── person03.ldif │ │ │ │ ├── person04.ldif │ │ │ │ ├── person05.ldif │ │ │ │ ├── person06.ldif │ │ │ │ ├── person07.ldif │ │ │ │ ├── person08.ldif │ │ │ │ ├── person09.ldif │ │ │ │ ├── person10.ldif │ │ │ │ ├── person11.ldif │ │ │ │ ├── person12.ldif │ │ │ │ ├── person13.ldif │ │ │ │ ├── person14.ldif │ │ │ │ ├── person15.ldif │ │ │ │ ├── person16.ldif │ │ │ │ ├── person17.ldif │ │ │ │ ├── person18.ldif │ │ │ │ ├── person19.ldif │ │ │ │ ├── person20.ldif │ │ │ │ ├── person21.ldif │ │ │ │ ├── person22.ldif │ │ │ │ ├── person23.ldif │ │ │ │ ├── person24.ldif │ │ │ │ ├── person25.ldif │ │ │ │ ├── person26.ldif │ │ │ │ └── person27.ldif │ │ │ │ └── 99-bind-account │ │ │ │ └── emmy.ldif │ │ ├── run-server.sh │ │ ├── schema │ │ │ ├── README │ │ │ ├── collective.ldif │ │ │ ├── corba.ldif │ │ │ ├── core.ldif │ │ │ ├── cosine.ldif │ │ │ ├── dhcp.ldif │ │ │ ├── dnszone.ldif │ │ │ ├── duaconf.ldif │ │ │ ├── dyngroup.ldif │ │ │ ├── githubiam.ldif │ │ │ ├── inetorgperson.ldif │ │ │ ├── java.ldif │ │ │ ├── misc.ldif │ │ │ ├── nis.ldif │ │ │ ├── nssldap.ldif │ │ │ ├── openldap.ldif │ │ │ ├── pmi.ldif │ │ │ ├── postfix.ldif │ │ │ ├── ppolicy.ldif │ │ │ ├── puppet.ldif │ │ │ ├── sshaccount.ldif │ │ │ └── sudoers.ldif │ │ └── tls │ │ │ └── dhparam.pem │ ├── support │ │ └── run-app.sh │ └── tests │ │ ├── 01_basic_webserver_github_connectivity_spec.rb │ │ ├── 10_initial_noop_spec.rb │ │ ├── 11_initial_run_spec.rb │ │ ├── 20_modify_and_delete_spec.rb │ │ ├── 25_lockout_spec.rb │ │ ├── 28_github_org_spec.rb │ │ ├── 29_predictive_updates_spec.rb │ │ └── spec_helper.rb └── unit │ ├── entitlements │ ├── backend │ │ ├── github_org │ │ │ ├── controller_spec.rb │ │ │ ├── provider_spec.rb │ │ │ └── service_spec.rb │ │ └── github_team │ │ │ ├── controller_spec.rb │ │ │ ├── provider_spec.rb │ │ │ └── service_spec.rb │ └── service │ │ └── github_spec.rb │ ├── entitlements_spec.rb │ ├── fixtures │ ├── bad-manager-map.yaml │ ├── config-files │ │ ├── backend-and-type.yaml │ │ ├── backend-missing-type.yaml │ │ ├── backend-missing.yaml │ │ ├── backend-valid.yaml │ │ ├── class-order.yaml │ │ ├── config-ldap-ou.yaml │ │ ├── config-lockout.yaml │ │ ├── config-memberof.yaml │ │ ├── config-mirror-target-does-not-exist.yaml │ │ ├── config-mirror-target-is-also-a-mirror.yaml │ │ ├── config-mirror-valid.yaml │ │ ├── entitlements-execute.yaml │ │ ├── group-invalid-type.yaml │ │ ├── group-no-type.yaml │ │ ├── prefetch-people-invalid.yaml │ │ ├── prefetch-people-valid.yaml │ │ ├── required-attribute-missing.yaml │ │ ├── required-attribute-wrong-datatype.yaml │ │ └── valid.yaml │ ├── config.yaml │ ├── config_with_erb.yaml │ ├── git-repo-audit-dir │ │ └── dc=net │ │ │ └── dc=kittens │ │ │ ├── ou=Groups │ │ │ ├── cn=group1 │ │ │ ├── cn=group2 │ │ │ ├── cn=group3 │ │ │ └── cn=group4 │ │ │ └── ou=extra │ │ │ └── cn=extragroup │ ├── graphql-output │ │ ├── organization-members-page1.json │ │ ├── organization-members-page2.json │ │ ├── organization-members-page3.json │ │ ├── organization-members-page4.json │ │ ├── pending-members-page1.json │ │ ├── pending-members-page2.json │ │ ├── pending-members-page3.json │ │ └── pending-members-page4.json │ ├── ldap-config │ │ ├── circular_dependency │ │ │ ├── circular.txt │ │ │ ├── group1.yaml │ │ │ ├── group2.yaml │ │ │ ├── group3.yaml │ │ │ └── group4.yaml │ │ ├── circular_dependency_2 │ │ │ ├── group1.yaml │ │ │ ├── group2.yaml │ │ │ ├── group3.yaml │ │ │ ├── group4.yaml │ │ │ ├── group5.yaml │ │ │ └── group6.yaml │ │ ├── expiration │ │ │ ├── expired-text-empty.txt │ │ │ ├── expired-text.txt │ │ │ ├── expired-yaml-quoted-date.yaml │ │ │ ├── expired-yaml.yaml │ │ │ ├── valid-text.txt │ │ │ ├── valid-yaml-quoted-date.yaml │ │ │ └── valid-yaml.yaml │ │ ├── filters │ │ │ ├── bad-data-structure.txt │ │ │ ├── bad-data-structure.yaml │ │ │ ├── contractors-yes-prehires-no.yaml │ │ │ ├── excluded-path-filters.yaml │ │ │ ├── expiration-contractor-expired.txt │ │ │ ├── expiration-contractor-expired.yaml │ │ │ ├── expiration-contractor-mixedexpired.txt │ │ │ ├── expiration-contractor-mixedexpired.yaml │ │ │ ├── expiration-contractor-nonexpired.txt │ │ │ ├── expiration-contractor-nonexpired.yaml │ │ │ ├── expiration-contractor-onlykey.yaml │ │ │ ├── filter-bad-data-structure.rb │ │ │ ├── filter-bad-data-structure.yaml │ │ │ ├── filter-not-equal.txt │ │ │ ├── included-path-filters.yaml │ │ │ ├── multiple-contractors-1.rb │ │ │ ├── multiple-contractors-1.txt │ │ │ ├── multiple-contractors-1.yaml │ │ │ ├── no-filters-description.yaml │ │ │ ├── no-filters.rb │ │ │ ├── no-filters.txt │ │ │ ├── no-filters.yaml │ │ │ ├── one-filter-false.txt │ │ │ ├── one-filter-invalid-key.txt │ │ │ ├── one-filter-invalid-key.yaml │ │ │ ├── one-filter-repeated.txt │ │ │ ├── one-filter-repeated.yaml │ │ │ ├── one-filter-true.txt │ │ │ ├── one-filter-value.rb │ │ │ ├── one-filter-value.txt │ │ │ ├── one-filter-value.yaml │ │ │ ├── one-filter.rb │ │ │ ├── one-filter.yaml │ │ │ ├── two-filters-one-statement.rb │ │ │ ├── two-filters-two-statements.rb │ │ │ └── two-filters.yaml │ │ ├── ignored_file │ │ │ ├── README.md │ │ │ ├── example1.txt │ │ │ └── example2.txt │ │ ├── internal │ │ │ └── .gitkeep │ │ ├── ldap_config │ │ │ ├── managed.yaml │ │ │ ├── unknown.yaml │ │ │ └── unmanaged.yaml │ │ ├── logic_tests │ │ │ ├── alias_method.yaml │ │ │ ├── always_equals_false.yaml │ │ │ ├── busted_and.yaml │ │ │ ├── busted_not.yaml │ │ │ ├── busted_or.yaml │ │ │ ├── illegal_method.yaml │ │ │ ├── nested.yaml │ │ │ ├── no_rules.yaml │ │ │ ├── not_enough_rules.yaml │ │ │ ├── simple_and.yaml │ │ │ ├── simple_not.yaml │ │ │ ├── simple_or.yaml │ │ │ └── too_many_rules.yaml │ │ ├── metadata │ │ │ ├── bad-data-key.rb │ │ │ ├── bad-data-key.txt │ │ │ ├── bad-data-key.yaml │ │ │ ├── bad-data-structure.rb │ │ │ ├── bad-data-structure.yaml │ │ │ ├── expiration.txt │ │ │ ├── good.rb │ │ │ ├── good.txt │ │ │ ├── good.yaml │ │ │ ├── not-equal-metadata.txt │ │ │ ├── repeated-data-key.txt │ │ │ ├── undefined.rb │ │ │ ├── undefined.txt │ │ │ └── undefined.yaml │ │ ├── missing_references │ │ │ ├── group1.yaml │ │ │ ├── group2.json │ │ │ └── group3.yaml │ │ ├── missing_references_2 │ │ │ └── group3.yaml │ │ ├── multi_level │ │ │ ├── child_ou │ │ │ │ ├── group.txt │ │ │ │ └── test.txt │ │ │ ├── group.txt │ │ │ └── test.txt │ │ ├── nested_groups │ │ │ ├── group1.yaml │ │ │ ├── group2.txt │ │ │ ├── group3.yaml │ │ │ └── group4.rb │ │ ├── nested_ou │ │ │ ├── example1.txt │ │ │ ├── example2.txt │ │ │ └── sub_ou │ │ │ │ └── subexample.txt │ │ ├── pizza_teams │ │ │ ├── from_direct_report.yaml │ │ │ ├── from_direct_report_gone.yaml │ │ │ ├── from_direct_report_not.yaml │ │ │ ├── from_management.yaml │ │ │ ├── from_management_gone.yaml │ │ │ ├── from_management_not.yaml │ │ │ ├── from_username.yaml │ │ │ ├── from_username2.yaml │ │ │ └── grumpy-cat-eng.txt │ │ ├── ruby │ │ │ └── raiser.rb │ │ ├── simple │ │ │ ├── simple1.yaml │ │ │ └── simple2.yaml │ │ ├── simple2 │ │ │ ├── simple1.yaml │ │ │ └── simple2.yaml │ │ ├── text │ │ │ ├── alias_method.txt │ │ │ ├── contractor.txt │ │ │ ├── custom-filter-multiple.txt │ │ │ ├── custom-filter.txt │ │ │ ├── disallowed.txt │ │ │ ├── disallowed_alias.txt │ │ │ ├── duplicate-description.txt │ │ │ ├── duplicated.txt │ │ │ ├── empty-but-ok.txt │ │ │ ├── empty.txt │ │ │ ├── example.txt │ │ │ ├── example2.txt │ │ │ ├── expiration-already-expired.txt │ │ │ ├── expiration-date-unparseable.txt │ │ │ ├── expiration-mixed-expired.txt │ │ │ ├── expiration-not-expired.txt │ │ │ ├── expiration-predicate-unparseable.txt │ │ │ ├── invalid-semicolons.txt │ │ │ ├── invalid.txt │ │ │ ├── multiple-not-equal.txt │ │ │ ├── multiple.txt │ │ │ ├── no-description.txt │ │ │ ├── no_contractors.txt │ │ │ ├── not-equals-description.txt │ │ │ ├── one-not-equal.txt │ │ │ ├── only-not-equal.txt │ │ │ ├── positive-negative-ldap-group.txt │ │ │ ├── semicolons-in-description.txt │ │ │ ├── shorthand-duplicated.txt │ │ │ ├── shorthand.txt │ │ │ └── unknown.txt │ │ ├── unmanaged_groups │ │ │ ├── cached-group.yaml │ │ │ ├── missing-group.yaml │ │ │ └── unmanaged-group.yaml │ │ ├── wildcard_1 │ │ │ ├── README.md │ │ │ ├── bar.txt │ │ │ ├── buzz.txt │ │ │ ├── fizz.txt │ │ │ ├── foo.txt │ │ │ └── self.txt │ │ └── yaml │ │ │ ├── expiration-all-expired.yaml │ │ │ ├── expiration-already-expired.yaml │ │ │ ├── expiration-complex.yaml │ │ │ ├── expiration-mixed-expired.yaml │ │ │ └── expiration-not-expired.yaml │ ├── manager-map.yaml │ ├── people.yaml │ ├── plugins │ │ ├── bad_plugin.rb │ │ ├── bad_plugin_2.rb │ │ ├── bad_plugin_3.rb │ │ ├── bad_plugin_4.rb │ │ ├── bad_ruby.rb │ │ └── dummy_plugin.rb │ └── predictive-state │ │ └── cache1 │ │ ├── cn=admin,ou=org,ou=fakegithub,dc=github,dc=fake │ │ ├── cn=cheese,ou=Pizza_Teams,dc=kittens,dc=net │ │ ├── cn=empty,ou=teams,ou=fakegithub,dc=github,dc=fake │ │ ├── cn=member,ou=org,ou=fakegithub,dc=github,dc=fake │ │ ├── cn=mushroom,ou=Pizza_Teams,dc=kittens,dc=net │ │ ├── cn=pepperoni,ou=Pizza_Teams,dc=kittens,dc=net │ │ ├── cn=team1,ou=teams,ou=fakegithub,dc=github,dc=fake │ │ └── cn=team2,ou=teams,ou=fakegithub,dc=github,dc=fake │ └── spec_helper.rb └── vendor └── cache ├── activesupport-7.1.5.1.gem ├── addressable-2.8.7.gem ├── ast-2.4.3.gem ├── base64-0.3.0.gem ├── benchmark-0.4.1.gem ├── bigdecimal-3.3.1.gem ├── concurrent-ruby-1.3.5.gem ├── connection_pool-2.5.3.gem ├── contracts-0.17.2.gem ├── crack-1.0.1.gem ├── diff-lcs-1.6.2.gem ├── docile-1.4.0.gem ├── drb-2.2.3.gem ├── entitlements-app-1.2.1.gem ├── faraday-2.14.0.gem ├── faraday-net_http-3.4.2.gem ├── faraday-retry-2.3.2.gem ├── hashdiff-1.2.1.gem ├── i18n-1.14.7.gem ├── json-2.16.0.gem ├── language_server-protocol-3.17.0.5.gem ├── lint_roller-1.1.0.gem ├── logger-1.7.0.gem ├── minitest-5.25.5.gem ├── mutex_m-0.3.0.gem ├── net-http-0.7.0.gem ├── net-ldap-0.20.0.gem ├── octokit-4.25.1.gem ├── optimist-3.2.1.gem ├── ostruct-0.6.3.gem ├── parallel-1.27.0.gem ├── parser-3.3.10.0.gem ├── prism-1.6.0.gem ├── public_suffix-6.0.2.gem ├── racc-1.8.1.gem ├── rack-3.1.18.gem ├── rainbow-3.1.1.gem ├── rake-13.3.1.gem ├── rbs-3.6.1.gem ├── regexp_parser-2.11.3.gem ├── retryable-3.0.5.gem ├── rexml-3.4.4.gem ├── rspec-3.13.2.gem ├── rspec-core-3.13.6.gem ├── rspec-expectations-3.13.5.gem ├── rspec-mocks-3.13.7.gem ├── rspec-support-3.13.6.gem ├── rubocop-1.81.7.gem ├── rubocop-ast-1.48.0.gem ├── rubocop-github-0.23.0.gem ├── rubocop-performance-1.26.1.gem ├── rubocop-rails-2.32.0.gem ├── ruby-lsp-0.26.2.gem ├── ruby-progressbar-1.13.0.gem ├── rugged-1.9.0.gem ├── sawyer-0.9.3.gem ├── securerandom-0.3.2.gem ├── simplecov-0.22.0.gem ├── simplecov-erb-1.0.1.gem ├── simplecov-html-0.12.3.gem ├── simplecov_json_formatter-0.1.4.gem ├── tzinfo-2.0.6.gem ├── unicode-display_width-3.2.0.gem ├── unicode-emoji-4.1.0.gem ├── uri-1.1.1.gem ├── vcr-6.3.1.gem └── webmock-3.26.1.gem /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/acceptance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/workflows/acceptance.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/README.md -------------------------------------------------------------------------------- /bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entitlements-github-plugin.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/entitlements-github-plugin.gemspec -------------------------------------------------------------------------------- /lib/entitlements/backend/github_org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_org.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_org/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_org/controller.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_org/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_org/provider.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_org/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_org/service.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_team.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_team/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_team/controller.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_team/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_team/models/team.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_team/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_team/provider.rb -------------------------------------------------------------------------------- /lib/entitlements/backend/github_team/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/backend/github_team/service.rb -------------------------------------------------------------------------------- /lib/entitlements/config/retry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/config/retry.rb -------------------------------------------------------------------------------- /lib/entitlements/service/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/entitlements/service/github.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/lib/version.rb -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/cibuild-entitlements-github-plugin-acceptance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/script/cibuild-entitlements-github-plugin-acceptance -------------------------------------------------------------------------------- /script/lib/fold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/script/lib/fold.sh -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/script/test -------------------------------------------------------------------------------- /spec/acceptance/Dockerfile.entitlements-github-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/Dockerfile.entitlements-github-plugin -------------------------------------------------------------------------------- /spec/acceptance/ca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/README.md -------------------------------------------------------------------------------- /spec/acceptance/ca/certs/ca.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/certs/ca.cert.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/index.txt -------------------------------------------------------------------------------- /spec/acceptance/ca/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/index.txt.old: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/certs/ca-chain.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/certs/ca-chain.cert.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/certs/github.fake.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/certs/github.fake.cert.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/certs/intermediate.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/certs/intermediate.cert.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/certs/ldap-server.fake.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/certs/ldap-server.fake.cert.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/crlnumber: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/csr/github.fake.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/csr/github.fake.csr.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/csr/intermediate.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/csr/intermediate.csr.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/csr/ldap-server.fake.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/csr/ldap-server.fake.csr.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/index.txt -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/index.txt.attr.old: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/index.txt.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/index.txt.old -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/newcerts/1000.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/newcerts/1000.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/newcerts/1001.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/newcerts/1001.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/openssl.cnf -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/private/intermediate.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/private/intermediate.key.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/private/ldap-server.fake.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/private/ldap-server.fake.key.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/private/ldap-server.fake.key.pem.with-password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/intermediate/private/ldap-server.fake.key.pem.with-password -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/serial: -------------------------------------------------------------------------------- 1 | 1002 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/intermediate/serial.old: -------------------------------------------------------------------------------- 1 | 1001 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/newcerts/1000.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/newcerts/1000.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/openssl.cnf -------------------------------------------------------------------------------- /spec/acceptance/ca/private/ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ca/private/ca.key.pem -------------------------------------------------------------------------------- /spec/acceptance/ca/serial: -------------------------------------------------------------------------------- 1 | 1001 2 | -------------------------------------------------------------------------------- /spec/acceptance/ca/serial.old: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /spec/acceptance/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/docker-compose.yml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/basic_execution_no_action/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/basic_execution_no_action/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/basic_execution_no_action/ldap-config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/common/internal/contractors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/common/internal/contractors.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/common/internal/pre-hires.txt: -------------------------------------------------------------------------------- 1 | description = Listing of pre-hires 2 | username = chartreux 3 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/common/manager-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/common/manager-map.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_invite/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_invite/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_invite/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_invite/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_invite/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_invite/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_none/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_none/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_none/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_none/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_none/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_none/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_remove/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_remove/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_remove/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_remove/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ff_remove/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ff_remove/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ignore/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ignore/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ignore/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ignore/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_ignore/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_ignore/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_pending/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_pending/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_pending/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_pending/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_pending/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_pending/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/github_org_pending/ldap-config/github/employees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/github_org_pending/ldap-config/github/employees.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/dummy-ou-special/bacon.txt: -------------------------------------------------------------------------------- 1 | username = maiNecOON 2 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/dummy-ou/ragamuffin.txt: -------------------------------------------------------------------------------- 1 | username = RagaMuffin 2 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/dummy-ou/tony.txt: -------------------------------------------------------------------------------- 1 | username = ojosazules 2 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/app-aws-primary-admins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/app-aws-primary-admins.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/empty-but-ok-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/empty-but-ok-2.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/empty-but-ok-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/empty-but-ok-3.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/expire-later.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/expire-later.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/expired-empty-entitlement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/expired-empty-entitlement.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/expired-entitlement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/expired-entitlement.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/foo-bar-app/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/foo-bar-app/baz.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/groupofnames/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/groupofnames/baz.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/entitlements/groupofnames/sparkles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/entitlements/groupofnames/sparkles.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/github/child-team.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/github/child-team.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/github/colonel-meow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/github/colonel-meow.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/github/employees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/github/employees.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/github/grumpy-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/github/grumpy-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/colonel-meow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/colonel-meow.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/empty-but-ok-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/empty-but-ok-2.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/grumpy-cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/grumpy-cat.rb -------------------------------------------------------------------------------- /spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/keyboard-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/initial_run/ldap-config/pizza_teams/keyboard-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/app-aws-primary-admins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/app-aws-primary-admins.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/empty-but-ok-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/empty-but-ok-2.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/empty-but-ok-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/empty-but-ok-3.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/expire-later.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/expire-later.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/expired-empty-entitlement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/expired-empty-entitlement.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/expired-entitlement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/expired-entitlement.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/foo-bar-app/kittens/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/foo-bar-app/kittens/baz.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/groupofnames-renamed/bar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/groupofnames-renamed/bar.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/groupofnames-renamed/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/entitlements/groupofnames-renamed/baz.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github/child-team.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github/child-team.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github/colonel-meow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github/colonel-meow.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github/employees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github/employees.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github/grumpy-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github/grumpy-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/github/new-team.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/github/new-team.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/colonel-meow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/colonel-meow.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/contractors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/contractors.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/empty-but-ok-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/empty-but-ok-2.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/keyboard-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/keyboard-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/locked-out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete/ldap-config/pizza_teams/locked-out.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/app-aws-primary-admins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/app-aws-primary-admins.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/empty-but-ok-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/empty-but-ok-2.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/empty-but-ok-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/empty-but-ok-3.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/expire-later.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/expire-later.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/expired-empty-entitlement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/expired-empty-entitlement.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/expired-entitlement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/expired-entitlement.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/foo-bar-app/kittens/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/foo-bar-app/kittens/baz.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/groupofnames-renamed/bar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/groupofnames-renamed/bar.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/groupofnames-renamed/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/entitlements/groupofnames-renamed/baz.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github/colonel-meow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github/colonel-meow.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github/employees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github/employees.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github/grumpy-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/github/grumpy-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/colonel-meow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/colonel-meow.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/contractors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/contractors.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/empty-but-ok-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/empty-but-ok-2.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/keyboard-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/keyboard-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/locked-out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/modify_and_delete_lockout/ldap-config/pizza_teams/locked-out.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/config.yaml -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github-org-2/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github-org-2/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github-org-2/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github-org-2/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github-org/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github-org/admin.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github-org/member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github-org/member.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github/colonel-meow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github/colonel-meow.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github/employees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github/employees.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/ldap-config/github/grumpy-cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/ldap-config/github/grumpy-cat.txt -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=admin,ou=meowsister-org,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | blackmanx 2 | mainecoon 3 | ragamuffin 4 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=admin,ou=org2,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | blackmanx 2 | mainecoon 3 | ragamuffin 4 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=colonel-meow,ou=meowsister,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | cheetoh 2 | cyprus 3 | khaomanee 4 | ojosazules 5 | napoleon 6 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=employees,ou=meowsister,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/fixtures/predictive/predictive-state/cn=employees,ou=meowsister,ou=GitHub,dc=github,dc=fake -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=grumpy-cat,ou=meowsister,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | blackmanx 2 | mainecoon 3 | ragamuffin 4 | russianblue 5 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=member,ou=meowsister-org,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | blackmanx 2 | cheetoh 3 | donskoy 4 | khaomanee 5 | russianblue 6 | -------------------------------------------------------------------------------- /spec/acceptance/fixtures/predictive/predictive-state/cn=member,ou=org2,ou=GitHub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | cheetoh 2 | donskoy 3 | khaomanee 4 | russianblue 5 | -------------------------------------------------------------------------------- /spec/acceptance/git-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/git-server/README.md -------------------------------------------------------------------------------- /spec/acceptance/git-server/keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/git-server/keys/id_rsa.pub -------------------------------------------------------------------------------- /spec/acceptance/git-server/private/id_rsa.base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/git-server/private/id_rsa.base64 -------------------------------------------------------------------------------- /spec/acceptance/git-server/run-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/git-server/run-server.sh -------------------------------------------------------------------------------- /spec/acceptance/github-server/.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /spec/acceptance/github-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/Dockerfile -------------------------------------------------------------------------------- /spec/acceptance/github-server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/Gemfile -------------------------------------------------------------------------------- /spec/acceptance/github-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/README.md -------------------------------------------------------------------------------- /spec/acceptance/github-server/data/team_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/data/team_map.json -------------------------------------------------------------------------------- /spec/acceptance/github-server/data/teams/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/data/teams/4.json -------------------------------------------------------------------------------- /spec/acceptance/github-server/data/teams/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/data/teams/5.json -------------------------------------------------------------------------------- /spec/acceptance/github-server/data/teams/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/data/teams/6.json -------------------------------------------------------------------------------- /spec/acceptance/github-server/data/teams/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/data/teams/7.json -------------------------------------------------------------------------------- /spec/acceptance/github-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/run.sh -------------------------------------------------------------------------------- /spec/acceptance/github-server/ssl.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/ssl.crt -------------------------------------------------------------------------------- /spec/acceptance/github-server/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/ssl.key -------------------------------------------------------------------------------- /spec/acceptance/github-server/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/github-server/web.rb -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/env/default.startup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/env/default.startup.yaml -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/env/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/env/default.yaml -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/bootstrap/03-ldapi.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/bootstrap/03-ldapi.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/01-config/bump-sizelimit.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/01-config/bump-sizelimit.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/05-ou/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/05-ou/alumni-ou.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/05-ou/alumni-ou.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/05-ou/groups-ou.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/05-ou/groups-ou.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/05-ou/people-ou.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/05-ou/people-ou.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/10-ou-custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/10-ou-custom/groups-entitlements-ou.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/10-ou-custom/groups-entitlements-ou.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/10-ou-custom/groups-pizza_teams-ou.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/10-ou-custom/groups-pizza_teams-ou.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-groups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-groups/cn=colonel-meow,ou=Staff_Account,ou=Groups,dc=github,dc=net.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-groups/cn=colonel-meow,ou=Staff_Account,ou=Groups,dc=github,dc=net.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-groups/cn=garfield,ou=Staff_Account,ou=Groups,dc=github,dc=net.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-groups/cn=garfield,ou=Staff_Account,ou=Groups,dc=github,dc=net.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-groups/cn=lockout,ou=Groups,dc=github,dc=net.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-groups/cn=lockout,ou=Groups,dc=github,dc=net.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person01.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person01.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person02.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person02.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person03.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person03.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person04.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person04.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person05.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person05.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person06.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person06.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person07.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person07.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person08.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person08.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person09.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person09.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person10.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person10.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person11.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person11.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person12.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person12.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person13.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person13.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person14.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person14.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person15.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person15.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person16.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person16.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person17.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person17.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person18.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person18.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person19.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person19.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person20.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person20.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person21.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person21.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person22.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person22.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person23.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person23.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person24.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person24.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person25.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person25.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person26.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person26.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/20-people/person27.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/20-people/person27.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/ldif/data/99-bind-account/emmy.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/ldif/data/99-bind-account/emmy.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/run-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/run-server.sh -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/README -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/collective.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/collective.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/corba.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/corba.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/core.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/core.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/cosine.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/cosine.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/dhcp.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/dhcp.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/dnszone.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/dnszone.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/duaconf.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/duaconf.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/dyngroup.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/dyngroup.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/githubiam.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/githubiam.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/inetorgperson.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/inetorgperson.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/java.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/java.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/misc.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/misc.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/nis.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/nis.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/nssldap.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/nssldap.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/openldap.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/openldap.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/pmi.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/pmi.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/postfix.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/postfix.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/ppolicy.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/ppolicy.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/puppet.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/puppet.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/sshaccount.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/sshaccount.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/schema/sudoers.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/schema/sudoers.ldif -------------------------------------------------------------------------------- /spec/acceptance/ldap-server/tls/dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/ldap-server/tls/dhparam.pem -------------------------------------------------------------------------------- /spec/acceptance/support/run-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/support/run-app.sh -------------------------------------------------------------------------------- /spec/acceptance/tests/01_basic_webserver_github_connectivity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/01_basic_webserver_github_connectivity_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/10_initial_noop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/10_initial_noop_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/11_initial_run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/11_initial_run_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/20_modify_and_delete_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/20_modify_and_delete_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/25_lockout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/25_lockout_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/28_github_org_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/28_github_org_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/29_predictive_updates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/29_predictive_updates_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/tests/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/acceptance/tests/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/backend/github_org/controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/backend/github_org/controller_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/backend/github_org/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/backend/github_org/provider_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/backend/github_org/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/backend/github_org/service_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/backend/github_team/controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/backend/github_team/controller_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/backend/github_team/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/backend/github_team/provider_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/backend/github_team/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/backend/github_team/service_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements/service/github_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements/service/github_spec.rb -------------------------------------------------------------------------------- /spec/unit/entitlements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/entitlements_spec.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/bad-manager-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/bad-manager-map.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/backend-and-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/backend-and-type.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/backend-missing-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/backend-missing-type.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/backend-missing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/backend-missing.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/backend-valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/backend-valid.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/class-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/class-order.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/config-ldap-ou.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/config-ldap-ou.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/config-lockout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/config-lockout.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/config-memberof.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/config-memberof.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/config-mirror-target-does-not-exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/config-mirror-target-does-not-exist.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/config-mirror-target-is-also-a-mirror.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/config-mirror-target-is-also-a-mirror.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/config-mirror-valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/config-mirror-valid.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/entitlements-execute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/entitlements-execute.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/group-invalid-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/group-invalid-type.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/group-no-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/group-no-type.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/prefetch-people-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/prefetch-people-invalid.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/prefetch-people-valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/prefetch-people-valid.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/required-attribute-missing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/required-attribute-missing.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/required-attribute-wrong-datatype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/required-attribute-wrong-datatype.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config-files/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config-files/valid.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/config_with_erb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/config_with_erb.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/git-repo-audit-dir/dc=net/dc=kittens/ou=Groups/cn=group1: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/git-repo-audit-dir/dc=net/dc=kittens/ou=Groups/cn=group2: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/git-repo-audit-dir/dc=net/dc=kittens/ou=Groups/cn=group3: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/git-repo-audit-dir/dc=net/dc=kittens/ou=Groups/cn=group4: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/git-repo-audit-dir/dc=net/dc=kittens/ou=extra/cn=extragroup: -------------------------------------------------------------------------------- 1 | # Placeholder 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/organization-members-page1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/organization-members-page1.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/organization-members-page2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/organization-members-page2.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/organization-members-page3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/organization-members-page3.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/organization-members-page4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/organization-members-page4.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/pending-members-page1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/pending-members-page1.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/pending-members-page2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/pending-members-page2.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/pending-members-page3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/pending-members-page3.json -------------------------------------------------------------------------------- /spec/unit/fixtures/graphql-output/pending-members-page4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/graphql-output/pending-members-page4.json -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency/circular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency/circular.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency/group1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency/group1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency/group2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency/group2.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency/group3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency/group3.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency/group4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency/group4.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency_2/group1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency_2/group1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency_2/group2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency_2/group2.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency_2/group3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency_2/group3.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency_2/group4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency_2/group4.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency_2/group5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency_2/group5.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/circular_dependency_2/group6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/circular_dependency_2/group6.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/expired-text-empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/expired-text-empty.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/expired-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/expired-text.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/expired-yaml-quoted-date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/expired-yaml-quoted-date.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/expired-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/expired-yaml.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/valid-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/valid-text.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/valid-yaml-quoted-date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/valid-yaml-quoted-date.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/expiration/valid-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/expiration/valid-yaml.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/bad-data-structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/bad-data-structure.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/bad-data-structure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/bad-data-structure.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/contractors-yes-prehires-no.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/contractors-yes-prehires-no.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/excluded-path-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/excluded-path-filters.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-expired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-expired.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-expired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-mixedexpired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-mixedexpired.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-mixedexpired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-mixedexpired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-nonexpired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-nonexpired.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-nonexpired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-nonexpired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/expiration-contractor-onlykey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/expiration-contractor-onlykey.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/filter-bad-data-structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/filter-bad-data-structure.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/filter-bad-data-structure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/filter-bad-data-structure.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/filter-not-equal.txt: -------------------------------------------------------------------------------- 1 | description = unit tests 2 | filter_contractors != all 3 | username = RAGAMUFFIn 4 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/included-path-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/included-path-filters.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/multiple-contractors-1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/multiple-contractors-1.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/multiple-contractors-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/multiple-contractors-1.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/multiple-contractors-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/multiple-contractors-1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/no-filters-description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/no-filters-description.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/no-filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/no-filters.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/no-filters.txt: -------------------------------------------------------------------------------- 1 | description = unit tests 2 | username = RAGAMUFFIn 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/no-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/no-filters.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-false.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-false.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-invalid-key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-invalid-key.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-invalid-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-invalid-key.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-repeated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-repeated.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-repeated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-repeated.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-true.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-true.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-value.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-value.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter-value.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/one-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/one-filter.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/two-filters-one-statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/two-filters-one-statement.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/two-filters-two-statements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/two-filters-two-statements.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/filters/two-filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/filters/two-filters.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ignored_file/README.md: -------------------------------------------------------------------------------- 1 | # This should be skipped 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ignored_file/example1.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | username = BlackManx 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ignored_file/example2.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | username = BlackManx 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/internal/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ldap_config/managed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/ldap_config/managed.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ldap_config/unknown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/ldap_config/unknown.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ldap_config/unmanaged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/ldap_config/unmanaged.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/alias_method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/alias_method.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/always_equals_false.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | description: Never match 3 | rules: 4 | always: false 5 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/busted_and.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/busted_and.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/busted_not.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/busted_not.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/busted_or.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/busted_or.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/illegal_method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/illegal_method.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/nested.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/no_rules.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | description: No rules, just right! 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/not_enough_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/not_enough_rules.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/simple_and.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/simple_and.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/simple_not.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/simple_not.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/simple_or.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/simple_or.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/logic_tests/too_many_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/logic_tests/too_many_rules.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/bad-data-key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/bad-data-key.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/bad-data-key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/bad-data-key.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/bad-data-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/bad-data-key.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/bad-data-structure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/bad-data-structure.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/bad-data-structure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/bad-data-structure.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/expiration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/expiration.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/good.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/good.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/good.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/good.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/good.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/good.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/not-equal-metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/not-equal-metadata.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/repeated-data-key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/repeated-data-key.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/undefined.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/undefined.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/undefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/metadata/undefined.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/metadata/undefined.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | description: Illegal data structure 3 | rules: 4 | direct_report: MAINECOON 5 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/missing_references/group1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/missing_references/group1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/missing_references/group2.json: -------------------------------------------------------------------------------- 1 | {"kittens":"awesome"} 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/missing_references/group3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/missing_references/group3.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/missing_references_2/group3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/missing_references_2/group3.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/multi_level/child_ou/group.txt: -------------------------------------------------------------------------------- 1 | description = a multi-level example 2 | username = hubot 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/multi_level/child_ou/test.txt: -------------------------------------------------------------------------------- 1 | description = a multi-level example 2 | username = BlackManx 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/multi_level/group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/multi_level/group.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/multi_level/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/multi_level/test.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_groups/group1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/nested_groups/group1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_groups/group2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/nested_groups/group2.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_groups/group3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | description: Nested groups test 3 | rules: 4 | username: BlackManx 5 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_groups/group4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/nested_groups/group4.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_ou/example1.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | username = BlackManx 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_ou/example2.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | username = BlackManx 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/nested_ou/sub_ou/subexample.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | username = BlackManx 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_direct_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_direct_report.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_direct_report_gone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_direct_report_gone.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_direct_report_not.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_direct_report_not.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_management.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_management_gone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_management_gone.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_management_not.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_management_not.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_username.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_username.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/from_username2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/pizza_teams/from_username2.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/pizza_teams/grumpy-cat-eng.txt: -------------------------------------------------------------------------------- 1 | description = Security-ops Engineering 2 | manager = mainecoon 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/ruby/raiser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/ruby/raiser.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/simple/simple1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/simple/simple1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/simple/simple2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | description: simple1 3 | rules: 4 | username: russianblue 5 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/simple2/simple1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/simple2/simple1.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/simple2/simple2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | description: simple2 3 | rules: 4 | username: mainecOON 5 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/alias_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/alias_method.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/contractor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/contractor.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/custom-filter-multiple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/custom-filter-multiple.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/custom-filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/custom-filter.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/disallowed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/disallowed.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/disallowed_alias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/disallowed_alias.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/duplicate-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/duplicate-description.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/duplicated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/duplicated.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/empty-but-ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/empty-but-ok.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/empty.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/example.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/example2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/example2.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/expiration-already-expired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/expiration-already-expired.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/expiration-date-unparseable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/expiration-date-unparseable.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/expiration-mixed-expired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/expiration-mixed-expired.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/expiration-not-expired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/expiration-not-expired.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/expiration-predicate-unparseable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/expiration-predicate-unparseable.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/invalid-semicolons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/invalid-semicolons.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/invalid.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/multiple-not-equal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/multiple-not-equal.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/multiple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/multiple.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/no-description.txt: -------------------------------------------------------------------------------- 1 | management = MAINECOON # Example 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/no_contractors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/no_contractors.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/not-equals-description.txt: -------------------------------------------------------------------------------- 1 | management = MAINECOON # Example 2 | description != What? 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/one-not-equal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/one-not-equal.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/only-not-equal.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | username != russianblue 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/positive-negative-ldap-group.txt: -------------------------------------------------------------------------------- 1 | description = Example 2 | management = MAINECOON 3 | group != no_contractors 4 | -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/semicolons-in-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/semicolons-in-description.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/shorthand-duplicated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/shorthand-duplicated.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/shorthand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/shorthand.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/text/unknown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/text/unknown.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/unmanaged_groups/cached-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/unmanaged_groups/cached-group.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/unmanaged_groups/missing-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/unmanaged_groups/missing-group.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/unmanaged_groups/unmanaged-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/unmanaged_groups/unmanaged-group.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/wildcard_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/wildcard_1/README.md -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/wildcard_1/bar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/wildcard_1/bar.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/wildcard_1/buzz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/wildcard_1/buzz.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/wildcard_1/fizz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/wildcard_1/fizz.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/wildcard_1/foo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/wildcard_1/foo.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/wildcard_1/self.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/wildcard_1/self.txt -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/yaml/expiration-all-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/yaml/expiration-all-expired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/yaml/expiration-already-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/yaml/expiration-already-expired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/yaml/expiration-complex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/yaml/expiration-complex.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/yaml/expiration-mixed-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/yaml/expiration-mixed-expired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/ldap-config/yaml/expiration-not-expired.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/ldap-config/yaml/expiration-not-expired.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/manager-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/manager-map.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/people.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/people.yaml -------------------------------------------------------------------------------- /spec/unit/fixtures/plugins/bad_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/plugins/bad_plugin.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/plugins/bad_plugin_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/plugins/bad_plugin_2.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/plugins/bad_plugin_3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/plugins/bad_plugin_3.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/plugins/bad_plugin_4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/plugins/bad_plugin_4.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/plugins/bad_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/plugins/bad_ruby.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/plugins/dummy_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/fixtures/plugins/dummy_plugin.rb -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=admin,ou=org,ou=fakegithub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | blackmanx 2 | bobtail 3 | ragamuffin 4 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=cheese,ou=Pizza_Teams,dc=kittens,dc=net: -------------------------------------------------------------------------------- 1 | korat 2 | RUSSIANBLUE 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=empty,ou=teams,ou=fakegithub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | # No members 2 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=member,ou=org,ou=fakegithub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | korat 2 | napoleon 3 | peterbald 4 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=mushroom,ou=Pizza_Teams,dc=kittens,dc=net: -------------------------------------------------------------------------------- 1 | bobtail 2 | desertlynx 3 | germanrex 4 | ragamuffin 5 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=pepperoni,ou=Pizza_Teams,dc=kittens,dc=net: -------------------------------------------------------------------------------- 1 | blackmanx 2 | chartreux 3 | RAGAmuffin 4 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=team1,ou=teams,ou=fakegithub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | korat 2 | ragamuffin 3 | -------------------------------------------------------------------------------- /spec/unit/fixtures/predictive-state/cache1/cn=team2,ou=teams,ou=fakegithub,dc=github,dc=fake: -------------------------------------------------------------------------------- 1 | bobtail 2 | napoleon 3 | ragamuffin 4 | -------------------------------------------------------------------------------- /spec/unit/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/spec/unit/spec_helper.rb -------------------------------------------------------------------------------- /vendor/cache/activesupport-7.1.5.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/activesupport-7.1.5.1.gem -------------------------------------------------------------------------------- /vendor/cache/addressable-2.8.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/addressable-2.8.7.gem -------------------------------------------------------------------------------- /vendor/cache/ast-2.4.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/ast-2.4.3.gem -------------------------------------------------------------------------------- /vendor/cache/base64-0.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/base64-0.3.0.gem -------------------------------------------------------------------------------- /vendor/cache/benchmark-0.4.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/benchmark-0.4.1.gem -------------------------------------------------------------------------------- /vendor/cache/bigdecimal-3.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/bigdecimal-3.3.1.gem -------------------------------------------------------------------------------- /vendor/cache/concurrent-ruby-1.3.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/concurrent-ruby-1.3.5.gem -------------------------------------------------------------------------------- /vendor/cache/connection_pool-2.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/connection_pool-2.5.3.gem -------------------------------------------------------------------------------- /vendor/cache/contracts-0.17.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/contracts-0.17.2.gem -------------------------------------------------------------------------------- /vendor/cache/crack-1.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/crack-1.0.1.gem -------------------------------------------------------------------------------- /vendor/cache/diff-lcs-1.6.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/diff-lcs-1.6.2.gem -------------------------------------------------------------------------------- /vendor/cache/docile-1.4.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/docile-1.4.0.gem -------------------------------------------------------------------------------- /vendor/cache/drb-2.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/drb-2.2.3.gem -------------------------------------------------------------------------------- /vendor/cache/entitlements-app-1.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/entitlements-app-1.2.1.gem -------------------------------------------------------------------------------- /vendor/cache/faraday-2.14.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/faraday-2.14.0.gem -------------------------------------------------------------------------------- /vendor/cache/faraday-net_http-3.4.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/faraday-net_http-3.4.2.gem -------------------------------------------------------------------------------- /vendor/cache/faraday-retry-2.3.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/faraday-retry-2.3.2.gem -------------------------------------------------------------------------------- /vendor/cache/hashdiff-1.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/hashdiff-1.2.1.gem -------------------------------------------------------------------------------- /vendor/cache/i18n-1.14.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/i18n-1.14.7.gem -------------------------------------------------------------------------------- /vendor/cache/json-2.16.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/json-2.16.0.gem -------------------------------------------------------------------------------- /vendor/cache/language_server-protocol-3.17.0.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/language_server-protocol-3.17.0.5.gem -------------------------------------------------------------------------------- /vendor/cache/lint_roller-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/lint_roller-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/logger-1.7.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/logger-1.7.0.gem -------------------------------------------------------------------------------- /vendor/cache/minitest-5.25.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/minitest-5.25.5.gem -------------------------------------------------------------------------------- /vendor/cache/mutex_m-0.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/mutex_m-0.3.0.gem -------------------------------------------------------------------------------- /vendor/cache/net-http-0.7.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/net-http-0.7.0.gem -------------------------------------------------------------------------------- /vendor/cache/net-ldap-0.20.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/net-ldap-0.20.0.gem -------------------------------------------------------------------------------- /vendor/cache/octokit-4.25.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/octokit-4.25.1.gem -------------------------------------------------------------------------------- /vendor/cache/optimist-3.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/optimist-3.2.1.gem -------------------------------------------------------------------------------- /vendor/cache/ostruct-0.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/ostruct-0.6.3.gem -------------------------------------------------------------------------------- /vendor/cache/parallel-1.27.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/parallel-1.27.0.gem -------------------------------------------------------------------------------- /vendor/cache/parser-3.3.10.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/parser-3.3.10.0.gem -------------------------------------------------------------------------------- /vendor/cache/prism-1.6.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/prism-1.6.0.gem -------------------------------------------------------------------------------- /vendor/cache/public_suffix-6.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/public_suffix-6.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/racc-1.8.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/racc-1.8.1.gem -------------------------------------------------------------------------------- /vendor/cache/rack-3.1.18.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rack-3.1.18.gem -------------------------------------------------------------------------------- /vendor/cache/rainbow-3.1.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rainbow-3.1.1.gem -------------------------------------------------------------------------------- /vendor/cache/rake-13.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rake-13.3.1.gem -------------------------------------------------------------------------------- /vendor/cache/rbs-3.6.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rbs-3.6.1.gem -------------------------------------------------------------------------------- /vendor/cache/regexp_parser-2.11.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/regexp_parser-2.11.3.gem -------------------------------------------------------------------------------- /vendor/cache/retryable-3.0.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/retryable-3.0.5.gem -------------------------------------------------------------------------------- /vendor/cache/rexml-3.4.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rexml-3.4.4.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-3.13.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rspec-3.13.2.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-core-3.13.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rspec-core-3.13.6.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-expectations-3.13.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rspec-expectations-3.13.5.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-mocks-3.13.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rspec-mocks-3.13.7.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-support-3.13.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rspec-support-3.13.6.gem -------------------------------------------------------------------------------- /vendor/cache/rubocop-1.81.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rubocop-1.81.7.gem -------------------------------------------------------------------------------- /vendor/cache/rubocop-ast-1.48.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rubocop-ast-1.48.0.gem -------------------------------------------------------------------------------- /vendor/cache/rubocop-github-0.23.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rubocop-github-0.23.0.gem -------------------------------------------------------------------------------- /vendor/cache/rubocop-performance-1.26.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rubocop-performance-1.26.1.gem -------------------------------------------------------------------------------- /vendor/cache/rubocop-rails-2.32.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rubocop-rails-2.32.0.gem -------------------------------------------------------------------------------- /vendor/cache/ruby-lsp-0.26.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/ruby-lsp-0.26.2.gem -------------------------------------------------------------------------------- /vendor/cache/ruby-progressbar-1.13.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/ruby-progressbar-1.13.0.gem -------------------------------------------------------------------------------- /vendor/cache/rugged-1.9.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/rugged-1.9.0.gem -------------------------------------------------------------------------------- /vendor/cache/sawyer-0.9.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/sawyer-0.9.3.gem -------------------------------------------------------------------------------- /vendor/cache/securerandom-0.3.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/securerandom-0.3.2.gem -------------------------------------------------------------------------------- /vendor/cache/simplecov-0.22.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/simplecov-0.22.0.gem -------------------------------------------------------------------------------- /vendor/cache/simplecov-erb-1.0.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/simplecov-erb-1.0.1.gem -------------------------------------------------------------------------------- /vendor/cache/simplecov-html-0.12.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/simplecov-html-0.12.3.gem -------------------------------------------------------------------------------- /vendor/cache/simplecov_json_formatter-0.1.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/simplecov_json_formatter-0.1.4.gem -------------------------------------------------------------------------------- /vendor/cache/tzinfo-2.0.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/tzinfo-2.0.6.gem -------------------------------------------------------------------------------- /vendor/cache/unicode-display_width-3.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/unicode-display_width-3.2.0.gem -------------------------------------------------------------------------------- /vendor/cache/unicode-emoji-4.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/unicode-emoji-4.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/uri-1.1.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/uri-1.1.1.gem -------------------------------------------------------------------------------- /vendor/cache/vcr-6.3.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/vcr-6.3.1.gem -------------------------------------------------------------------------------- /vendor/cache/webmock-3.26.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/entitlements-github-plugin/HEAD/vendor/cache/webmock-3.26.1.gem --------------------------------------------------------------------------------