activesupport 3.1.1 → 3.1.2.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activesupport might be problematic. Click here for more details.

@@ -0,0 +1,20 @@
1
+ Copyright (c) 2005-2011 David Heinemeier Hansson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -230,7 +230,7 @@ module ActiveSupport
230
230
  # <tt>:race_condition_ttl</tt> does not play any role.
231
231
  #
232
232
  # # Set all values to expire after one minute.
233
- # cache = ActiveSupport::Cache::MemoryCache.new(:expires_in => 1.minute)
233
+ # cache = ActiveSupport::Cache::MemoryStore.new(:expires_in => 1.minute)
234
234
  #
235
235
  # cache.write("foo", "original value")
236
236
  # val_1 = nil
@@ -39,10 +39,10 @@ class Array
39
39
  #
40
40
  # Blog.all.to_formatted_s # => "First PostSecond PostThird Post"
41
41
  #
42
- # Adding in the <tt>:db</tt> argument as the format yields a prettier
43
- # output:
42
+ # Adding in the <tt>:db</tt> argument as the format yields a comma separated
43
+ # id list:
44
44
  #
45
- # Blog.all.to_formatted_s(:db) # => "First Post,Second Post,Third Post"
45
+ # Blog.all.to_formatted_s(:db) # => "1,2,3"
46
46
  def to_formatted_s(format = :default)
47
47
  case format
48
48
  when :db
@@ -2,8 +2,8 @@ module ActiveSupport
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 1
5
- TINY = 1
6
- PRE = nil
5
+ TINY = 2
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
5
- prerelease: false
4
+ hash: 15424119
5
+ prerelease: 6
6
6
  segments:
7
7
  - 3
8
8
  - 1
9
+ - 2
10
+ - rc
9
11
  - 1
10
- version: 3.1.1
12
+ version: 3.1.2.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - David Heinemeier Hansson
@@ -15,13 +17,13 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2011-10-07 00:00:00 -02:00
19
- default_executable:
20
+ date: 2011-11-14 00:00:00 Z
20
21
  dependencies:
21
22
  - !ruby/object:Gem::Dependency
22
23
  name: multi_json
24
+ type: :runtime
23
25
  prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
26
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
27
  none: false
26
28
  requirements:
27
29
  - - ~>
@@ -31,8 +33,7 @@ dependencies:
31
33
  - 1
32
34
  - 0
33
35
  version: "1.0"
34
- type: :runtime
35
- version_requirements: *id001
36
+ requirement: *id001
36
37
  description: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.
37
38
  email: david@loudthinking.com
38
39
  executables: []
@@ -42,220 +43,220 @@ extensions: []
42
43
  extra_rdoc_files: []
43
44
 
44
45
  files:
45
- - CHANGELOG
46
+ - CHANGELOG.md
47
+ - MIT-LICENSE
46
48
  - README.rdoc
47
- - lib/active_support/all.rb
48
- - lib/active_support/backtrace_cleaner.rb
49
- - lib/active_support/base64.rb
50
- - lib/active_support/basic_object.rb
51
- - lib/active_support/benchmarkable.rb
52
- - lib/active_support/buffered_logger.rb
53
- - lib/active_support/builder.rb
54
- - lib/active_support/cache/compressed_mem_cache_store.rb
55
- - lib/active_support/cache/file_store.rb
49
+ - lib/active_support/inflector/transliterate.rb
50
+ - lib/active_support/inflector/inflections.rb
51
+ - lib/active_support/inflector/methods.rb
52
+ - lib/active_support/values/time_zone.rb
53
+ - lib/active_support/values/unicode_tables.dat
54
+ - lib/active_support/locale/en.yml
55
+ - lib/active_support/cache.rb
56
+ - lib/active_support/time_with_zone.rb
56
57
  - lib/active_support/cache/mem_cache_store.rb
57
58
  - lib/active_support/cache/memory_store.rb
