Skip to content

Commit

Permalink
Merge pull request #89 from takemikami/prepare-0.1.2
Browse files Browse the repository at this point in the history
prepare-0.1.2
  • Loading branch information
takemikami authored Jan 25, 2020
2 parents 3a4315e + 6be56d7 commit f896fc7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ rdflint has following functions.
Download from jitpack.

```
$ wget https://jitpack.io/com/github/imas/rdflint/0.1.1/rdflint-0.1.1.jar
$ wget https://jitpack.io/com/github/imas/rdflint/0.1.2/rdflint-0.1.2.jar
```

Run for apply to your RDF files.

```
$ java -jar rdflint-0.1.1.jar -targetdir example/dataset
$ java -jar rdflint-0.1.2.jar -targetdir example/dataset
```

``-targetdir`` parameter is location of target RDF files.
Expand All @@ -58,7 +58,7 @@ jobs:
- run:
name: run rdflint
command: |
RDFLINT_VERSION=0.1.1
RDFLINT_VERSION=0.1.2
wget https://jitpack.io/com/github/imas/rdflint/$RDFLINT_VERSION/rdflint-$RDFLINT_VERSION.jar
java -jar rdflint-$RDFLINT_VERSION.jar
```
Expand All @@ -68,7 +68,7 @@ jobs:
When create a configuration file of rdflint, rdflint provide additional checks. Run with ``-config`` parameter like following.

```
$ java -jar rdflint-0.1.1.jar -targetdir example/dataset -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.2.jar -targetdir example/dataset -config example/dataset/rdflint-config.yml
```

``-config`` parameter is location of rdflint configuration file.
Expand Down Expand Up @@ -115,7 +115,7 @@ And run SPARQL query of ``rules-query`` to target file of ``rules-target``. Groo
Run with ``-origindir`` parameter like following.

```
$ java -jar rdflint-0.1.1.jar -targetdir example/dataset -origindir example/dataset_origin -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.2.jar -targetdir example/dataset -origindir example/dataset_origin -config example/dataset/rdflint-config.yml
```

And check subject and triple, removed from origindir. Its problem report as INFO level.
Expand Down Expand Up @@ -185,7 +185,7 @@ xmlns:imas="https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#"
Run interactive mode with ``-i`` parameter.

```
$ java -jar rdflint-0.1.1.jar -i -targetdir example/dataset -config example/dataset/rdflint-config.yml
$ java -jar rdflint-0.1.2.jar -i -targetdir example/dataset -config example/dataset/rdflint-config.yml
```

And try to query. Double return to perform query, type ``:exit`` to exit interactive mode.
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "rdflint: RDF Linter"
description: "RDFデータのチェックツール「rdflint」の利用ガイド"
lang: ja-JP
google_analytics: UA-150373815-1
RDFLINT_VERSION: 0.1.1
RDFLINT_VERSION: 0.1.2
cookie_consent: |
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js" data-cfasync="false"></script>
<script>
Expand Down
4 changes: 2 additions & 2 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ generation:

デグレード検証時の比較対象のディレクトリのパスを指定します。

## baseUri: 対象リソースURIのベース階層
## baseUri: 対象データセットURIのベース階層

対象リソースURIのベース階層を指定します
対象データセットURIのベース階層を指定します

## rules: カスタムクエリ検証のルール指定

Expand Down
9 changes: 8 additions & 1 deletion docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,17 @@ rdflintのセットアップ手順を説明します。
2. Homebrewが使えるようになったら、以下のコマンドでrdflintをインストールします。

```
$ brew tap takemikami/takemikami
$ brew tap imas/rdflint
$ brew install rdflint
```

※0.1.1以前に ``takemikami/takemikami`` からインストールしていた方は、以下の手順でHomebrewの参照先を変更してください。

```
$ brew untap takemikami/takemikami
$ brew tap imas/rdflint
```

3. 以下のコマンドでrdflintを実行し、エラーが表示されなければ、準備完了です。

```
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rdflintの基本的な実行手順を説明します。ここでは、rdfファ
baseUri: https://example.com/targetrdf/
```

baseUriには、対象リソースURIのベース階層を指定します
baseUriには、対象データセットURIのベース階層を指定します

3. rdflintを実行します。
ここでは、``target.rdf````rdflint-config.yml``、及び``rdflint-{{site.RDFLINT_VERSION}}.jar``を置いたディレクトリに移動して、次のコマンドを実行します。
Expand Down Expand Up @@ -183,7 +183,7 @@ rdflintが出力する警告について、場合によっては修正が不要

rdflintの実行時には以下のコマンドラインオプションを指定することが出来ます。

- baseuri: 対象リソースURIのベース階層
- baseuri: 対象データセットURIのベース階層
- targetdir: 対象ディレクトリのパス
指定しない場合は、カレントディレクトリを対象とする
- origindir: デグレード検証時の比較対象ディレクトリのパス
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/imas/rdflint/RdfLint.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

public class RdfLint {

public static final String VERSION = "0.1.1";
public static final String VERSION = "0.1.2";
private static final Logger logger = Logger.getLogger(RdfLint.class.getName());

/**
Expand Down

0 comments on commit f896fc7

Please sign in to comment.