File tree 5 files changed +19
-27
lines changed
5 files changed +19
-27
lines changed Original file line number Diff line number Diff line change 1
1
### 0.8.7 (Next)
2
2
3
3
* [ #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 ) .
4
+ * [ #132 ] ( https://github.com/codegram/hyperclient/pull/132 ) : Swapped yard dependency for danger-toc - [ @dblock ] ( https://github.com/dblock ) .
4
5
* Your contribution here.
5
6
6
7
### 0.8.6 (August 27, 2017)
Original file line number Diff line number Diff line change 1
- # check for changes in CHANGELOG
2
1
changelog . check
2
+ toc . check
Original file line number Diff line number Diff line change @@ -18,12 +18,11 @@ group :development, :test do
18
18
gem 'rake'
19
19
gem 'rubocop' , '~> 0.50.0' , require : false
20
20
gem 'simplecov' , require : false
21
- gem 'yard' , '~> 0.8'
22
- gem 'yard-tomdoc'
23
21
end
24
22
25
23
group :test do
26
24
gem 'danger-changelog' , '~> 0.1'
25
+ gem 'danger-toc' , '~> 0.1'
27
26
gem 'futuroscope' , github : 'codegram/futuroscope'
28
27
gem 'minitest'
29
28
gem 'mocha'
Original file line number Diff line number Diff line change 8
8
9
9
Hyperclient is a Hypermedia API client written in Ruby. It fully supports [ JSON HAL] ( http://stateless.co/hal_specification.html ) .
10
10
11
- * [ Hyperclient] ( #hyperclient )
12
- * [ Usage] ( #usage )
13
- * [ API Client] ( #api-client )
14
- * [ Resources and Attributes] ( #resources-and-attributes )
15
- * [ Links and Embedded Resources] ( #links-and-embedded-resources )
16
- * [ Templated Links] ( #templated-links )
17
- * [ Curies] ( #curies )
18
- * [ Attributes] ( #attributes )
19
- * [ HTTP] ( #http )
20
- * [ Asynchronous requests] ( #asynchronous-requests )
21
- * [ Testing Using Hyperclient] ( #testing-using-hyperclient )
22
- * [ Reference] ( #reference )
23
- * [ Hyperclient Users] ( #hyperclient-users )
24
- * [ Contributing] ( #contributing )
25
- * [ License] ( #license )
26
-
27
- <sub ><sup >ToC created with [ gh-md-toc] ( https://github.com/ekalinin/github-markdown-toc ) </sup ></sub >
11
+ # Table of Contents
12
+
13
+ - [ Usage] ( #usage )
14
+ - [ API Client] ( #api-client )
15
+ - [ Resources and Attributes] ( #resources-and-attributes )
16
+ - [ Links and Embedded Resources] ( #links-and-embedded-resources )
17
+ - [ Templated Links] ( #templated-links )
18
+ - [ Curies] ( #curies )
19
+ - [ Attributes] ( #attributes )
20
+ - [ HTTP] ( #http )
21
+ - [ Asynchronous requests] ( #asynchronous-requests )
22
+ - [ Testing Using Hyperclient] ( #testing-using-hyperclient )
23
+ - [ Reference] ( #reference )
24
+ - [ Hyperclient Users] ( #hyperclient-users )
25
+ - [ Contributing] ( #contributing )
26
+ - [ License] ( #license )
28
27
29
28
# Usage
30
29
Original file line number Diff line number Diff line change @@ -13,13 +13,6 @@ if ENV['COVERAGE']
13
13
end
14
14
end
15
15
16
- require 'yard'
17
- YARD ::Config . load_plugin ( 'yard-tomdoc' )
18
- YARD ::Rake ::YardocTask . new do |t |
19
- t . files = [ 'lib/**/*.rb' ]
20
- t . options = %w[ -r README.md ]
21
- end
22
-
23
16
require 'rake/testtask'
24
17
25
18
Rake ::TestTask . new ( :test ) do |t |
You can’t perform that action at this time.
0 commit comments