File tree 3 files changed +42
-1
lines changed
3 files changed +42
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,24 @@ docker run --rm \
15
15
mv spec/netmaster.raml ./spec/contiv/libraries/netmaster.raml
16
16
17
17
# run the raml2html tool to generate docs under spec/docs
18
- cd spec
18
+ pushd spec
19
19
make docs
20
20
mkdir -p docs
21
21
mv contiv.html docs/
22
+ popd
23
+
24
+ # RAML doesn't currently support trailing slashes so we add them manually here
25
+
26
+ # altering the HTML requires a gem called Nokogiri
27
+ # create a tiny docker image so we don't have to reinstall Nokogiri every time
28
+ IMAGE_NAME=" raml_trailing_slashes"
29
+
30
+ if [[ " $( docker images -q $IMAGE_NAME :latest 2> /dev/null) " == " " ]]; then
31
+ docker build -t $IMAGE_NAME -f spec/Dockerfile.raml_trailing_slashes .
32
+ fi
33
+
34
+ docker run --rm \
35
+ -u $( id -u) :$( id -g) \
36
+ -v $( pwd) :/files \
37
+ -w /files/spec \
38
+ $IMAGE_NAME /usr/local/bin/ruby raml_trailing_slashes.rb
Original file line number Diff line number Diff line change
1
+ FROM ruby:2.4.0-slim
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive
4
+
5
+ RUN apt-get update && apt-get -y install build-essential && gem install nokogiri
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env ruby
2
+ # encoding: utf-8
3
+
4
+ require "nokogiri"
5
+
6
+ FILENAME = "docs/contiv.html"
7
+
8
+ doc = Nokogiri ::HTML ( File . read ( FILENAME ) )
9
+
10
+ node_groups = [
11
+ doc . css ( ".panel-title a" ) . select { |n | n . text . start_with? ( "/" ) } ,
12
+ doc . css ( ".modal-title" ) ,
13
+ ]
14
+
15
+ node_groups . flatten . each do |node |
16
+ node . children . last . content = node . children . last . text + "/"
17
+ end
18
+
19
+ File . write ( FILENAME , doc . to_html )
You can’t perform that action at this time.
0 commit comments