58
- - lib/active_support/cache/strategy/local_cache.rb
59
59
  - lib/active_support/cache/synchronized_memory_store.rb
60
- - lib/active_support/cache.rb
61
- - lib/active_support/callbacks.rb
60
+ - lib/active_support/cache/file_store.rb
61
+ - lib/active_support/cache/strategy/local_cache.rb
62
+ - lib/active_support/cache/compressed_mem_cache_store.rb
63
+ - lib/active_support/time/autoload.rb
64
+ - lib/active_support/builder.rb
65
+ - lib/active_support/all.rb
62
66
  - lib/active_support/concern.rb
67
+ - lib/active_support/xml_mini/nokogiri.rb
68
+ - lib/active_support/xml_mini/rexml.rb
69
+ - lib/active_support/xml_mini/libxml.rb
70
+ - lib/active_support/xml_mini/jdom.rb
71
+ - lib/active_support/xml_mini/libxmlsax.rb
72
+ - lib/active_support/xml_mini/nokogirisax.rb
73
+ - lib/active_support/string_inquirer.rb
74
+ - lib/active_support/option_merger.rb
75
+ - lib/active_support/memoizable.rb
76
+ - lib/active_support/descendants_tracker.rb
77
+ - lib/active_support/message_encryptor.rb
78
+ - lib/active_support/benchmarkable.rb
79
+ - lib/active_support/dependencies.rb
80
+ - lib/active_support/json/decoding.rb
81
+ - lib/active_support/json/encoding.rb
82
+ - lib/active_support/json/variable.rb
83
+ - lib/active_support/test_case.rb
84
+ - lib/active_support/inflections.rb
85
+ - lib/active_support/duration.rb
86
+ - lib/active_support/deprecation.rb
87
+ - lib/active_support/dependencies/autoload.rb
88
+ - lib/active_support/deprecation/reporting.rb
89
+ - lib/active_support/deprecation/proxy_wrappers.rb
90
+ - lib/active_support/deprecation/behaviors.rb
91
+ - lib/active_support/deprecation/method_wrappers.rb
92
+ - lib/active_support/base64.rb
93
+ - lib/active_support/ordered_hash.rb
94
+ - lib/active_support/json.rb
95
+ - lib/active_support/gzip.rb
96
+ - lib/active_support/notifications/fanout.rb
97
+ - lib/active_support/notifications/instrumenter.rb
98
+ - lib/active_support/inflector.rb
99
+ - lib/active_support/whiny_nil.rb
100
+ - lib/active_support/file_update_checker.rb
101
+ - lib/active_support/backtrace_cleaner.rb
102
+ - lib/active_support/time.rb
103
+ - lib/active_support/log_subscriber.rb
104
+ - lib/active_support/multibyte/chars.rb
105
+ - lib/active_support/multibyte/exceptions.rb
106
+ - lib/active_support/multibyte/unicode.rb
107
+ - lib/active_support/multibyte/utils.rb
108
+ - lib/active_support/rescuable.rb
109
+ - lib/active_support/version.rb
110
+ - lib/active_support/multibyte.rb
63
111
  - lib/active_support/configurable.rb
