SimpleTokenParser
Given a string like the following:
"hello, world" they said
simple_token_parser will return ["hello, world", "they", "said"]
Installation
Add this line to your application's Gemfile:
gem 'simple_token_parser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install simple_token_parser
Usage
You might find it convenient to include this in String:
class String
include SimpleTokenParser
end
Contributing
- Fork it ( https://github.com/[my-github-username]/simple_token_parser/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request