1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
--- !ruby/object:Gem::Specification
name: coercible
version: !ruby/object:Gem::Version
version: 1.0.0
platform: ruby
authors:
- Piotr Solnica
autorequire:
bindir: bin
cert_chain: []
date: 2013-12-10 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: descendants_tracker
requirement: !ruby/object:Gem::Requirement
requirements:
- - ~>
- !ruby/object:Gem::Version
version: 0.0.1
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - ~>
- !ruby/object:Gem::Version
version: 0.0.1
description: Powerful, flexible and configurable coercion library. And nothing more.
email:
- piotr.solnica@gmail.com
executables: []
extensions: []
extra_rdoc_files: []
files:
- .gitignore
- .rspec
- .travis.yml
- Changelog.md
- Gemfile
- Gemfile.devtools
- Guardfile
- LICENSE.txt
- README.md
- Rakefile
- coercible.gemspec
- config/flay.yml
- config/flog.yml
- config/mutant.yml
- config/roodi.yml
- config/site.reek
- lib/coercible.rb
- lib/coercible/coercer.rb
- lib/coercible/coercer/array.rb
- lib/coercible/coercer/configurable.rb
- lib/coercible/coercer/date.rb
- lib/coercible/coercer/date_time.rb
- lib/coercible/coercer/decimal.rb
- lib/coercible/coercer/false_class.rb
- lib/coercible/coercer/float.rb
- lib/coercible/coercer/hash.rb
- lib/coercible/coercer/integer.rb
- lib/coercible/coercer/numeric.rb
- lib/coercible/coercer/object.rb
- lib/coercible/coercer/string.rb
- lib/coercible/coercer/symbol.rb
- lib/coercible/coercer/time.rb
- lib/coercible/coercer/time_coercions.rb
- lib/coercible/coercer/true_class.rb
- lib/coercible/configuration.rb
- lib/coercible/version.rb
- lib/support/options.rb
- lib/support/type_lookup.rb
- spec/integration/configuring_coercers_spec.rb
- spec/shared/unit/coerced_predicate.rb
- spec/shared/unit/configurable.rb
- spec/spec_helper.rb
- spec/unit/coercible/coercer/array/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/array/to_set_spec.rb
- spec/unit/coercible/coercer/class_methods/new_spec.rb
- spec/unit/coercible/coercer/configurable/config_name_spec.rb
- spec/unit/coercible/coercer/configurable/config_spec.rb
- spec/unit/coercible/coercer/date/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/date/to_date_spec.rb
- spec/unit/coercible/coercer/date/to_datetime_spec.rb
- spec/unit/coercible/coercer/date/to_string_spec.rb
- spec/unit/coercible/coercer/date/to_time_spec.rb
- spec/unit/coercible/coercer/date_time/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/date_time/to_date_spec.rb
- spec/unit/coercible/coercer/date_time/to_datetime_spec.rb
- spec/unit/coercible/coercer/date_time/to_string_spec.rb
- spec/unit/coercible/coercer/date_time/to_time_spec.rb
- spec/unit/coercible/coercer/decimal/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/decimal/to_decimal_spec.rb
- spec/unit/coercible/coercer/decimal/to_float_spec.rb
- spec/unit/coercible/coercer/decimal/to_integer_spec.rb
- spec/unit/coercible/coercer/decimal/to_string_spec.rb
- spec/unit/coercible/coercer/element_reader_spec.rb
- spec/unit/coercible/coercer/false_class/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/false_class/to_string_spec.rb
- spec/unit/coercible/coercer/float/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/float/to_datetime_spec.rb
- spec/unit/coercible/coercer/float/to_decimal_spec.rb
- spec/unit/coercible/coercer/float/to_float_spec.rb
- spec/unit/coercible/coercer/float/to_integer_spec.rb
- spec/unit/coercible/coercer/float/to_string_spec.rb
- spec/unit/coercible/coercer/hash/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/hash/to_date_spec.rb
- spec/unit/coercible/coercer/hash/to_datetime_spec.rb
- spec/unit/coercible/coercer/hash/to_time_spec.rb
- spec/unit/coercible/coercer/integer/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/integer/datetime_format_spec.rb
- spec/unit/coercible/coercer/integer/datetime_proc_spec.rb
- spec/unit/coercible/coercer/integer/to_boolean_spec.rb
- spec/unit/coercible/coercer/integer/to_datetime_spec.rb
- spec/unit/coercible/coercer/integer/to_decimal_spec.rb
- spec/unit/coercible/coercer/integer/to_float_spec.rb
- spec/unit/coercible/coercer/integer/to_integer_spec.rb
- spec/unit/coercible/coercer/integer/to_string_spec.rb
- spec/unit/coercible/coercer/integer_spec.rb
- spec/unit/coercible/coercer/numeric/to_decimal_spec.rb
- spec/unit/coercible/coercer/numeric/to_float_spec.rb
- spec/unit/coercible/coercer/numeric/to_integer_spec.rb
- spec/unit/coercible/coercer/numeric/to_string_spec.rb
- spec/unit/coercible/coercer/object/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/object/inspect_spec.rb
- spec/unit/coercible/coercer/object/method_missing_spec.rb
- spec/unit/coercible/coercer/object/to_array_spec.rb
- spec/unit/coercible/coercer/object/to_hash_spec.rb
- spec/unit/coercible/coercer/object/to_integer_spec.rb
- spec/unit/coercible/coercer/object/to_string_spec.rb
- spec/unit/coercible/coercer/string/class_methods/config_spec.rb
- spec/unit/coercible/coercer/string/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/string/to_boolean_spec.rb
- spec/unit/coercible/coercer/string/to_constant_spec.rb
- spec/unit/coercible/coercer/string/to_date_spec.rb
- spec/unit/coercible/coercer/string/to_datetime_spec.rb
- spec/unit/coercible/coercer/string/to_decimal_spec.rb
- spec/unit/coercible/coercer/string/to_float_spec.rb
- spec/unit/coercible/coercer/string/to_integer_spec.rb
- spec/unit/coercible/coercer/string/to_symbol_spec.rb
- spec/unit/coercible/coercer/string/to_time_spec.rb
- spec/unit/coercible/coercer/string_spec.rb
- spec/unit/coercible/coercer/symbol/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/symbol/to_string_spec.rb
- spec/unit/coercible/coercer/time/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/time/to_integer_spec.rb
- spec/unit/coercible/coercer/time/to_time_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_date_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_datetime_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_string_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_time_spec.rb
- spec/unit/coercible/coercer/true_class/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/true_class/to_string_spec.rb
- spec/unit/coercible/configuration/class_methods/build_spec.rb
homepage: https://github.com/solnic/coercible
licenses:
- MIT
metadata: {}
post_install_message:
rdoc_options: []
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
requirements:
- - '>='
- !ruby/object:Gem::Version
version: '0'
required_rubygems_version: !ruby/object:Gem::Requirement
requirements:
- - '>='
- !ruby/object:Gem::Version
version: '0'
requirements: []
rubyforge_project:
rubygems_version: 2.0.3
signing_key:
specification_version: 4
summary: Powerful, flexible and configurable coercion library. And nothing more.
test_files:
- spec/integration/configuring_coercers_spec.rb
- spec/shared/unit/coerced_predicate.rb
- spec/shared/unit/configurable.rb
- spec/spec_helper.rb
- spec/unit/coercible/coercer/array/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/array/to_set_spec.rb
- spec/unit/coercible/coercer/class_methods/new_spec.rb
- spec/unit/coercible/coercer/configurable/config_name_spec.rb
- spec/unit/coercible/coercer/configurable/config_spec.rb
- spec/unit/coercible/coercer/date/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/date/to_date_spec.rb
- spec/unit/coercible/coercer/date/to_datetime_spec.rb
- spec/unit/coercible/coercer/date/to_string_spec.rb
- spec/unit/coercible/coercer/date/to_time_spec.rb
- spec/unit/coercible/coercer/date_time/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/date_time/to_date_spec.rb
- spec/unit/coercible/coercer/date_time/to_datetime_spec.rb
- spec/unit/coercible/coercer/date_time/to_string_spec.rb
- spec/unit/coercible/coercer/date_time/to_time_spec.rb
- spec/unit/coercible/coercer/decimal/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/decimal/to_decimal_spec.rb
- spec/unit/coercible/coercer/decimal/to_float_spec.rb
- spec/unit/coercible/coercer/decimal/to_integer_spec.rb
- spec/unit/coercible/coercer/decimal/to_string_spec.rb
- spec/unit/coercible/coercer/element_reader_spec.rb
- spec/unit/coercible/coercer/false_class/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/false_class/to_string_spec.rb
- spec/unit/coercible/coercer/float/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/float/to_datetime_spec.rb
- spec/unit/coercible/coercer/float/to_decimal_spec.rb
- spec/unit/coercible/coercer/float/to_float_spec.rb
- spec/unit/coercible/coercer/float/to_integer_spec.rb
- spec/unit/coercible/coercer/float/to_string_spec.rb
- spec/unit/coercible/coercer/hash/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/hash/to_date_spec.rb
- spec/unit/coercible/coercer/hash/to_datetime_spec.rb
- spec/unit/coercible/coercer/hash/to_time_spec.rb
- spec/unit/coercible/coercer/integer/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/integer/datetime_format_spec.rb
- spec/unit/coercible/coercer/integer/datetime_proc_spec.rb
- spec/unit/coercible/coercer/integer/to_boolean_spec.rb
- spec/unit/coercible/coercer/integer/to_datetime_spec.rb
- spec/unit/coercible/coercer/integer/to_decimal_spec.rb
- spec/unit/coercible/coercer/integer/to_float_spec.rb
- spec/unit/coercible/coercer/integer/to_integer_spec.rb
- spec/unit/coercible/coercer/integer/to_string_spec.rb
- spec/unit/coercible/coercer/integer_spec.rb
- spec/unit/coercible/coercer/numeric/to_decimal_spec.rb
- spec/unit/coercible/coercer/numeric/to_float_spec.rb
- spec/unit/coercible/coercer/numeric/to_integer_spec.rb
- spec/unit/coercible/coercer/numeric/to_string_spec.rb
- spec/unit/coercible/coercer/object/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/object/inspect_spec.rb
- spec/unit/coercible/coercer/object/method_missing_spec.rb
- spec/unit/coercible/coercer/object/to_array_spec.rb
- spec/unit/coercible/coercer/object/to_hash_spec.rb
- spec/unit/coercible/coercer/object/to_integer_spec.rb
- spec/unit/coercible/coercer/object/to_string_spec.rb
- spec/unit/coercible/coercer/string/class_methods/config_spec.rb
- spec/unit/coercible/coercer/string/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/string/to_boolean_spec.rb
- spec/unit/coercible/coercer/string/to_constant_spec.rb
- spec/unit/coercible/coercer/string/to_date_spec.rb
- spec/unit/coercible/coercer/string/to_datetime_spec.rb
- spec/unit/coercible/coercer/string/to_decimal_spec.rb
- spec/unit/coercible/coercer/string/to_float_spec.rb
- spec/unit/coercible/coercer/string/to_integer_spec.rb
- spec/unit/coercible/coercer/string/to_symbol_spec.rb
- spec/unit/coercible/coercer/string/to_time_spec.rb
- spec/unit/coercible/coercer/string_spec.rb
- spec/unit/coercible/coercer/symbol/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/symbol/to_string_spec.rb
- spec/unit/coercible/coercer/time/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/time/to_integer_spec.rb
- spec/unit/coercible/coercer/time/to_time_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_date_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_datetime_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_string_spec.rb
- spec/unit/coercible/coercer/time_coercions/to_time_spec.rb
- spec/unit/coercible/coercer/true_class/coerced_predicate_spec.rb
- spec/unit/coercible/coercer/true_class/to_string_spec.rb
- spec/unit/coercible/configuration/class_methods/build_spec.rb
has_rdoc:
|