112
+ - lib/active_support/xml_mini.rb
113
+ - lib/active_support/ordered_options.rb
114
+ - lib/active_support/railtie.rb
115
+ - lib/active_support/i18n_railtie.rb
116
+ - lib/active_support/log_subscriber/test_helper.rb
117
+ - lib/active_support/lazy_load_hooks.rb
118
+ - lib/active_support/buffered_logger.rb
119
+ - lib/active_support/core_ext/float/rounding.rb
120
+ - lib/active_support/core_ext/date/zones.rb
121
+ - lib/active_support/core_ext/date/freeze.rb
122
+ - lib/active_support/core_ext/date/acts_like.rb
123
+ - lib/active_support/core_ext/date/conversions.rb
124
+ - lib/active_support/core_ext/date/calculations.rb
125
+ - lib/active_support/core_ext/class.rb
126
+ - lib/active_support/core_ext/kernel/requires.rb
127
+ - lib/active_support/core_ext/kernel/reporting.rb
128
+ - lib/active_support/core_ext/kernel/agnostics.rb
129
+ - lib/active_support/core_ext/kernel/singleton_class.rb
130
+ - lib/active_support/core_ext/kernel/debugger.rb
131
+ - lib/active_support/core_ext/numeric.rb
132
+ - lib/active_support/core_ext/numeric/time.rb
133
+ - lib/active_support/core_ext/numeric/bytes.rb
134
+ - lib/active_support/core_ext/time/zones.rb
135
+ - lib/active_support/core_ext/time/acts_like.rb
136
+ - lib/active_support/core_ext/time/conversions.rb
137
+ - lib/active_support/core_ext/time/marshal.rb
138
+ - lib/active_support/core_ext/time/calculations.rb
139
+ - lib/active_support/core_ext/time/publicize_conversion_methods.rb
140
+ - lib/active_support/core_ext/module.rb
141
+ - lib/active_support/core_ext/load_error.rb
142
+ - lib/active_support/core_ext/rexml.rb
143
+ - lib/active_support/core_ext/big_decimal.rb
144
+ - lib/active_support/core_ext/file/path.rb
145
+ - lib/active_support/core_ext/file/atomic.rb
146
+ - lib/active_support/core_ext/array.rb
147
+ - lib/active_support/core_ext/array/random_access.rb
148
+ - lib/active_support/core_ext/array/uniq_by.rb
64
149
  - lib/active_support/core_ext/array/access.rb
65
150
  - lib/active_support/core_ext/array/conversions.rb
151
+ - lib/active_support/core_ext/array/wrap.rb
66
152
  - lib/active_support/core_ext/array/extract_options.rb
67
153
  - lib/active_support/core_ext/array/grouping.rb
68
- - lib/active_support/core_ext/array/random_access.rb
69
- - lib/active_support/core_ext/array/uniq_by.rb
70
- - lib/active_support/core_ext/array/wrap.rb
71
- - lib/active_support/core_ext/array.rb
72
- - lib/active_support/core_ext/benchmark.rb
73
- - lib/active_support/core_ext/big_decimal/conversions.rb
74
- - lib/active_support/core_ext/big_decimal.rb
75
- - lib/active_support/core_ext/class/attribute.rb
76
- - lib/active_support/core_ext/class/attribute_accessors.rb
77
- - lib/active_support/core_ext/class/delegating_attributes.rb
78
- - lib/active_support/core_ext/class/inheritable_attributes.rb
79
- - lib/active_support/core_ext/class/subclasses.rb
80
- - lib/active_support/core_ext/class.rb
81
- - lib/active_support/core_ext/date/acts_like.rb
82
- - lib/active_support/core_ext/date/calculations.rb
83
- - lib/active_support/core_ext/date/conversions.rb
84
- - lib/active_support/core_ext/date/freeze.rb
85
- - lib/active_support/core_ext/date/zones.rb
86
- - lib/active_support/core_ext/date_time/acts_like.rb
87
- - lib/active_support/core_ext/date_time/calculations.rb
88
- - lib/active_support/core_ext/date_time/conversions.rb
89
- - lib/active_support/core_ext/date_time/zones.rb
90
- - lib/active_support/core_ext/enumerable.rb
91
- - lib/active_support/core_ext/exception.rb
92
- - lib/active_support/core_ext/file/atomic.rb
93
- - lib/active_support/core_ext/file/path.rb
94
- - lib/active_support/core_ext/file.rb
95
- - lib/active_support/core_ext/float/rounding.rb
96
- - lib/active_support/core_ext/float.rb
97
- - lib/active_support/core_ext/hash/conversions.rb
98
- - lib/active_support/core_ext/hash/deep_dup.rb
99
- - lib/active_support/core_ext/hash/deep_merge.rb
100
- - lib/active_support/core_ext/hash/diff.rb
101
- - lib/active_support/core_ext/hash/except.rb
102
- - lib/active_support/core_ext/hash/indifferent_access.rb
103
- - lib/active_support/core_ext/hash/keys.rb
104
- - lib/active_support/core_ext/hash/reverse_merge.rb
105
- - lib/active_support/core_ext/hash/slice.rb
106
- - lib/active_support/core_ext/hash.rb
154
+ - lib/active_support/core_ext/uri.rb
107
155
  - lib/active_support/core_ext/integer/inflections.rb
