feedbackmine-tokenizer 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. data/README.txt +20 -0
  2. metadata +2 -1
data/README.txt ADDED
@@ -0,0 +1,20 @@
1
+ == Overview
2
+ A string tokenizer based on Ferret::Analysis::StandardAnalyzer. I made some improvements for better text analysis.
3
+
4
+ == Install
5
+
6
+ sudo gem sources -a http://gems.github.com (you only have to do this once)
7
+ sudo gem install feedbackmine-tokenizer
8
+
9
+ == Usage
10
+
11
+ require 'tokenizer'
12
+ t = Tokenizer.new '@feedbackmine, I LOVE this!!! :-)'
13
+ while (tok = t.next)
14
+ p tok
15
+ end
16
+
17
+ == Follow us on twitter
18
+
19
+ http://twitter.com/feedbackmine
20
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: feedbackmine-tokenizer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - FeedbackMine
@@ -40,6 +40,7 @@ files:
40
40
  - ext/scanner.in
41
41
  - Rakefile
42
42
  - Manifest.txt
43
+ - README.txt
43
44
  - test
44
45
  - test/test.rb
45
46
  has_rdoc: true