Utility classes and Ruby extensions for non Rails projects
Utility classes and Ruby extensions for non Rails projects.
CoreExt is a reduced fork of Rails’s ActiveSupport gem, shipping only the core_ext part and its minimal dependencies. Some stufft like Autoload, Caching, Logging, Notifications and other Rails related classes are left behind. It was built with a few goals in mind:
If using bundler, first add ‘core_ext’ to your Gemfile:
gem "core_ext"
And run
bundle install
Otherwise simply
gem install core_ext
Loading all core extensions:
require "core_ext/all"
Cherry-picking only what you want:
require "core_ext/object"
require "core_ext/time"
See Rail’s ActiveSupport Core Extensions documentation.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Ruby on Rails is released under the MIT License.
CoreExt is released under the MIT License.