Drop 1.9.2 and bump version

This commit is contained in:
Andrey Savchenko 2014-11-27 15:15:46 +02:00
parent b257665938
commit 0bdb4e792d
3 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,6 @@ before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.3

View File

@ -2,7 +2,7 @@
Gem::Specification.new do |gem|
gem.name = 'inflecto'
gem.version = '0.0.2'
gem.version = '0.1.0'
gem.authors = ['The rails, merb & datamapper team', 'Markus Schirp']
gem.email = ['mbj@seonic.net']
gem.description = 'Inflector for strings'
@ -14,4 +14,6 @@ Gem::Specification.new do |gem|
gem.files = `git ls-files`.split($/)
gem.test_files = `git ls-files spec/{unit,integration}`.split($/)
gem.extra_rdoc_files = %w[LICENSE README.md TODO]
gem.required_ruby_version = '>= 1.9.3'
end

View File

@ -16,7 +16,7 @@ module Inflecto
#
# @example
# Inflecto.camelize("data_mapper") # => "DataMapper"
# Inflecto.camelize("data_mapper/errors") # => "DataMApper::Errors"
# Inflecto.camelize("data_mapper/errors") # => "DataMapper::Errors"
#
# @return [String]
#