-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove monkey patch on Enumerable (#71)
* Remove monkey patch on Enumerable Instead of monkey-patching Enumerable to get some methods we want on to arrays, we can instantiate our own `BoxrCollection` object which behaves like an Array. This is preferrable to monkey-patching because we're not polluting the namespace of other objects in our app which might use the Enumerable module. * Bump version to 1.5.1
- Loading branch information
1 parent
1e41937
commit 39d6677
Showing
3 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Boxr | ||
VERSION = "1.5.0" | ||
VERSION = "1.5.1" | ||
end |