tidtools 0.0.9 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,10 @@
1
+ === 0.0.10 2010/06/21
2
+
3
+ * TIDDLYWIKI_PATHSの区切り文字を';'に変更
4
+ * 空白付きのパスを上手く処理出来ないため
5
+ * README.rdocを作成
6
+ * 基本的な使い方等を記述
7
+
1
8
  === 0.0.9 2010/06/20
2
9
 
3
10
  * デフォルトで検索する環境変数の名前を変更
@@ -1,48 +1,30 @@
1
1
  = tidtools
2
+ http://github.com/ongaeshi/tidtools
2
3
 
3
- * http://github.com/ongaeshi/tidtools
4
+ TiddlyWiki helper tools.
4
5
 
5
- == DESCRIPTION:
6
-
7
- FIX (describe your package)
8
-
9
- == FEATURES/PROBLEMS:
6
+ == INSTALL:
10
7
 
11
- * FIX (list of features or problems)
8
+ gem install tidtools
12
9
 
13
- == SYNOPSIS:
10
+ == DESCRIPTION:
11
+ <b>tidgrep</b>:: tidgrep
12
+ <b>twgrep</b>:: twgrep
13
+ <b>twmerge</b>:: twmerge
14
14
 
15
- FIX (code sample of usage)
15
+ <b>Tiddle</b>:: Tiddle
16
+ <b>Tweet</b>:: Tweet
16
17
 
17
- == REQUIREMENTS:
18
+ == SETUP:
18
19
 
19
- * FIX (list of requirements)
20
+ == FIRST_STEP:
20
21
 
21
- == INSTALL:
22
-
23
- * FIX (sudo gem install, anything else)
22
+ == LINKS:
23
+ {github}[http://github.com/ongaeshi/tidtools]:: github
24
+ {Rubygems}[http://rubygems.org/gems/tidtools]:: gem
25
+ {Twitter}[http://twitter.com/tidtools]:: Twitter
26
+ {blog}[http://d.hatena.ne.jp/tuto0621/]:: blog
24
27
 
25
28
  == LICENSE:
29
+ MIT License
26
30
 
27
- (The MIT License)
28
-
29
- Copyright (c) 2010 ongaeshi
30
-
31
- Permission is hereby granted, free of charge, to any person obtaining
32
- a copy of this software and associated documentation files (the
33
- 'Software'), to deal in the Software without restriction, including
34
- without limitation the rights to use, copy, modify, merge, publish,
35
- distribute, sublicense, and/or sell copies of the Software, and to
36
- permit persons to whom the Software is furnished to do so, subject to
37
- the following conditions:
38
-
39
- The above copyright notice and this permission notice shall be
40
- included in all copies or substantial portions of the Software.
41
-
42
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
43
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -9,7 +9,7 @@ require File.expand_path(File.dirname(__FILE__) + "/../lib/tidtools")
9
9
  require "tidgrep/cli"
10
10
 
11
11
  # バージョン番号
12
- Version = "0.0.9"
12
+ Version = "0.1.0"
13
13
 
14
14
  # コマンドの実行
15
15
  Tidgrep::CLI.execute(STDOUT, ARGV)
data/bin/twgrep CHANGED
@@ -9,7 +9,7 @@ require File.expand_path(File.dirname(__FILE__) + "/../lib/tidtools")
9
9
  require "twgrep/cli"
10
10
 
11
11
  # バージョン番号
12
- Version = "0.0.9"
12
+ Version = "0.1.0"
13
13
 
14
14
  # コマンドの実行
15
15
  Twgrep::CLI.execute(STDOUT, ARGV)
@@ -5,7 +5,7 @@ require 'optparse'
5
5
  module Tidgrep
6
6
  class CLI
7
7
  def self.execute(stdout, arguments=[])
8
- file_names = ENV['TIDDLYWIKI_PATHS'].split
8
+ file_names = ENV['TIDDLYWIKI_PATHS'].split(";")
9
9
  file_no = 0
10
10
  title = nil
11
11
  regexp_option = 0
@@ -2,5 +2,5 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Tidtools
5
- VERSION = '0.0.9'
5
+ VERSION = '0.1.0'
6
6
  end
@@ -5,7 +5,7 @@ require 'optparse'
5
5
  module Twgrep
6
6
  class CLI
7
7
  def self.execute(stdout, arguments=[])
8
- file_names = ENV['TIDDLYWIKI_PATHS'].split
8
+ file_names = ENV['TIDDLYWIKI_PATHS'].split(";")
9
9
  file_no = 0
10
10
  title = "Tweet"
11
11
  regexp_option = 0
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
+ - 1
7
8
  - 0
8
- - 9
9
- version: 0.0.9
9
+ version: 0.1.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - ongaeshi
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-06-20 00:00:00 +09:00
17
+ date: 2010-06-22 00:00:00 +09:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -59,7 +59,13 @@ dependencies:
59
59
  version: 2.6.0
60
60
  type: :development
61
61
  version_requirements: *id003
62
- description: FIX (describe your package)
62
+ description: |-
63
+ <b>tidgrep</b>:: tidgrep
64
+ <b>twgrep</b>:: twgrep
65
+ <b>twmerge</b>:: twmerge
66
+
67
+ <b>Tiddle</b>:: Tiddle
68
+ <b>Tweet</b>:: Tweet
63
69
  email:
64
70
  - ongaeshi@example.com
65
71
  executables:
@@ -127,7 +133,7 @@ rubyforge_project: tidtools
127
133
  rubygems_version: 1.3.6
128
134
  signing_key:
129
135
  specification_version: 3
130
- summary: FIX (describe your package)
136
+ summary: "<b>tidgrep</b>:: tidgrep <b>twgrep</b>:: twgrep <b>twmerge</b>:: twmerge <b>Tiddle</b>:: Tiddle <b>Tweet</b>:: Tweet"
131
137
  test_files:
132
138
  - test/test_helper.rb
133
139
  - test/test_tidgrep_cli.rb