108
- - lib/active_support/core_ext/integer/multiple.rb
109
156
  - lib/active_support/core_ext/integer/time.rb
110
- - lib/active_support/core_ext/integer.rb
111
- - lib/active_support/core_ext/kernel/agnostics.rb
112
- - lib/active_support/core_ext/kernel/debugger.rb
113
- - lib/active_support/core_ext/kernel/reporting.rb
114
- - lib/active_support/core_ext/kernel/requires.rb
115
- - lib/active_support/core_ext/kernel/singleton_class.rb
116
- - lib/active_support/core_ext/kernel.rb
117
- - lib/active_support/core_ext/load_error.rb
157
+ - lib/active_support/core_ext/integer/multiple.rb
118
158
  - lib/active_support/core_ext/logger.rb
119
- - lib/active_support/core_ext/module/aliasing.rb
120
- - lib/active_support/core_ext/module/anonymous.rb
121
- - lib/active_support/core_ext/module/attr_accessor_with_default.rb
122
- - lib/active_support/core_ext/module/attr_internal.rb
159
+ - lib/active_support/core_ext/benchmark.rb
160
+ - lib/active_support/core_ext/proc.rb
161
+ - lib/active_support/core_ext/range.rb
123
162
  - lib/active_support/core_ext/module/attribute_accessors.rb
163
+ - lib/active_support/core_ext/module/attr_accessor_with_default.rb
124
164
  - lib/active_support/core_ext/module/delegation.rb
125
165
  - lib/active_support/core_ext/module/deprecation.rb
126
- - lib/active_support/core_ext/module/introspection.rb
127
166
  - lib/active_support/core_ext/module/method_names.rb
128
- - lib/active_support/core_ext/module/reachable.rb
129
- - lib/active_support/core_ext/module/remove_method.rb
130
167
  - lib/active_support/core_ext/module/synchronization.rb
131
- - lib/active_support/core_ext/module.rb
132
- - lib/active_support/core_ext/name_error.rb
133
- - lib/active_support/core_ext/numeric/bytes.rb
134
- - lib/active_support/core_ext/numeric/time.rb
135
- - lib/active_support/core_ext/numeric.rb
136
- - lib/active_support/core_ext/object/acts_like.rb
137
- - lib/active_support/core_ext/object/blank.rb
138
- - lib/active_support/core_ext/object/conversions.rb
139
- - lib/active_support/core_ext/object/duplicable.rb
140
- - lib/active_support/core_ext/object/inclusion.rb
141
- - lib/active_support/core_ext/object/instance_variables.rb
142
- - lib/active_support/core_ext/object/to_json.rb
143
- - lib/active_support/core_ext/object/to_param.rb
144
- - lib/active_support/core_ext/object/to_query.rb
145
- - lib/active_support/core_ext/object/try.rb
146
- - lib/active_support/core_ext/object/with_options.rb
147
- - lib/active_support/core_ext/object.rb
148
- - lib/active_support/core_ext/proc.rb
149
- - lib/active_support/core_ext/process/daemon.rb
150
- - lib/active_support/core_ext/process.rb
151
- - lib/active_support/core_ext/range/blockless_step.rb
152
- - lib/active_support/core_ext/range/conversions.rb
153
- - lib/active_support/core_ext/range/cover.rb
154
- - lib/active_support/core_ext/range/include_range.rb
155
- - lib/active_support/core_ext/range/overlaps.rb
156
- - lib/active_support/core_ext/range.rb
157
- - lib/active_support/core_ext/regexp.rb
158
- - lib/active_support/core_ext/rexml.rb
159
- - lib/active_support/core_ext/string/access.rb
168
+ - lib/active_support/core_ext/module/remove_method.rb
169
+ - lib/active_support/core_ext/module/aliasing.rb
170
+ - lib/active_support/core_ext/module/reachable.rb
171
+ - lib/active_support/core_ext/module/anonymous.rb
172
+ - lib/active_support/core_ext/module/introspection.rb
173
+ - lib/active_support/core_ext/module/attr_internal.rb
160
174
  - lib/active_support/core_ext/string/behavior.rb
