-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from sonota88/devel_v0.1.0
v0.1.0
- Loading branch information
Showing
7 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
= anbt-sql-formatter | ||
|
||
(C) 2010 sonota <[email protected]> | ||
(C) 2010-2018 sonota88 <[email protected]> | ||
|
||
|
||
== 概要 | ||
|
@@ -95,7 +95,7 @@ sonota:: Ruby へ移植 | |
|
||
== テスト | ||
|
||
$ ruby setup.rb test | ||
$ ./test.sh | ||
|
||
|
||
== その他 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
= anbt-sql-formatter | ||
|
||
(C) 2010 sonota ([email protected]) | ||
(C) 2010-2018 sonota88 ([email protected]) | ||
|
||
|
||
== Description | ||
|
@@ -55,4 +55,4 @@ Following are Authors of BlancoSqlFormatter(original Java version). | |
|
||
== Test | ||
|
||
$ ruby setup.rb test | ||
$ ./test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module Anbt | ||
module Sql | ||
module Formatter | ||
VERSION = "0.0.7" | ||
VERSION = "0.1.0" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
|
||
( | ||
cd test | ||
for file in $(ls test_*.rb); do | ||
ruby $file | ||
done | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters