├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── app.rb ├── app ├── errors.rb ├── message_filter.rb ├── models.rb ├── models │ ├── compose_validator.rb │ ├── document.rb │ ├── gistable.rb │ ├── registry.rb │ └── validation.rb ├── routes.rb └── routes │ ├── base.rb │ ├── documents.rb │ ├── images.rb │ ├── keys.rb │ └── validation.rb ├── bin └── deploy_qa.sh ├── circle.yml ├── config.ru ├── schema.yml └── spec ├── message_filter_spec.rb ├── models ├── compose_validator_spec.rb ├── document_spec.rb ├── gistable_spec.rb ├── registry_spec.rb └── validation_spec.rb ├── routes ├── documents_spec.rb ├── images_spec.rb ├── keys_spec.rb └── validations_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | ./idea 2 | .ruby-gemset 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.5 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app.rb -------------------------------------------------------------------------------- /app/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/errors.rb -------------------------------------------------------------------------------- /app/message_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/message_filter.rb -------------------------------------------------------------------------------- /app/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/models.rb -------------------------------------------------------------------------------- /app/models/compose_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/models/compose_validator.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/gistable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/models/gistable.rb -------------------------------------------------------------------------------- /app/models/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/models/registry.rb -------------------------------------------------------------------------------- /app/models/validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/models/validation.rb -------------------------------------------------------------------------------- /app/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/routes.rb -------------------------------------------------------------------------------- /app/routes/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/routes/base.rb -------------------------------------------------------------------------------- /app/routes/documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/routes/documents.rb -------------------------------------------------------------------------------- /app/routes/images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/routes/images.rb -------------------------------------------------------------------------------- /app/routes/keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/routes/keys.rb -------------------------------------------------------------------------------- /app/routes/validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/app/routes/validation.rb -------------------------------------------------------------------------------- /bin/deploy_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/bin/deploy_qa.sh -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/circle.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | 3 | run Lorry::App 4 | -------------------------------------------------------------------------------- /schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/schema.yml -------------------------------------------------------------------------------- /spec/message_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/message_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/compose_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/models/compose_validator_spec.rb -------------------------------------------------------------------------------- /spec/models/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/models/document_spec.rb -------------------------------------------------------------------------------- /spec/models/gistable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/models/gistable_spec.rb -------------------------------------------------------------------------------- /spec/models/registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/models/registry_spec.rb -------------------------------------------------------------------------------- /spec/models/validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/models/validation_spec.rb -------------------------------------------------------------------------------- /spec/routes/documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/routes/documents_spec.rb -------------------------------------------------------------------------------- /spec/routes/images_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/routes/images_spec.rb -------------------------------------------------------------------------------- /spec/routes/keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/routes/keys_spec.rb -------------------------------------------------------------------------------- /spec/routes/validations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/routes/validations_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/lorry/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------