├── .circleci └── config.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-gemset ├── .ruby-version ├── .simplecov ├── CHANGES.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── simple_endpoint.rb └── simple_endpoint │ ├── controller.rb │ ├── controller │ ├── builder.rb │ └── class_methods.rb │ ├── endpoint.rb │ ├── endpoint │ └── endpoint_options.rb │ ├── errors.rb │ └── version.rb ├── simple_endpoint.gemspec └── spec ├── simple_endpoint ├── controller_spec.rb └── endpoint_spec.rb └── spec_helper.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | simple_endpoint 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/.simplecov -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/simple_endpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint/controller.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/controller/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint/controller/builder.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/controller/class_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint/controller/class_methods.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/endpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint/endpoint.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/endpoint/endpoint_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint/endpoint/endpoint_options.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/lib/simple_endpoint/errors.rb -------------------------------------------------------------------------------- /lib/simple_endpoint/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module SimpleEndpoint 4 | VERSION = '2.0.0' 5 | end 6 | -------------------------------------------------------------------------------- /simple_endpoint.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/simple_endpoint.gemspec -------------------------------------------------------------------------------- /spec/simple_endpoint/controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/spec/simple_endpoint/controller_spec.rb -------------------------------------------------------------------------------- /spec/simple_endpoint/endpoint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/spec/simple_endpoint/endpoint_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/differencialx/simple_endpoint/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------