Skip to content

Commit

Permalink
Merge pull request #13 from manorie/development
Browse files Browse the repository at this point in the history
Version update
  • Loading branch information
Mehmet Cetin authored Sep 9, 2016
2 parents 39d744c + cbf954e commit b386bc3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ language: ruby
cache: bundler
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.2.5
- 2.3.1
- ruby-head
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
# script: bundle exec rspec spec
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'

gem 'coveralls', '~> 0.7'
gem 'coveralls', '0.8.15'

gemspec
gemspec
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ You can combine all options. 'Only' and 'Exclude' Options support multiple optio
Public interface of Textoken presents two methods, **tokens** & **words**

```ruby
Textoken('Alfa.').tokens
Textoken('Alfa.').tokens
# => ["Alfa", "."]
# => splits punctuations by default whereas,

Textoken('Alfa.').words
Textoken('Alfa.').words
# => ["Alfa."]
# => does not split punctuations.
```
Expand Down Expand Up @@ -104,10 +104,10 @@ Or install it yourself as:
This library aims to support and is tested against the following Ruby
implementations:

* Ruby 1.9.3
* Ruby 2.0.0
* Ruby 2.1
* Ruby 2.2
* Ruby 2.2.5
* Ruby 2.3.1
* [JRuby](http://jruby.org/)

If something doesn't work on one of these versions, it's a bug.
Expand Down
2 changes: 1 addition & 1 deletion lib/textoken/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Textoken
VERSION = "1.1.1"
VERSION = "1.1.2"
end
4 changes: 2 additions & 2 deletions textoken.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ Gem::Specification.new do |s|

s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]

s.add_development_dependency 'rspec', '~> 3.3.0', '>= 3.3.0'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '3.5.0'
s.add_development_dependency 'rake', '11.2.2'
end

0 comments on commit b386bc3

Please sign in to comment.