@@ -51,6 +51,9 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
51
51
* ` #delete_nils ` - Deletes all keys where the value is nil
52
52
* core_ext/hash/nested.rb (see [ Shared] ( #shared ) )
53
53
* ` #delete_blank_paths ` - Deletes all paths where the value is blank
54
+ * core_ext/hash/sorting.rb (see [ Shared] ( #shared ) )
55
+ * ` #sort! ` - Replace the original with the sorted hash
56
+ * ` #sort_by! ` - Replace the original with the sorted_by hash
54
57
55
58
#### Module
56
59
@@ -74,8 +77,15 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
74
77
* core_ext/module/namespace.rb
75
78
* ` #in_namespace? ` - Returns whether or not the object is in the given namespace
76
79
80
+ #### Range
81
+
82
+ * core_ext/range/step_value.rb
83
+ * ` #step_value ` - Step through a range at a given increment
84
+
77
85
#### String
78
86
87
+ * core_ext/string/decimal_suffix.rb
88
+ * ` #decimal_si_to_f ` - Returns a Float based on the number and suffix given
79
89
* core_ext/string/formats.rb
80
90
* ` #email? ` - Returns whether or not the String is an= valid email
81
91
* ` #domain_name? ` - Returns whether or not the String is a valid domain name
@@ -89,6 +99,11 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
89
99
* core_ext/string/iec60027_2.rb
90
100
* ` #iec_60027_2_to_i ` - Convert strings with an IEC60027-2 suffix to an integer
91
101
102
+ #### Symbol
103
+
104
+ * core_ext/symbol/to_i.rb
105
+ * ` #to_i ` - Returns the integer value of a symbol
106
+
92
107
#### Shared
93
108
94
109
* core_ext/shared/nested.rb
0 commit comments