core_ext 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +3 -0
- data/lib/core_ext/array/access.rb +76 -0
- data/lib/core_ext/array/conversions.rb +211 -0
- data/lib/core_ext/array/extract_options.rb +29 -0
- data/lib/core_ext/array/grouping.rb +116 -0
- data/lib/core_ext/array/inquiry.rb +17 -0
- data/lib/core_ext/array/prepend_and_append.rb +7 -0
- data/lib/core_ext/array/wrap.rb +46 -0
- data/lib/core_ext/array.rb +7 -0
- data/lib/core_ext/array_inquirer.rb +44 -0
- data/lib/core_ext/benchmark.rb +14 -0
- data/lib/core_ext/benchmarkable.rb +49 -0
- data/lib/core_ext/big_decimal/conversions.rb +14 -0
- data/lib/core_ext/big_decimal.rb +1 -0
- data/lib/core_ext/builder.rb +6 -0
- data/lib/core_ext/callbacks.rb +770 -0
- data/lib/core_ext/class/attribute.rb +128 -0
- data/lib/core_ext/class/attribute_accessors.rb +4 -0
- data/lib/core_ext/class/subclasses.rb +42 -0
- data/lib/core_ext/class.rb +2 -0
- data/lib/core_ext/concern.rb +142 -0
- data/lib/core_ext/configurable.rb +148 -0
- data/lib/core_ext/date/acts_like.rb +8 -0
- data/lib/core_ext/date/blank.rb +12 -0
- data/lib/core_ext/date/calculations.rb +143 -0
- data/lib/core_ext/date/conversions.rb +93 -0
- data/lib/core_ext/date/zones.rb +6 -0
- data/lib/core_ext/date.rb +5 -0
- data/lib/core_ext/date_and_time/calculations.rb +328 -0
- data/lib/core_ext/date_and_time/zones.rb +40 -0
- data/lib/core_ext/date_time/acts_like.rb +14 -0
- data/lib/core_ext/date_time/blank.rb +12 -0
- data/lib/core_ext/date_time/calculations.rb +177 -0
- data/lib/core_ext/date_time/conversions.rb +104 -0
- data/lib/core_ext/date_time/zones.rb +6 -0
- data/lib/core_ext/date_time.rb +5 -0
- data/lib/core_ext/deprecation/behaviors.rb +86 -0
- data/lib/core_ext/deprecation/instance_delegator.rb +24 -0
- data/lib/core_ext/deprecation/method_wrappers.rb +70 -0
- data/lib/core_ext/deprecation/proxy_wrappers.rb +149 -0
- data/lib/core_ext/deprecation/reporting.rb +105 -0
- data/lib/core_ext/deprecation.rb +43 -0
- data/lib/core_ext/digest/uuid.rb +51 -0
- data/lib/core_ext/duration.rb +157 -0
- data/lib/core_ext/enumerable.rb +106 -0
- data/lib/core_ext/file/atomic.rb +68 -0
- data/lib/core_ext/file.rb +1 -0
- data/lib/core_ext/hash/compact.rb +20 -0
- data/lib/core_ext/hash/conversions.rb +261 -0
- data/lib/core_ext/hash/deep_merge.rb +38 -0
- data/lib/core_ext/hash/except.rb +22 -0
- data/lib/core_ext/hash/indifferent_access.rb +23 -0
- data/lib/core_ext/hash/keys.rb +170 -0
- data/lib/core_ext/hash/reverse_merge.rb +22 -0
- data/lib/core_ext/hash/slice.rb +48 -0
- data/lib/core_ext/hash/transform_values.rb +29 -0
- data/lib/core_ext/hash.rb +9 -0
- data/lib/core_ext/hash_with_indifferent_access.rb +298 -0
- data/lib/core_ext/inflections.rb +70 -0
- data/lib/core_ext/inflector/inflections.rb +244 -0
- data/lib/core_ext/inflector/methods.rb +381 -0
- data/lib/core_ext/inflector/transliterate.rb +112 -0
- data/lib/core_ext/inflector.rb +7 -0
- data/lib/core_ext/integer/inflections.rb +29 -0
- data/lib/core_ext/integer/multiple.rb +10 -0
- data/lib/core_ext/integer/time.rb +29 -0
- data/lib/core_ext/integer.rb +3 -0
- data/lib/core_ext/json/decoding.rb +67 -0
- data/lib/core_ext/json/encoding.rb +127 -0
- data/lib/core_ext/json.rb +2 -0
- data/lib/core_ext/kernel/agnostics.rb +11 -0
- data/lib/core_ext/kernel/concern.rb +10 -0
- data/lib/core_ext/kernel/reporting.rb +41 -0
- data/lib/core_ext/kernel/singleton_class.rb +6 -0
- data/lib/core_ext/kernel.rb +4 -0
- data/lib/core_ext/load_error.rb +30 -0
- data/lib/core_ext/logger.rb +57 -0
- data/lib/core_ext/logger_silence.rb +24 -0
- data/lib/core_ext/marshal.rb +19 -0
- data/lib/core_ext/module/aliasing.rb +74 -0
- data/lib/core_ext/module/anonymous.rb +28 -0
- data/lib/core_ext/module/attr_internal.rb +36 -0
- data/lib/core_ext/module/attribute_accessors.rb +212 -0
- data/lib/core_ext/module/concerning.rb +135 -0
- data/lib/core_ext/module/delegation.rb +218 -0
- data/lib/core_ext/module/deprecation.rb +23 -0
- data/lib/core_ext/module/introspection.rb +62 -0
- data/lib/core_ext/module/method_transplanting.rb +3 -0
- data/lib/core_ext/module/qualified_const.rb +52 -0
- data/lib/core_ext/module/reachable.rb +8 -0
- data/lib/core_ext/module/remove_method.rb +35 -0
- data/lib/core_ext/module.rb +11 -0
- data/lib/core_ext/multibyte/chars.rb +231 -0
- data/lib/core_ext/multibyte/unicode.rb +388 -0
- data/lib/core_ext/multibyte.rb +21 -0
- data/lib/core_ext/name_error.rb +31 -0
- data/lib/core_ext/numeric/bytes.rb +64 -0
- data/lib/core_ext/numeric/conversions.rb +132 -0
- data/lib/core_ext/numeric/inquiry.rb +26 -0
- data/lib/core_ext/numeric/time.rb +74 -0
- data/lib/core_ext/numeric.rb +4 -0
- data/lib/core_ext/object/acts_like.rb +10 -0
- data/lib/core_ext/object/blank.rb +140 -0
- data/lib/core_ext/object/conversions.rb +4 -0
- data/lib/core_ext/object/deep_dup.rb +53 -0
- data/lib/core_ext/object/duplicable.rb +98 -0
- data/lib/core_ext/object/inclusion.rb +27 -0
- data/lib/core_ext/object/instance_variables.rb +28 -0
- data/lib/core_ext/object/json.rb +199 -0
- data/lib/core_ext/object/to_param.rb +1 -0
- data/lib/core_ext/object/to_query.rb +84 -0
- data/lib/core_ext/object/try.rb +146 -0
- data/lib/core_ext/object/with_options.rb +69 -0
- data/lib/core_ext/object.rb +14 -0
- data/lib/core_ext/option_merger.rb +25 -0
- data/lib/core_ext/ordered_hash.rb +48 -0
- data/lib/core_ext/ordered_options.rb +81 -0
- data/lib/core_ext/range/conversions.rb +34 -0
- data/lib/core_ext/range/each.rb +21 -0
- data/lib/core_ext/range/include_range.rb +23 -0
- data/lib/core_ext/range/overlaps.rb +8 -0
- data/lib/core_ext/range.rb +4 -0
- data/lib/core_ext/regexp.rb +5 -0
- data/lib/core_ext/rescuable.rb +119 -0
- data/lib/core_ext/securerandom.rb +23 -0
- data/lib/core_ext/security_utils.rb +20 -0
- data/lib/core_ext/string/access.rb +104 -0
- data/lib/core_ext/string/behavior.rb +6 -0
- data/lib/core_ext/string/conversions.rb +56 -0
- data/lib/core_ext/string/exclude.rb +11 -0
- data/lib/core_ext/string/filters.rb +102 -0
- data/lib/core_ext/string/indent.rb +43 -0
- data/lib/core_ext/string/inflections.rb +235 -0
- data/lib/core_ext/string/inquiry.rb +13 -0
- data/lib/core_ext/string/multibyte.rb +53 -0
- data/lib/core_ext/string/output_safety.rb +261 -0
- data/lib/core_ext/string/starts_ends_with.rb +4 -0
- data/lib/core_ext/string/strip.rb +23 -0
- data/lib/core_ext/string/zones.rb +14 -0
- data/lib/core_ext/string.rb +13 -0
- data/lib/core_ext/string_inquirer.rb +26 -0
- data/lib/core_ext/tagged_logging.rb +78 -0
- data/lib/core_ext/test_case.rb +88 -0
- data/lib/core_ext/testing/assertions.rb +99 -0
- data/lib/core_ext/testing/autorun.rb +12 -0
- data/lib/core_ext/testing/composite_filter.rb +54 -0
- data/lib/core_ext/testing/constant_lookup.rb +50 -0
- data/lib/core_ext/testing/declarative.rb +26 -0
- data/lib/core_ext/testing/deprecation.rb +36 -0
- data/lib/core_ext/testing/file_fixtures.rb +34 -0
- data/lib/core_ext/testing/isolation.rb +115 -0
- data/lib/core_ext/testing/method_call_assertions.rb +41 -0
- data/lib/core_ext/testing/setup_and_teardown.rb +50 -0
- data/lib/core_ext/testing/stream.rb +42 -0
- data/lib/core_ext/testing/tagged_logging.rb +25 -0
- data/lib/core_ext/testing/time_helpers.rb +134 -0
- data/lib/core_ext/time/acts_like.rb +8 -0
- data/lib/core_ext/time/calculations.rb +284 -0
- data/lib/core_ext/time/conversions.rb +66 -0
- data/lib/core_ext/time/zones.rb +95 -0
- data/lib/core_ext/time.rb +20 -0
- data/lib/core_ext/time_with_zone.rb +503 -0
- data/lib/core_ext/time_zone.rb +464 -0
- data/lib/core_ext/uri.rb +25 -0
- data/lib/core_ext/version.rb +3 -0
- data/lib/core_ext/xml_mini/jdom.rb +181 -0
- data/lib/core_ext/xml_mini/libxml.rb +79 -0
- data/lib/core_ext/xml_mini/libxmlsax.rb +85 -0
- data/lib/core_ext/xml_mini/nokogiri.rb +83 -0
- data/lib/core_ext/xml_mini/nokogirisax.rb +87 -0
- data/lib/core_ext/xml_mini/rexml.rb +130 -0
- data/lib/core_ext/xml_mini.rb +194 -0
- data/lib/core_ext.rb +3 -0
- metadata +310 -0
metadata
ADDED
@@ -0,0 +1,310 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: core_ext
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rodrigo Panachi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-11-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: builder
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: i18n
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.7'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: json
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.7'
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 1.7.7
|
51
|
+
type: :runtime
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - "~>"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '1.7'
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 1.7.7
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: tzinfo
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.1'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '1.1'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: minitest
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '5.1'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '5.1'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: method_source
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0.8'
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0.8'
|
103
|
+
description: ActiveSupport's core_ext without ActiveSupport dependency
|
104
|
+
email:
|
105
|
+
- rpanachi@gmail.com
|
106
|
+
executables: []
|
107
|
+
extensions: []
|
108
|
+
extra_rdoc_files: []
|
109
|
+
files:
|
110
|
+
- README.md
|
111
|
+
- lib/core_ext.rb
|
112
|
+
- lib/core_ext/array.rb
|
113
|
+
- lib/core_ext/array/access.rb
|
114
|
+
- lib/core_ext/array/conversions.rb
|
115
|
+
- lib/core_ext/array/extract_options.rb
|
116
|
+
- lib/core_ext/array/grouping.rb
|
117
|
+
- lib/core_ext/array/inquiry.rb
|
118
|
+
- lib/core_ext/array/prepend_and_append.rb
|
119
|
+
- lib/core_ext/array/wrap.rb
|
120
|
+
- lib/core_ext/array_inquirer.rb
|
121
|
+
- lib/core_ext/benchmark.rb
|
122
|
+
- lib/core_ext/benchmarkable.rb
|
123
|
+
- lib/core_ext/big_decimal.rb
|
124
|
+
- lib/core_ext/big_decimal/conversions.rb
|
125
|
+
- lib/core_ext/builder.rb
|
126
|
+
- lib/core_ext/callbacks.rb
|
127
|
+
- lib/core_ext/class.rb
|
128
|
+
- lib/core_ext/class/attribute.rb
|
129
|
+
- lib/core_ext/class/attribute_accessors.rb
|
130
|
+
- lib/core_ext/class/subclasses.rb
|
131
|
+
- lib/core_ext/concern.rb
|
132
|
+
- lib/core_ext/configurable.rb
|
133
|
+
- lib/core_ext/date.rb
|
134
|
+
- lib/core_ext/date/acts_like.rb
|
135
|
+
- lib/core_ext/date/blank.rb
|
136
|
+
- lib/core_ext/date/calculations.rb
|
137
|
+
- lib/core_ext/date/conversions.rb
|
138
|
+
- lib/core_ext/date/zones.rb
|
139
|
+
- lib/core_ext/date_and_time/calculations.rb
|
140
|
+
- lib/core_ext/date_and_time/zones.rb
|
141
|
+
- lib/core_ext/date_time.rb
|
142
|
+
- lib/core_ext/date_time/acts_like.rb
|
143
|
+
- lib/core_ext/date_time/blank.rb
|
144
|
+
- lib/core_ext/date_time/calculations.rb
|
145
|
+
- lib/core_ext/date_time/conversions.rb
|
146
|
+
- lib/core_ext/date_time/zones.rb
|
147
|
+
- lib/core_ext/deprecation.rb
|
148
|
+
- lib/core_ext/deprecation/behaviors.rb
|
149
|
+
- lib/core_ext/deprecation/instance_delegator.rb
|
150
|
+
- lib/core_ext/deprecation/method_wrappers.rb
|
151
|
+
- lib/core_ext/deprecation/proxy_wrappers.rb
|
152
|
+
- lib/core_ext/deprecation/reporting.rb
|
153
|
+
- lib/core_ext/digest/uuid.rb
|
154
|
+
- lib/core_ext/duration.rb
|
155
|
+
- lib/core_ext/enumerable.rb
|
156
|
+
- lib/core_ext/file.rb
|
157
|
+
- lib/core_ext/file/atomic.rb
|
158
|
+
- lib/core_ext/hash.rb
|
159
|
+
- lib/core_ext/hash/compact.rb
|
160
|
+
- lib/core_ext/hash/conversions.rb
|
161
|
+
- lib/core_ext/hash/deep_merge.rb
|
162
|
+
- lib/core_ext/hash/except.rb
|
163
|
+
- lib/core_ext/hash/indifferent_access.rb
|
164
|
+
- lib/core_ext/hash/keys.rb
|
165
|
+
- lib/core_ext/hash/reverse_merge.rb
|
166
|
+
- lib/core_ext/hash/slice.rb
|
167
|
+
- lib/core_ext/hash/transform_values.rb
|
168
|
+
- lib/core_ext/hash_with_indifferent_access.rb
|
169
|
+
- lib/core_ext/inflections.rb
|
170
|
+
- lib/core_ext/inflector.rb
|
171
|
+
- lib/core_ext/inflector/inflections.rb
|
172
|
+
- lib/core_ext/inflector/methods.rb
|
173
|
+
- lib/core_ext/inflector/transliterate.rb
|
174
|
+
- lib/core_ext/integer.rb
|
175
|
+
- lib/core_ext/integer/inflections.rb
|
176
|
+
- lib/core_ext/integer/multiple.rb
|
177
|
+
- lib/core_ext/integer/time.rb
|
178
|
+
- lib/core_ext/json.rb
|
179
|
+
- lib/core_ext/json/decoding.rb
|
180
|
+
- lib/core_ext/json/encoding.rb
|
181
|
+
- lib/core_ext/kernel.rb
|
182
|
+
- lib/core_ext/kernel/agnostics.rb
|
183
|
+
- lib/core_ext/kernel/concern.rb
|
184
|
+
- lib/core_ext/kernel/reporting.rb
|
185
|
+
- lib/core_ext/kernel/singleton_class.rb
|
186
|
+
- lib/core_ext/load_error.rb
|
187
|
+
- lib/core_ext/logger.rb
|
188
|
+
- lib/core_ext/logger_silence.rb
|
189
|
+
- lib/core_ext/marshal.rb
|
190
|
+
- lib/core_ext/module.rb
|
191
|
+
- lib/core_ext/module/aliasing.rb
|
192
|
+
- lib/core_ext/module/anonymous.rb
|
193
|
+
- lib/core_ext/module/attr_internal.rb
|
194
|
+
- lib/core_ext/module/attribute_accessors.rb
|
195
|
+
- lib/core_ext/module/concerning.rb
|
196
|
+
- lib/core_ext/module/delegation.rb
|
197
|
+
- lib/core_ext/module/deprecation.rb
|
198
|
+
- lib/core_ext/module/introspection.rb
|
199
|
+
- lib/core_ext/module/method_transplanting.rb
|
200
|
+
- lib/core_ext/module/qualified_const.rb
|
201
|
+
- lib/core_ext/module/reachable.rb
|
202
|
+
- lib/core_ext/module/remove_method.rb
|
203
|
+
- lib/core_ext/multibyte.rb
|
204
|
+
- lib/core_ext/multibyte/chars.rb
|
205
|
+
- lib/core_ext/multibyte/unicode.rb
|
206
|
+
- lib/core_ext/name_error.rb
|
207
|
+
- lib/core_ext/numeric.rb
|
208
|
+
- lib/core_ext/numeric/bytes.rb
|
209
|
+
- lib/core_ext/numeric/conversions.rb
|
210
|
+
- lib/core_ext/numeric/inquiry.rb
|
211
|
+
- lib/core_ext/numeric/time.rb
|
212
|
+
- lib/core_ext/object.rb
|
213
|
+
- lib/core_ext/object/acts_like.rb
|
214
|
+
- lib/core_ext/object/blank.rb
|
215
|
+
- lib/core_ext/object/conversions.rb
|
216
|
+
- lib/core_ext/object/deep_dup.rb
|
217
|
+
- lib/core_ext/object/duplicable.rb
|
218
|
+
- lib/core_ext/object/inclusion.rb
|
219
|
+
- lib/core_ext/object/instance_variables.rb
|
220
|
+
- lib/core_ext/object/json.rb
|
221
|
+
- lib/core_ext/object/to_param.rb
|
222
|
+
- lib/core_ext/object/to_query.rb
|
223
|
+
- lib/core_ext/object/try.rb
|
224
|
+
- lib/core_ext/object/with_options.rb
|
225
|
+
- lib/core_ext/option_merger.rb
|
226
|
+
- lib/core_ext/ordered_hash.rb
|
227
|
+
- lib/core_ext/ordered_options.rb
|
228
|
+
- lib/core_ext/range.rb
|
229
|
+
- lib/core_ext/range/conversions.rb
|
230
|
+
- lib/core_ext/range/each.rb
|
231
|
+
- lib/core_ext/range/include_range.rb
|
232
|
+
- lib/core_ext/range/overlaps.rb
|
233
|
+
- lib/core_ext/regexp.rb
|
234
|
+
- lib/core_ext/rescuable.rb
|
235
|
+
- lib/core_ext/securerandom.rb
|
236
|
+
- lib/core_ext/security_utils.rb
|
237
|
+
- lib/core_ext/string.rb
|
238
|
+
- lib/core_ext/string/access.rb
|
239
|
+
- lib/core_ext/string/behavior.rb
|
240
|
+
- lib/core_ext/string/conversions.rb
|
241
|
+
- lib/core_ext/string/exclude.rb
|
242
|
+
- lib/core_ext/string/filters.rb
|
243
|
+
- lib/core_ext/string/indent.rb
|
244
|
+
- lib/core_ext/string/inflections.rb
|
245
|
+
- lib/core_ext/string/inquiry.rb
|
246
|
+
- lib/core_ext/string/multibyte.rb
|
247
|
+
- lib/core_ext/string/output_safety.rb
|
248
|
+
- lib/core_ext/string/starts_ends_with.rb
|
249
|
+
- lib/core_ext/string/strip.rb
|
250
|
+
- lib/core_ext/string/zones.rb
|
251
|
+
- lib/core_ext/string_inquirer.rb
|
252
|
+
- lib/core_ext/tagged_logging.rb
|
253
|
+
- lib/core_ext/test_case.rb
|
254
|
+
- lib/core_ext/testing/assertions.rb
|
255
|
+
- lib/core_ext/testing/autorun.rb
|
256
|
+
- lib/core_ext/testing/composite_filter.rb
|
257
|
+
- lib/core_ext/testing/constant_lookup.rb
|
258
|
+
- lib/core_ext/testing/declarative.rb
|
259
|
+
- lib/core_ext/testing/deprecation.rb
|
260
|
+
- lib/core_ext/testing/file_fixtures.rb
|
261
|
+
- lib/core_ext/testing/isolation.rb
|
262
|
+
- lib/core_ext/testing/method_call_assertions.rb
|
263
|
+
- lib/core_ext/testing/setup_and_teardown.rb
|
264
|
+
- lib/core_ext/testing/stream.rb
|
265
|
+
- lib/core_ext/testing/tagged_logging.rb
|
266
|
+
- lib/core_ext/testing/time_helpers.rb
|
267
|
+
- lib/core_ext/time.rb
|
268
|
+
- lib/core_ext/time/acts_like.rb
|
269
|
+
- lib/core_ext/time/calculations.rb
|
270
|
+
- lib/core_ext/time/conversions.rb
|
271
|
+
- lib/core_ext/time/zones.rb
|
272
|
+
- lib/core_ext/time_with_zone.rb
|
273
|
+
- lib/core_ext/time_zone.rb
|
274
|
+
- lib/core_ext/uri.rb
|
275
|
+
- lib/core_ext/version.rb
|
276
|
+
- lib/core_ext/xml_mini.rb
|
277
|
+
- lib/core_ext/xml_mini/jdom.rb
|
278
|
+
- lib/core_ext/xml_mini/libxml.rb
|
279
|
+
- lib/core_ext/xml_mini/libxmlsax.rb
|
280
|
+
- lib/core_ext/xml_mini/nokogiri.rb
|
281
|
+
- lib/core_ext/xml_mini/nokogirisax.rb
|
282
|
+
- lib/core_ext/xml_mini/rexml.rb
|
283
|
+
homepage: http://github.com/rpanachi/core_ext
|
284
|
+
licenses:
|
285
|
+
- MIT
|
286
|
+
metadata: {}
|
287
|
+
post_install_message:
|
288
|
+
rdoc_options:
|
289
|
+
- "--encoding"
|
290
|
+
- UTF-8
|
291
|
+
require_paths:
|
292
|
+
- lib
|
293
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
294
|
+
requirements:
|
295
|
+
- - ">="
|
296
|
+
- !ruby/object:Gem::Version
|
297
|
+
version: 2.2.2
|
298
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
299
|
+
requirements:
|
300
|
+
- - ">="
|
301
|
+
- !ruby/object:Gem::Version
|
302
|
+
version: '0'
|
303
|
+
requirements: []
|
304
|
+
rubyforge_project:
|
305
|
+
rubygems_version: 2.2.2
|
306
|
+
signing_key:
|
307
|
+
specification_version: 4
|
308
|
+
summary: ActiveSupport's core_ext without ActiveSupport
|
309
|
+
test_files: []
|
310
|
+
has_rdoc:
|