Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swap yard dependency for danger-toc. #132

Merged
merged 1 commit into from
Jan 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### 0.8.7 (Next)

* [#131](https://github.com/codegram/hyperclient/pull/131): Upgrade to Rubocop 0.50.0, fix Bundler's insecure git source warning - [@nebolsin](https://github.com/nebolsin).
* [#132](https://github.com/codegram/hyperclient/pull/132): Swapped yard dependency for danger-toc - [@dblock](https://github.com/dblock).
* Your contribution here.

### 0.8.6 (August 27, 2017)
Expand Down
2 changes: 1 addition & 1 deletion Dangerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# check for changes in CHANGELOG
changelog.check
toc.check
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ group :development, :test do
gem 'rake'
gem 'rubocop', '~> 0.50.0', require: false
gem 'simplecov', require: false
gem 'yard', '~> 0.8'
gem 'yard-tomdoc'
end

group :test do
gem 'danger-changelog', '~> 0.1'
gem 'danger-toc', '~> 0.1'
gem 'futuroscope', github: 'codegram/futuroscope'
gem 'minitest'
gem 'mocha'
Expand Down
33 changes: 16 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,22 @@

Hyperclient is a Hypermedia API client written in Ruby. It fully supports [JSON HAL](http://stateless.co/hal_specification.html).

* [Hyperclient](#hyperclient)
* [Usage](#usage)
* [API Client](#api-client)
* [Resources and Attributes](#resources-and-attributes)
* [Links and Embedded Resources](#links-and-embedded-resources)
* [Templated Links](#templated-links)
* [Curies](#curies)
* [Attributes](#attributes)
* [HTTP](#http)
* [Asynchronous requests](#asynchronous-requests)
* [Testing Using Hyperclient](#testing-using-hyperclient)
* [Reference](#reference)
* [Hyperclient Users](#hyperclient-users)
* [Contributing](#contributing)
* [License](#license)

<sub><sup>ToC created with [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)</sup></sub>
# Table of Contents

- [Usage](#usage)
- [API Client](#api-client)
- [Resources and Attributes](#resources-and-attributes)
- [Links and Embedded Resources](#links-and-embedded-resources)
- [Templated Links](#templated-links)
- [Curies](#curies)
- [Attributes](#attributes)
- [HTTP](#http)
- [Asynchronous requests](#asynchronous-requests)
- [Testing Using Hyperclient](#testing-using-hyperclient)
- [Reference](#reference)
- [Hyperclient Users](#hyperclient-users)
- [Contributing](#contributing)
- [License](#license)

# Usage

Expand Down
7 changes: 0 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@ if ENV['COVERAGE']
end
end

require 'yard'
YARD::Config.load_plugin('yard-tomdoc')
YARD::Rake::YardocTask.new do |t|
t.files = ['lib/**/*.rb']
t.options = %w[-r README.md]
end

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
Expand Down