├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── rack-authorize.rb └── rack │ ├── authorize.rb │ └── authorize │ ├── ability.rb │ ├── authorizer.rb │ ├── rule.rb │ └── version.rb ├── rack-authorize.gemspec └── test ├── rack └── authorize_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/rack-authorize.rb: -------------------------------------------------------------------------------- 1 | require "rack/authorize" -------------------------------------------------------------------------------- /lib/rack/authorize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/lib/rack/authorize.rb -------------------------------------------------------------------------------- /lib/rack/authorize/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/lib/rack/authorize/ability.rb -------------------------------------------------------------------------------- /lib/rack/authorize/authorizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/lib/rack/authorize/authorizer.rb -------------------------------------------------------------------------------- /lib/rack/authorize/rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/lib/rack/authorize/rule.rb -------------------------------------------------------------------------------- /lib/rack/authorize/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/lib/rack/authorize/version.rb -------------------------------------------------------------------------------- /rack-authorize.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/rack-authorize.gemspec -------------------------------------------------------------------------------- /test/rack/authorize_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/test/rack/authorize_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanguango/rack-authorize/HEAD/test/test_helper.rb --------------------------------------------------------------------------------