├── .codeclimate.yml ├── .gitignore ├── .landscape.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── .gitignore ├── gae-example │ ├── .gitignore │ ├── app.yaml │ ├── appengine_config.py │ ├── runserver.sh │ └── src │ │ ├── __init__.py │ │ └── app.py └── simple_note │ └── app.py ├── ray-appengine ├── .gitignore ├── README.md ├── ray_appengine │ ├── __init__.py │ └── all.py ├── setup.py └── tests │ ├── __init__.py │ ├── gae_test.py │ └── test_api.py ├── ray-core ├── .coveragerc ├── .gitignore ├── .pep8 ├── ray │ ├── __init__.py │ ├── actions.py │ ├── api.py │ ├── application.py │ ├── authentication.py │ ├── endpoint.py │ ├── exceptions.py │ ├── hooks.py │ ├── http.py │ ├── login.py │ ├── model.py │ ├── shield.py │ ├── single_request.py │ └── wsgi │ │ ├── __init__.py │ │ └── wsgi.py ├── setup.py └── tests │ ├── __init__.py │ ├── common.py │ ├── model_interface.py │ ├── test_action_map.py │ ├── test_actions.py │ ├── test_api.py │ ├── test_authentication.py │ ├── test_authentication_api.py │ ├── test_endpoint.py │ ├── test_hook.py │ ├── test_shield.py │ └── test_single_request.py ├── ray-peewee ├── .gitignore ├── ray_peewee │ ├── __init__.py │ └── all.py ├── setup.py └── tests │ ├── __init__.py │ └── test_api.py ├── ray-sqlalchemy ├── .gitignore ├── README.md ├── ray_sqlalchemy │ ├── __init__.py │ └── all.py ├── setup.py └── tests │ ├── __init__.py │ ├── app.py │ └── test_integrated.py └── venv ├── create_env.sh └── requirements_tests.txt /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/gae-example/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | libs/* 3 | -------------------------------------------------------------------------------- /examples/gae-example/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/examples/gae-example/app.yaml -------------------------------------------------------------------------------- /examples/gae-example/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/examples/gae-example/appengine_config.py -------------------------------------------------------------------------------- /examples/gae-example/runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/examples/gae-example/runserver.sh -------------------------------------------------------------------------------- /examples/gae-example/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gae-example/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/examples/gae-example/src/app.py -------------------------------------------------------------------------------- /examples/simple_note/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/examples/simple_note/app.py -------------------------------------------------------------------------------- /ray-appengine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-appengine/.gitignore -------------------------------------------------------------------------------- /ray-appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-appengine/README.md -------------------------------------------------------------------------------- /ray-appengine/ray_appengine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-appengine/ray_appengine/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-appengine/ray_appengine/all.py -------------------------------------------------------------------------------- /ray-appengine/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-appengine/setup.py -------------------------------------------------------------------------------- /ray-appengine/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-appengine/tests/gae_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-appengine/tests/gae_test.py -------------------------------------------------------------------------------- /ray-appengine/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-appengine/tests/test_api.py -------------------------------------------------------------------------------- /ray-core/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/.coveragerc -------------------------------------------------------------------------------- /ray-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/.gitignore -------------------------------------------------------------------------------- /ray-core/.pep8: -------------------------------------------------------------------------------- 1 | [pep8] 2 | max-line-length = 120 3 | ignore = E401 4 | -------------------------------------------------------------------------------- /ray-core/ray/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-core/ray/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/actions.py -------------------------------------------------------------------------------- /ray-core/ray/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/api.py -------------------------------------------------------------------------------- /ray-core/ray/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/application.py -------------------------------------------------------------------------------- /ray-core/ray/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/authentication.py -------------------------------------------------------------------------------- /ray-core/ray/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/endpoint.py -------------------------------------------------------------------------------- /ray-core/ray/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/exceptions.py -------------------------------------------------------------------------------- /ray-core/ray/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/hooks.py -------------------------------------------------------------------------------- /ray-core/ray/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/http.py -------------------------------------------------------------------------------- /ray-core/ray/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/login.py -------------------------------------------------------------------------------- /ray-core/ray/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/model.py -------------------------------------------------------------------------------- /ray-core/ray/shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/shield.py -------------------------------------------------------------------------------- /ray-core/ray/single_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/ray/single_request.py -------------------------------------------------------------------------------- /ray-core/ray/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-core/ray/wsgi/wsgi.py: -------------------------------------------------------------------------------- 1 | from ray.api import application 2 | -------------------------------------------------------------------------------- /ray-core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/setup.py -------------------------------------------------------------------------------- /ray-core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-core/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/common.py -------------------------------------------------------------------------------- /ray-core/tests/model_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/model_interface.py -------------------------------------------------------------------------------- /ray-core/tests/test_action_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_action_map.py -------------------------------------------------------------------------------- /ray-core/tests/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_actions.py -------------------------------------------------------------------------------- /ray-core/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_api.py -------------------------------------------------------------------------------- /ray-core/tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_authentication.py -------------------------------------------------------------------------------- /ray-core/tests/test_authentication_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_authentication_api.py -------------------------------------------------------------------------------- /ray-core/tests/test_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_endpoint.py -------------------------------------------------------------------------------- /ray-core/tests/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_hook.py -------------------------------------------------------------------------------- /ray-core/tests/test_shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_shield.py -------------------------------------------------------------------------------- /ray-core/tests/test_single_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-core/tests/test_single_request.py -------------------------------------------------------------------------------- /ray-peewee/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-peewee/.gitignore -------------------------------------------------------------------------------- /ray-peewee/ray_peewee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-peewee/ray_peewee/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-peewee/ray_peewee/all.py -------------------------------------------------------------------------------- /ray-peewee/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-peewee/setup.py -------------------------------------------------------------------------------- /ray-peewee/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-peewee/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-peewee/tests/test_api.py -------------------------------------------------------------------------------- /ray-sqlalchemy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-sqlalchemy/.gitignore -------------------------------------------------------------------------------- /ray-sqlalchemy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-sqlalchemy/README.md -------------------------------------------------------------------------------- /ray-sqlalchemy/ray_sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-sqlalchemy/ray_sqlalchemy/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-sqlalchemy/ray_sqlalchemy/all.py -------------------------------------------------------------------------------- /ray-sqlalchemy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-sqlalchemy/setup.py -------------------------------------------------------------------------------- /ray-sqlalchemy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ray-sqlalchemy/tests/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-sqlalchemy/tests/app.py -------------------------------------------------------------------------------- /ray-sqlalchemy/tests/test_integrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/ray-sqlalchemy/tests/test_integrated.py -------------------------------------------------------------------------------- /venv/create_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/venv/create_env.sh -------------------------------------------------------------------------------- /venv/requirements_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipevolpone/ray/HEAD/venv/requirements_tests.txt --------------------------------------------------------------------------------