├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── api_blueprint.rb └── api_blueprint │ ├── action_formatter.rb │ ├── base_formatter.rb │ ├── example_formatter.rb │ └── version.rb ├── rspec-api-blueprint-formatter.gemspec └── spec ├── api_blueprint ├── action_formatter_spec.rb └── example_formatter_spec.rb ├── rspec └── api │ └── blueprint │ └── formatter_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/api_blueprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/lib/api_blueprint.rb -------------------------------------------------------------------------------- /lib/api_blueprint/action_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/lib/api_blueprint/action_formatter.rb -------------------------------------------------------------------------------- /lib/api_blueprint/base_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/lib/api_blueprint/base_formatter.rb -------------------------------------------------------------------------------- /lib/api_blueprint/example_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/lib/api_blueprint/example_formatter.rb -------------------------------------------------------------------------------- /lib/api_blueprint/version.rb: -------------------------------------------------------------------------------- 1 | module ApiBlueprintFormatter 2 | VERSION = '0.2.2' 3 | end 4 | -------------------------------------------------------------------------------- /rspec-api-blueprint-formatter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/rspec-api-blueprint-formatter.gemspec -------------------------------------------------------------------------------- /spec/api_blueprint/action_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/spec/api_blueprint/action_formatter_spec.rb -------------------------------------------------------------------------------- /spec/api_blueprint/example_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/spec/api_blueprint/example_formatter_spec.rb -------------------------------------------------------------------------------- /spec/rspec/api/blueprint/formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nambrot/rspec-api-blueprint-formatter/HEAD/spec/rspec/api/blueprint/formatter_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) 2 | require 'api_blueprint' 3 | --------------------------------------------------------------------------------