File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 22
22
ruby :
23
23
- 2.6
24
24
- 2.7
25
- - 3.0
25
+ - " 3.0"
26
26
- 3.1
27
27
- ruby-head
28
28
- jruby
Original file line number Diff line number Diff line change
1
+ name : Build & deploy documentation
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ workflow_dispatch :
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ name : Update gh-pages with docs
11
+ steps :
12
+ - name : Clone repository
13
+ uses : actions/checkout@v2
14
+ - name : Set up Ruby
15
+ uses : ruby/setup-ruby@v1
16
+ with :
17
+ ruby-version : " 3.1"
18
+ - name : Install required gem dependencies
19
+ run : gem install yard --no-document
20
+ - name : Build YARD Ruby Documentation
21
+ run : yardoc
22
+ - name : Deploy
23
+ uses : peaceiris/actions-gh-pages@v3
24
+ with :
25
+ github_token : ${{ secrets.GITHUB_TOKEN }}
26
+ publish_dir : ./doc/yard
27
+ publish_branch : gh-pages
Original file line number Diff line number Diff line change @@ -6,12 +6,19 @@ Gem::Specification.new do |gem|
6
6
gem . date = File . mtime ( 'VERSION' ) . strftime ( '%Y-%m-%d' )
7
7
8
8
gem . name = 'rdf-ldp'
9
- gem . homepage = 'https://ruby-rdf. github.com/'
9
+ gem . homepage = 'https://github.com/ruby-rdf/rdf-ldp '
10
10
gem . license = 'Unlicense'
11
11
gem . summary = 'A suite of LDP software and middleware for RDF.rb.'
12
12
gem . description = 'Implements a Linked Data Platform domain model, ' \
13
13
'Rack middleware for server implementers, and a ' \
14
14
'simple Sinatra-based server for RDF.rb'
15
+ gem . metadata = {
16
+ "documentation_uri" => "https://ruby-rdf.github.io/rdf-ldp" ,
17
+ "bug_tracker_uri" => "https://github.com/ruby-rdf/rdf-ldp/issues" ,
18
+ "homepage_uri" => "https://github.com/ruby-rdf/rdf-ldp" ,
19
+ "mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/" ,
20
+ "source_code_uri" => "https://github.com/ruby-rdf/rdf-ldp" ,
21
+ }
15
22
16
23
gem . authors = [ 'Tom Johnson' ]
17
24
gem . email = 'public-rdf-ruby@w3.org'
You can’t perform that action at this time.
0 commit comments