161
- - lib/active_support/core_ext/string/conversions.rb
162
- - lib/active_support/core_ext/string/encoding.rb
163
- - lib/active_support/core_ext/string/exclude.rb
164
- - lib/active_support/core_ext/string/filters.rb
175
+ - lib/active_support/core_ext/string/access.rb
165
176
  - lib/active_support/core_ext/string/inflections.rb
166
- - lib/active_support/core_ext/string/inquiry.rb
167
- - lib/active_support/core_ext/string/interpolation.rb
177
+ - lib/active_support/core_ext/string/conversions.rb
168
178
  - lib/active_support/core_ext/string/multibyte.rb
179
+ - lib/active_support/core_ext/string/filters.rb
169
180
  - lib/active_support/core_ext/string/output_safety.rb
181
+ - lib/active_support/core_ext/string/encoding.rb
182
+ - lib/active_support/core_ext/string/inquiry.rb
170
183
  - lib/active_support/core_ext/string/starts_ends_with.rb
171
184
  - lib/active_support/core_ext/string/strip.rb
185
+ - lib/active_support/core_ext/string/exclude.rb
186
+ - lib/active_support/core_ext/string/interpolation.rb
172
187
  - lib/active_support/core_ext/string/xchar.rb
188
+ - lib/active_support/core_ext/process/daemon.rb
189
+ - lib/active_support/core_ext/range/include_range.rb
190
+ - lib/active_support/core_ext/range/blockless_step.rb
191
+ - lib/active_support/core_ext/range/conversions.rb
192
+ - lib/active_support/core_ext/range/cover.rb
193
+ - lib/active_support/core_ext/range/overlaps.rb
194
+ - lib/active_support/core_ext/big_decimal/conversions.rb
195
+ - lib/active_support/core_ext/date_time/zones.rb
196
+ - lib/active_support/core_ext/date_time/acts_like.rb
197
+ - lib/active_support/core_ext/date_time/conversions.rb
198
+ - lib/active_support/core_ext/date_time/calculations.rb
199
+ - lib/active_support/core_ext/kernel.rb
200
+ - lib/active_support/core_ext/regexp.rb
173
201
  - lib/active_support/core_ext/string.rb
