sentiment_lib 0.2 → 0.2.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.
- data/README.md +2 -2
- data/lib/sentiment_lib/analyzer.rb +1 -1
- data/lib/sentiment_lib/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -78,7 +78,7 @@ create a subclass of SentimentLib::Analysis::Strategy
|
|
78
78
|
|
79
79
|
You can then pass your strategy to new instances of SentimentLib::Analyzer:
|
80
80
|
|
81
|
-
|
81
|
+
analyzer = SentimentLib::Analyzer.new(:strategy => MyCustomStrategy.new)
|
82
82
|
|
83
83
|
|
84
84
|
## Contributing
|
@@ -87,4 +87,4 @@ You can then pass your strategy to new instances of SentimentLib::Analyzer:
|
|
87
87
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
88
88
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
89
89
|
4. Push to the branch (`git push origin my-new-feature`)
|
90
|
-
5. Create new Pull Request
|
90
|
+
5. Create new Pull Request
|