Skip to content

Commit

Permalink
Merge pull request #292 from takahi-i/update-samples
Browse files Browse the repository at this point in the history
Update sample doc directories
  • Loading branch information
takahi-i committed Oct 15, 2014
2 parents 659c027 + 97f2b91 commit c216f16
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml

# results
target
target

# misc
*~
5 changes: 5 additions & 0 deletions redpen-cli/sample/sample-doc/ja/sampledoc-ja.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# 分散処理
最近利用されているソフトウェアの中には複数の計算機上で動作(分散)するものが多く存在し、このような分散ソフトウェアは複数の計算機で動作することで大量のデータを扱えたり、高負荷な状況に対処できたりします。
本稿では,複数の計算機(クラスタ)で動作する各サーバーを**インスタンス**と呼びまます。
たとえば検索エンジンやデータベースではインデックスを複数のインスタンスで分割して保持します。
このような場合、各インデクスの結果をマージしてクライアントプログラムに渡す機構が必要となります。
4 changes: 2 additions & 2 deletions redpen-cli/src/main/assembly/executable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</includes>
</fileSet>
<fileSet>
<directory>sample/doc</directory>
<outputDirectory>/doc</outputDirectory>
<directory>sample/sample-doc</directory>
<outputDirectory>/sample-doc</outputDirectory>
<includes>
<include>**/*</include>
</includes>
Expand Down
2 changes: 1 addition & 1 deletion redpen-cli/src/test/java/cc/redpen/MainTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class MainTest {
public void testMain() throws RedPenException {
String[] args = new String[]{
"-c", "redpen-cli/sample/conf/redpen-conf-en.xml",
"redpen-cli/sample/doc/txt/en/sampledoc-en.txt"
"redpen-cli/sample-doc/en/sampledoc-en.txt"
};

Main.main(args);
Expand Down

0 comments on commit c216f16

Please sign in to comment.