174
- - lib/active_support/core_ext/time/acts_like.rb
175
- - lib/active_support/core_ext/time/calculations.rb
176
- - lib/active_support/core_ext/time/conversions.rb
177
- - lib/active_support/core_ext/time/marshal.rb
178
- - lib/active_support/core_ext/time/publicize_conversion_methods.rb
179
- - lib/active_support/core_ext/time/zones.rb
180
- - lib/active_support/core_ext/uri.rb
181
- - lib/active_support/core_ext.rb
182
- - lib/active_support/dependencies/autoload.rb
183
- - lib/active_support/dependencies.rb
184
- - lib/active_support/deprecation/behaviors.rb
185
- - lib/active_support/deprecation/method_wrappers.rb
186
- - lib/active_support/deprecation/proxy_wrappers.rb
187
- - lib/active_support/deprecation/reporting.rb
188
- - lib/active_support/deprecation.rb
189
- - lib/active_support/descendants_tracker.rb
190
- - lib/active_support/duration.rb
191
- - lib/active_support/file_update_checker.rb
192
- - lib/active_support/file_watcher.rb
193
- - lib/active_support/gzip.rb
202
+ - lib/active_support/core_ext/class/inheritable_attributes.rb
203
+ - lib/active_support/core_ext/class/attribute_accessors.rb
204
+ - lib/active_support/core_ext/class/delegating_attributes.rb
205
+ - lib/active_support/core_ext/class/subclasses.rb
206
+ - lib/active_support/core_ext/class/attribute.rb
207
+ - lib/active_support/core_ext/enumerable.rb
208
+ - lib/active_support/core_ext/integer.rb
209
+ - lib/active_support/core_ext/process.rb
210
+ - lib/active_support/core_ext/hash.rb
211
+ - lib/active_support/core_ext/float.rb
212
+ - lib/active_support/core_ext/file.rb
213
+ - lib/active_support/core_ext/name_error.rb
214
+ - lib/active_support/core_ext/hash/diff.rb
215
+ - lib/active_support/core_ext/hash/keys.rb
216
+ - lib/active_support/core_ext/hash/conversions.rb
217
+ - lib/active_support/core_ext/hash/deep_merge.rb
218
+ - lib/active_support/core_ext/hash/indifferent_access.rb
219
+ - lib/active_support/core_ext/hash/slice.rb
220
+ - lib/active_support/core_ext/hash/except.rb
221
+ - lib/active_support/core_ext/hash/reverse_merge.rb
222
+ - lib/active_support/core_ext/hash/deep_dup.rb
223
+ - lib/active_support/core_ext/exception.rb
224
+ - lib/active_support/core_ext/object.rb
225
+ - lib/active_support/core_ext/object/try.rb
226
+ - lib/active_support/core_ext/object/to_param.rb
227
+ - lib/active_support/core_ext/object/blank.rb
228
+ - lib/active_support/core_ext/object/duplicable.rb
229
+ - lib/active_support/core_ext/object/acts_like.rb
230
+ - lib/active_support/core_ext/object/conversions.rb
231
+ - lib/active_support/core_ext/object/with_options.rb
232
+ - lib/active_support/core_ext/object/to_query.rb
233
+ - lib/active_support/core_ext/object/to_json.rb
234
+ - lib/active_support/core_ext/object/inclusion.rb
235
+ - lib/active_support/core_ext/object/instance_variables.rb
236
+ - lib/active_support/callbacks.rb
194
237
  - lib/active_support/hash_with_indifferent_access.rb
195
- - lib/active_support/i18n.rb
196
- - lib/active_support/i18n_railtie.rb
197
- - lib/active_support/inflections.rb
198
- - lib/active_support/inflector/inflections.rb
199
- - lib/active_support/inflector/methods.rb
200
- - lib/active_support/inflector/transliterate.rb
201
- - lib/active_support/inflector.rb
202
- - lib/active_support/json/decoding.rb
203
- - lib/active_support/json/encoding.rb
204
- - lib/active_support/json/variable.rb
205
- - lib/active_support/json.rb
206
- - lib/active_support/lazy_load_hooks.rb
207
- - lib/active_support/locale/en.yml
208
- - lib/active_support/log_subscriber/test_helper.rb
209
- - lib/active_support/log_subscriber.rb
210
- - lib/active_support/memoizable.rb
211
- - lib/active_support/message_encryptor.rb
212
- - lib/active_support/message_verifier.rb
213
- - lib/active_support/multibyte/chars.rb
214
- - lib/active_support/multibyte/exceptions.rb
215
- - lib/active_support/multibyte/unicode.rb
216
- - lib/active_support/multibyte/utils.rb
217
- - lib/active_support/multibyte.rb
218
- - lib/active_support/notifications/fanout.rb
219
- - lib/active_support/notifications/instrumenter.rb
238
+ - lib/active_support/file_watcher.rb
220
239
  - lib/active_support/notifications.rb
