flexus¶ ↑
This gem is a resurrection of inflecto
Inflecto is a standalone inflector ripped out from dm-core
The dm-core inflector originated from extlib
The extlib inflecto originated from active_support
Migration from inflecto
¶ ↑
Remove inflecto and add flexus to your Gemfile.
gem 'flexus', '1.0.0'
At your code, change all Inflecto
references to Flexus
and it should work out of the box for flexus version 1.0.0. Please report any issues.
Flexus
will try the best to respect semantic versioning as semver.org/ So, expect api breaking changes on major version releases.
We'll make pre release gems for 2.0.0 version. To experiment with that you should add this to your Gemfile.
gem 'flexus', '>= 2.0.0.beta'
Examples¶ ↑
require 'flexus' Flexus.underscore("CamelCase") # => "camel_case"
Credits¶ ↑
The rails, merb & datamapper team
The original gem was extracted and maintained by Markus Schirp (mbj) with help from indrekj.
Current maintainers: Andrii Savchenko Ptico and Abinoam P. Marques Jr. abinoam
Contributing¶ ↑
-
If you want your code merged into the mainline, please discuss the proposed changes with me before doing any work on it. This library is still in early development, and the direction it is going may not always be clear. Some features may not be appropriate yet, may need to be deferred until later when the foundation for them is laid, or may be more applicable in a plugin.
-
Fork the project.
-
Make your feature addition or bug fix.
-
Follow this style guide.
-
Add specs for it. This is important so I don't break it in a future version unintentionally. Tests must cover all branches within the code, and code must be fully covered.
-
Commit, do not mess with Rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
-
Run “rake ci”. This must pass and not show any regressions in the metrics for the code to be merged.
-
Send me a pull request. Bonus points for topic branches.
License¶ ↑
See LICENSE.txt for details