221
- - lib/active_support/option_merger.rb
222
- - lib/active_support/ordered_hash.rb
223
- - lib/active_support/ordered_options.rb
224
- - lib/active_support/railtie.rb
225
- - lib/active_support/rescuable.rb
226
- - lib/active_support/ruby/shim.rb
227
- - lib/active_support/secure_random.rb
228
- - lib/active_support/string_inquirer.rb
229
- - lib/active_support/test_case.rb
230
- - lib/active_support/testing/assertions.rb
231
- - lib/active_support/testing/declarative.rb
232
- - lib/active_support/testing/deprecation.rb
233
- - lib/active_support/testing/isolation.rb
234
- - lib/active_support/testing/mochaing.rb
235
- - lib/active_support/testing/pending.rb
240
+ - lib/active_support/basic_object.rb
241
+ - lib/active_support/core_ext.rb
236
242
  - lib/active_support/testing/performance/jruby.rb
237
243
  - lib/active_support/testing/performance/rubinius.rb
244
+ - lib/active_support/testing/performance/ruby.rb
238
245
  - lib/active_support/testing/performance/ruby/mri.rb
239
246
  - lib/active_support/testing/performance/ruby/yarv.rb
240
- - lib/active_support/testing/performance/ruby.rb
241
- - lib/active_support/testing/performance.rb
242
247
  - lib/active_support/testing/setup_and_teardown.rb
243
- - lib/active_support/time/autoload.rb
244
- - lib/active_support/time.rb
245
- - lib/active_support/time_with_zone.rb
246
- - lib/active_support/values/time_zone.rb
247
- - lib/active_support/values/unicode_tables.dat
248
- - lib/active_support/version.rb
249
- - lib/active_support/whiny_nil.rb
250
- - lib/active_support/xml_mini/jdom.rb
251
- - lib/active_support/xml_mini/libxml.rb
252
- - lib/active_support/xml_mini/libxmlsax.rb
253
- - lib/active_support/xml_mini/nokogiri.rb
254
- - lib/active_support/xml_mini/nokogirisax.rb
255
- - lib/active_support/xml_mini/rexml.rb
256
- - lib/active_support/xml_mini.rb
248
+ - lib/active_support/testing/performance.rb
249
+ - lib/active_support/testing/deprecation.rb
250
+ - lib/active_support/testing/declarative.rb
251
+ - lib/active_support/testing/pending.rb
252
+ - lib/active_support/testing/assertions.rb
253
+ - lib/active_support/testing/mochaing.rb
254
+ - lib/active_support/testing/isolation.rb
255
+ - lib/active_support/i18n.rb
256
+ - lib/active_support/ruby/shim.rb
257
+ - lib/active_support/message_verifier.rb
258
+ - lib/active_support/secure_random.rb
257
259
  - lib/active_support.rb
258
- has_rdoc: true
259
260
  homepage: http://www.rubyonrails.org
260
261
  licenses: []
261
262
 
@@ -278,16 +279,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
278
279
  required_rubygems_version: !ruby/object:Gem::Requirement
279
280
  none: false
280
281
  requirements:
281
- - - ">="
282
+ - - ">"
282
283
  - !ruby/object:Gem::Version
283
- hash: 3
284
+ hash: 25
284
285
  segments:
285
- - 0
286
- version: "0"
286
+ - 1
287
+ - 3
288
+ - 1
289
+ version: 1.3.1
287
290
  requirements: []
288
291
 
289
292
  rubyforge_project:
290
- rubygems_version: 1.3.7
293
+ rubygems_version: 1.8.6
291
294
  signing_key:
292
295
  specification_version: 3
293
296
  summary: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.