classicCMS 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/Gemfile +4 -0
- data/Guardfile +5 -0
- data/Rakefile +1 -0
- data/bin/classiccms +4 -0
- data/classicCMS.gemspec +25 -0
- data/lib/classiccms/application/cms.rb +2 -0
- data/lib/classiccms/application.rb +10 -0
- data/lib/classiccms/base.rb +9 -0
- data/lib/classiccms/version.rb +4 -0
- data/lib/classiccms.rb +5 -0
- data/spec/config/mongoid.yml +22 -0
- data/spec/factories.rb +63 -0
- data/spec/models/base_spec.rb +10 -0
- data/spec/spec_helper.rb +17 -0
- data/vendor/bundle/bin/autospec +19 -0
- data/vendor/bundle/bin/b2json +19 -0
- data/vendor/bundle/bin/classiccms +19 -0
- data/vendor/bundle/bin/guard +19 -0
- data/vendor/bundle/bin/haml +19 -0
- data/vendor/bundle/bin/html2haml +19 -0
- data/vendor/bundle/bin/htmldiff +21 -0
- data/vendor/bundle/bin/j2bson +19 -0
- data/vendor/bundle/bin/ldiff +21 -0
- data/vendor/bundle/bin/mongo_console +19 -0
- data/vendor/bundle/bin/rackup +19 -0
- data/vendor/bundle/bin/rake2thor +19 -0
- data/vendor/bundle/bin/rspec +19 -0
- data/vendor/bundle/bin/sass +19 -0
- data/vendor/bundle/bin/sass-convert +19 -0
- data/vendor/bundle/bin/scss +19 -0
- data/vendor/bundle/bin/spork +19 -0
- data/vendor/bundle/bin/thor +19 -0
- data/vendor/bundle/bin/tilt +19 -0
- data/vendor/bundle/gems/activemodel-3.2.3/CHANGELOG.md +130 -0
- data/vendor/bundle/gems/activemodel-3.2.3/MIT-LICENSE +21 -0
- data/vendor/bundle/gems/activemodel-3.2.3/README.rdoc +211 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/attribute_methods.rb +452 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/callbacks.rb +134 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/conversion.rb +73 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/dirty.rb +167 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/errors.rb +370 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/lint.rb +123 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/locale/en.yml +27 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security/permission_set.rb +40 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security/sanitizer.rb +59 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security.rb +237 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/naming.rb +171 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/observer_array.rb +147 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/observing.rb +252 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/railtie.rb +2 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/secure_password.rb +74 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/serialization.rb +139 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/serializers/json.rb +108 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/serializers/xml.rb +195 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/test_case.rb +16 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/translation.rb +70 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/acceptance.rb +68 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/callbacks.rb +57 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/confirmation.rb +68 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/exclusion.rb +69 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/format.rb +94 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/inclusion.rb +69 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/length.rb +118 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/numericality.rb +130 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/presence.rb +46 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/validates.rb +137 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations/with.rb +145 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validations.rb +221 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/validator.rb +184 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model/version.rb +10 -0
- data/vendor/bundle/gems/activemodel-3.2.3/lib/active_model.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.3/CHANGELOG.md +1626 -0
- data/vendor/bundle/gems/activesupport-3.2.3/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/activesupport-3.2.3/README.rdoc +33 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/all.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/backtrace_cleaner.rb +99 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/base64.rb +54 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/basic_object.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/benchmarkable.rb +55 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/buffered_logger.rb +125 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/builder.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/file_store.rb +178 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/mem_cache_store.rb +206 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/memory_store.rb +159 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/null_store.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache/strategy/local_cache.rb +169 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/cache.rb +638 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/callbacks.rb +626 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/concern.rb +131 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/configurable.rb +90 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/access.rb +46 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/conversions.rb +164 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/extract_options.rb +29 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/grouping.rb +100 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/random_access.rb +30 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/uniq_by.rb +16 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/array.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/benchmark.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal/conversions.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal.rb +1 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/attribute.rb +115 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/attribute_accessors.rb +80 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class/subclasses.rb +36 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/acts_like.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/calculations.rb +276 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/conversions.rb +106 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/freeze.rb +33 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date/zones.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/calculations.rb +132 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/conversions.rb +103 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/date_time/zones.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/enumerable.rb +127 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/exception.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/file/atomic.rb +42 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/file/path.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/file.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/float/rounding.rb +19 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/float.rb +1 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/conversions.rb +157 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/deep_dup.rb +11 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/deep_merge.rb +16 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/except.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/keys.rb +47 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/reverse_merge.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/slice.rb +40 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer/inflections.rb +17 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer/multiple.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer/time.rb +39 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/integer.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/io.rb +15 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/debugger.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/reporting.rb +93 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/kernel.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/load_error.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/logger.rb +83 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/aliasing.rb +70 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/anonymous.rb +24 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/attr_internal.rb +39 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/attribute_accessors.rb +64 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/delegation.rb +153 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/deprecation.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/introspection.rb +88 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/method_names.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/qualified_const.rb +64 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/reachable.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/remove_method.rb +16 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module/synchronization.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/module.rb +12 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/name_error.rb +18 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/numeric/bytes.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/numeric/time.rb +79 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/numeric.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/acts_like.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/blank.rb +121 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/conversions.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/duplicable.rb +106 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/inclusion.rb +25 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/instance_variables.rb +33 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/to_json.rb +19 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/to_param.rb +55 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/to_query.rb +27 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/try.rb +53 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object/with_options.rb +43 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/object.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/proc.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/process/daemon.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/blockless_step.rb +29 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/conversions.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/cover.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/include_range.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range/overlaps.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/range.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/regexp.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/rexml.rb +46 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/access.rb +99 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/behavior.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/conversions.rb +54 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/encoding.rb +11 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/exclude.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/filters.rb +49 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/inflections.rb +202 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/inquiry.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/interpolation.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/multibyte.rb +72 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/output_safety.rb +187 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/strip.rb +26 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string/xchar.rb +18 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/string.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/acts_like.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/calculations.rb +344 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/conversions.rb +85 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/marshal.rb +57 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/uri.rb +30 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/dependencies/autoload.rb +50 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/dependencies.rb +703 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/behaviors.rb +49 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/method_wrappers.rb +29 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/reporting.rb +65 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation.rb +18 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/duration.rb +110 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/file_update_checker.rb +121 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/file_watcher.rb +36 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/gzip.rb +30 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/hash_with_indifferent_access.rb +168 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/i18n.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/i18n_railtie.rb +102 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflections.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector/inflections.rb +172 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector/methods.rb +320 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector/transliterate.rb +98 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/inflector.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json/decoding.rb +65 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json/encoding.rb +284 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json/variable.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/json.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/lazy_load_hooks.rb +46 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/locale/en.yml +36 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/log_subscriber/test_helper.rb +101 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/log_subscriber.rb +122 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/memoizable.rb +116 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/message_encryptor.rb +103 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/message_verifier.rb +74 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/chars.rb +476 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/unicode.rb +393 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte/utils.rb +60 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/multibyte.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/fanout.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb +53 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications.rb +154 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/option_merger.rb +25 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_hash.rb +222 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ordered_options.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/railtie.rb +59 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/rescuable.rb +115 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/ruby/shim.rb +22 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/tagged_logging.rb +70 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/test_case.rb +34 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/assertions.rb +97 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/declarative.rb +40 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/deprecation.rb +55 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/isolation.rb +157 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/mochaing.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/pending.rb +52 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/jruby.rb +115 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/rubinius.rb +113 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/ruby/mri.rb +57 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/ruby/yarv.rb +57 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance/ruby.rb +152 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/performance.rb +317 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/testing/setup_and_teardown.rb +111 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/time/autoload.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/time.rb +35 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/time_with_zone.rb +354 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/values/time_zone.rb +395 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/version.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/whiny_nil.rb +24 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/jdom.rb +175 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/libxml.rb +80 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/libxmlsax.rb +86 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/nokogiri.rb +84 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/nokogirisax.rb +88 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini/rexml.rb +130 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support/xml_mini.rb +168 -0
- data/vendor/bundle/gems/activesupport-3.2.3/lib/active_support.rb +82 -0
- data/vendor/bundle/gems/bson-1.6.1/LICENSE.txt +190 -0
- data/vendor/bundle/gems/bson-1.6.1/bin/b2json +65 -0
- data/vendor/bundle/gems/bson-1.6.1/bin/j2bson +72 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/bson_c.rb +41 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/bson_java.rb +30 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/bson_ruby.rb +641 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/byte_buffer.rb +280 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/exceptions.rb +41 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/ordered_hash.rb +187 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/binary.rb +56 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/code.rb +59 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/dbref.rb +46 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/min_max_keys.rb +60 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/object_id.rb +226 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/types/timestamp.rb +76 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson/version.rb +3 -0
- data/vendor/bundle/gems/bson-1.6.1/lib/bson.rb +101 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/binary_test.rb +13 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/bson_test.rb +658 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/byte_buffer_test.rb +208 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/hash_with_indifferent_access_test.rb +38 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/json_test.rb +17 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/object_id_test.rb +138 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/ordered_hash_test.rb +247 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/test_helper.rb +30 -0
- data/vendor/bundle/gems/bson-1.6.1/test/bson/timestamp_test.rb +46 -0
- data/vendor/bundle/gems/bson-1.6.1/test/support/hash_with_indifferent_access.rb +186 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/Rakefile +317 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/bson_ext.gemspec +26 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/bson_ext/cbson.bundle +0 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/Makefile +213 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/bson_buffer.c +151 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/bson_buffer.h +59 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/bson_buffer.o +0 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/cbson.bundle +0 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/cbson.c +1007 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/cbson.o +0 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/encoding_helpers.c +118 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/encoding_helpers.h +29 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/encoding_helpers.o +0 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/extconf.rb +10 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/mkmf.log +58 -0
- data/vendor/bundle/gems/bson_ext-1.6.1/ext/cbson/version.h +17 -0
- data/vendor/bundle/gems/builder-3.0.0/CHANGES +89 -0
- data/vendor/bundle/gems/builder-3.0.0/README +229 -0
- data/vendor/bundle/gems/builder-3.0.0/README.rdoc +232 -0
- data/vendor/bundle/gems/builder-3.0.0/Rakefile +296 -0
- data/vendor/bundle/gems/builder-3.0.0/TAGS +55364 -0
- data/vendor/bundle/gems/builder-3.0.0/doc/releases/builder-1.2.4.rdoc +31 -0
- data/vendor/bundle/gems/builder-3.0.0/doc/releases/builder-2.0.0.rdoc +46 -0
- data/vendor/bundle/gems/builder-3.0.0/doc/releases/builder-2.1.1.rdoc +58 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/blankslate.rb +109 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/builder/blankslate.rb +23 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/builder/xchar.rb +197 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/builder/xmlbase.rb +160 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/builder/xmlevents.rb +63 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/builder/xmlmarkup.rb +334 -0
- data/vendor/bundle/gems/builder-3.0.0/lib/builder.rb +13 -0
- data/vendor/bundle/gems/builder-3.0.0/test/performance.rb +40 -0
- data/vendor/bundle/gems/builder-3.0.0/test/preload.rb +39 -0
- data/vendor/bundle/gems/builder-3.0.0/test/test_blankslate.rb +225 -0
- data/vendor/bundle/gems/builder-3.0.0/test/test_cssbuilder.rb +125 -0
- data/vendor/bundle/gems/builder-3.0.0/test/test_eventbuilder.rb +150 -0
- data/vendor/bundle/gems/builder-3.0.0/test/test_markupbuilder.rb +546 -0
- data/vendor/bundle/gems/builder-3.0.0/test/test_namecollision.rb +39 -0
- data/vendor/bundle/gems/builder-3.0.0/test/test_xchar.rb +77 -0
- data/vendor/bundle/gems/coffee-script-2.2.0/LICENSE +22 -0
- data/vendor/bundle/gems/coffee-script-2.2.0/README.md +43 -0
- data/vendor/bundle/gems/coffee-script-2.2.0/lib/coffee-script.rb +1 -0
- data/vendor/bundle/gems/coffee-script-2.2.0/lib/coffee_script.rb +60 -0
- data/vendor/bundle/gems/coffee-script-source-1.2.0/lib/coffee_script/coffee-script.js +8 -0
- data/vendor/bundle/gems/coffee-script-source-1.2.0/lib/coffee_script/source.rb +7 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/.gemtest +0 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/History.rdoc +54 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/License.rdoc +38 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/README.rdoc +72 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/Rakefile +26 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
- data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
- data/vendor/bundle/gems/execjs-1.3.0/LICENSE +21 -0
- data/vendor/bundle/gems/execjs-1.3.0/README.md +47 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/disabled_runtime.rb +23 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/external_runtime.rb +213 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/johnson_runtime.rb +112 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/module.rb +38 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/mustang_runtime.rb +84 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/ruby_racer_runtime.rb +117 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/ruby_rhino_runtime.rb +101 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/runtimes.rb +93 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/jsc_runner.js +19 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/jscript_runner.js +22 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/json2.js +481 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/node_runner.js +20 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/support/spidermonkey_runner.js +19 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs/version.rb +3 -0
- data/vendor/bundle/gems/execjs-1.3.0/lib/execjs.rb +6 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/.autotest +9 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/.gitignore +9 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/.travis.yml +13 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/.yardopts +5 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/Appraisals +11 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/CONTRIBUTION_GUIDELINES.md +10 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/Changelog +168 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/GETTING_STARTED.md +735 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/Gemfile +5 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/LICENSE +19 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/README.md +70 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/Rakefile +38 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/cucumber.yml +1 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/factory_girl.gemspec +38 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/features/factory_girl_steps.feature +237 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/features/find_definitions.feature +75 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/features/step_definitions/database_steps.rb +42 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/features/step_definitions/factory_girl_steps.rb +43 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/features/support/env.rb +11 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/features/support/factories.rb +119 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/2.3.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.0.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.0.gemfile.lock +86 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.1.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.1.gemfile.lock +95 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.2.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/gemfiles/3.2.gemfile.lock +93 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/aliases.rb +19 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/association.rb +23 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/dynamic.rb +20 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/sequence.rb +17 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute/static.rb +15 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute.rb +40 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute_assigner.rb +73 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/attribute_list.rb +54 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/callback.rb +33 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/association.rb +25 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/dynamic.rb +25 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/implicit.rb +32 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration/static.rb +25 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration.rb +22 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/declaration_list.rb +48 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/definition.rb +76 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/definition_proxy.rb +159 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/errors.rb +19 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/evaluator.rb +76 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/evaluator_class_definer.rb +34 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/factory.rb +145 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/factory_runner.rb +24 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/find_definitions.rb +25 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/null_factory.rb +15 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/null_object.rb +7 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/registry.rb +46 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/reload.rb +8 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/sequence.rb +24 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/step_definitions.rb +130 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/attributes_for.rb +12 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/build.rb +15 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/create.rb +17 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy/stub.rb +61 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy.rb +32 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/strategy_calculator.rb +29 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/blueprint.rb +42 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/default.rb +56 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/generate.rb +70 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/make.rb +45 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/methods.rb +136 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/sham.rb +45 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax/vintage.rb +130 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/syntax.rb +16 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/trait.rb +29 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl/version.rb +4 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/lib/factory_girl.rb +69 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/aliases_spec.rb +19 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attribute_aliases_spec.rb +45 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attribute_existing_on_object_spec.rb +68 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attributes_for_spec.rb +89 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attributes_from_instance_spec.rb +53 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/attributes_ordered_spec.rb +51 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/build_list_spec.rb +41 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/build_spec.rb +89 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/build_stubbed_spec.rb +104 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/callbacks_spec.rb +47 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/create_list_spec.rb +82 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/create_spec.rb +117 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/define_child_before_parent_spec.rb +21 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/definition_spec.rb +26 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/definition_without_block_spec.rb +15 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/initialize_with_spec.rb +147 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/modify_factories_spec.rb +184 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/modify_inherited_spec.rb +52 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/nested_attributes_spec.rb +32 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/overrides_spec.rb +61 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/parent_spec.rb +90 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/sequence_spec.rb +33 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/stub_spec.rb +62 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/blueprint_spec.rb +34 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/generate_spec.rb +59 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/make_spec.rb +52 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/sham_spec.rb +43 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/syntax/vintage_spec.rb +217 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/traits_spec.rb +421 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/acceptance/transient_attributes_spec.rb +124 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/aliases_spec.rb +31 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/association_spec.rb +28 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/dynamic_spec.rb +52 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/sequence_spec.rb +16 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute/static_spec.rb +19 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute_list_spec.rb +78 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/attribute_spec.rb +16 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/callback_spec.rb +41 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/declaration/implicit_spec.rb +25 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/declaration_list_spec.rb +71 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/definition_proxy_spec.rb +197 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/definition_spec.rb +104 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/evaluator_class_definer_spec.rb +54 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/factory_spec.rb +279 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/find_definitions_spec.rb +110 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/null_factory_spec.rb +13 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/null_object_spec.rb +8 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/registry_spec.rb +81 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/sequence_spec.rb +47 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/attributes_for_spec.rb +18 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/build_spec.rb +7 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/create_spec.rb +13 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy/stub_spec.rb +40 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy_calculator_spec.rb +33 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl/strategy_spec.rb +21 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/factory_girl_spec.rb +22 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/spec_helper.rb +26 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/macros/define_constant.rb +86 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/callback.rb +9 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/declaration.rb +71 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/delegate.rb +44 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/matchers/trait.rb +9 -0
- data/vendor/bundle/gems/factory_girl-3.0.0/spec/support/shared_examples/strategy.rb +104 -0
- data/vendor/bundle/gems/ffi-1.0.11/History.txt +112 -0
- data/vendor/bundle/gems/ffi-1.0.11/LICENSE +14 -0
- data/vendor/bundle/gems/ffi-1.0.11/README.rdoc +70 -0
- data/vendor/bundle/gems/ffi-1.0.11/Rakefile +191 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/AbstractMemory.c +1004 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/AbstractMemory.h +159 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ArrayType.c +149 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ArrayType.h +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Buffer.c +348 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Call.c +441 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Call.h +83 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ClosurePool.c +263 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ClosurePool.h +48 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DataConverter.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DataConverter.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DynamicLibrary.c +309 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DynamicLibrary.h +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Function.c +950 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Function.h +73 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/FunctionInfo.c +228 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/LastError.c +168 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/LastError.h +38 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Makefile +215 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MappedType.c +161 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MappedType.h +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MemoryPointer.c +158 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MemoryPointer.h +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MethodHandle.c +341 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MethodHandle.h +46 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Platform.c +104 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Platform.h +36 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Pointer.c +473 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Pointer.h +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Struct.c +702 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Struct.h +97 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByReference.c +150 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByReference.h +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByReference.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByValue.c +134 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByValue.h +46 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructLayout.c +514 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Thread.c +319 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Thread.h +73 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Type.c +381 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Type.h +47 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.c +123 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.h +79 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Variadic.c +256 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/compat.h +74 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/endian.h +47 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/extconf.h +8 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/extconf.rb +57 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ffi.c +86 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/ffi_c.bundle +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.5.dylib +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.5.dylib.dSYM/Contents/Info.plist +20 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.5.dylib.dSYM/Contents/Resources/DWARF/libffi.5.dylib +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.dylib +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.la +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi.lai +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi_convenience.a +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/.libs/libffi_convenience.la +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog +4059 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog.libffi +658 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/LICENSE +21 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/Makefile +1791 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/Makefile.am +187 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/Makefile.in +1791 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/README +306 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/aclocal.m4 +8998 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/compile +142 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.guess +1498 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.log +841 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.status +2176 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/config.sub +1702 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/configure +17281 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/configure.ac +404 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/configure.host +11 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/depcomp +584 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/libffi.info +533 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/libffi.texi +541 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/stamp-vti +4 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/fficonfig.h +182 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/fficonfig.h.in +181 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/Makefile +469 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/Makefile.in +469 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffi.h +399 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffi.h.in +399 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffi_common.h +122 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/include/ffitarget.h +120 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/install-sh +323 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi.la +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi.pc +10 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi.pc.in +10 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libffi_convenience.la +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libtool +8890 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/libtool-version +29 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/ltmain.sh +8406 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/libtool.m4 +7360 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/ltoptions.m4 +368 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/m4/lt~obsolete.m4 +92 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/Makefile +448 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/Makefile.in +448 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/ffi.3 +31 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/mdate-sh +201 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/missing +360 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.deps/.dirstamp +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.dirstamp +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/closures.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/debug.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/java_raw_api.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/prep_cif.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/raw_api.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/.libs/types.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/alpha/osf.S +366 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/arm/ffi.c +309 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/arm/ffitarget.h +49 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/arm/sysv.S +306 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/avr32/ffi.c +421 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/closures.c +633 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/closures.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/debug.c +59 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/debug.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/dlmalloc.c +5099 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/frv/ffitarget.h +61 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/ffi.c +580 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/java_raw_api.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m68k/ffi.c +278 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/m68k/sysv.S +234 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/ffi.c +1029 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/ffitarget.h +235 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/n32.S +591 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/ffi.c +716 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/ffitarget.h +77 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/aix.S +324 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/aix_closure.S +443 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/darwin.S +245 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +317 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ffi.c +1442 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +928 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ffitarget.h +126 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/prep_cif.c +174 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/prep_cif.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/raw_api.c +254 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/raw_api.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/s390/ffitarget.h +60 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/ffi.c +625 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/ffitarget.h +66 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/types.c +77 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/types.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.deps/.dirstamp +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.dirstamp +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/darwin.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/darwin64.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/ffi.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/.libs/ffi64.o +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/darwin64.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi.c +682 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi64.c +626 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffi64.lo +12 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/ffitarget.h +120 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/sysv.S +454 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/unix64.S +422 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/win32.S +877 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/src/x86/win64.S +460 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/stamp-h1 +1 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/Makefile +482 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/Makefile.in +482 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +36 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +92 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +57 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +57 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +46 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +37 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +25 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +117 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +42 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +124 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +37 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi/texinfo.tex +7210 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.bsd.mk +34 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.darwin.mk +75 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.gnu.mk +29 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/libffi.mk +13 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/mkmf.log +102 -0
- data/vendor/bundle/gems/ffi-1.0.11/ext/ffi_c/rbffi.h +47 -0
- data/vendor/bundle/gems/ffi-1.0.11/gen/Rakefile +14 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/autopointer.rb +183 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/buffer.rb +4 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/callback.rb +4 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/enum.rb +161 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/errno.rb +33 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/ffi.rb +33 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/io.rb +52 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/library.rb +485 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/managedstruct.rb +55 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/memorypointer.rb +1 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-linux/types.conf +100 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-openbsd/types.conf +126 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-freebsd/types.conf +126 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-linux/types.conf +100 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-openbsd/types.conf +126 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/platform.rb +125 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/pointer.rb +122 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/struct.rb +282 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/struct_layout_builder.rb +159 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/const_generator.rb +229 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/generator.rb +58 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/generator_task.rb +35 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/struct_generator.rb +194 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/tools/types_generator.rb +123 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/types.rb +174 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/union.rb +32 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi/variadic.rb +65 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi.rb +15 -0
- data/vendor/bundle/gems/ffi-1.0.11/lib/ffi_c.bundle +0 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/async_callback_spec.rb +46 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/bool_spec.rb +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/buffer_spec.rb +215 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/callback_spec.rb +668 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/custom_param_type.rb +47 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/custom_type_spec.rb +85 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/dup_spec.rb +65 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/enum_spec.rb +227 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/errno_spec.rb +29 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/ffi_spec.rb +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/function_spec.rb +87 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/library_spec.rb +208 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/managed_struct_spec.rb +72 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/number_spec.rb +247 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/pointer_spec.rb +211 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/attach_function_spec.rb +28 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/memory_pointer_spec.rb +111 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/spec_helper.rb +1 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/rbx/struct_spec.rb +13 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/spec_helper.rb +35 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/string_spec.rb +119 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/strptr_spec.rb +61 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_callback_spec.rb +80 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_initialize_spec.rb +46 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_packed_spec.rb +62 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/struct_spec.rb +682 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/typedef_spec.rb +89 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/union_spec.rb +76 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/ffi/variadic_spec.rb +103 -0
- data/vendor/bundle/gems/ffi-1.0.11/spec/spec.opts +4 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/ann.rake +80 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/extension.rake +32 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/gem.rake +199 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/git.rake +41 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/notes.rake +27 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/post_load.rake +34 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/rdoc.rake +50 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/rubyforge.rake +55 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/setup.rb +301 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/spec.rake +54 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/svn.rake +47 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/test.rake +40 -0
- data/vendor/bundle/gems/ffi-1.0.11/tasks/yard.rake +11 -0
- data/vendor/bundle/gems/guard-1.0.1/CHANGELOG.md +465 -0
- data/vendor/bundle/gems/guard-1.0.1/LICENSE +20 -0
- data/vendor/bundle/gems/guard-1.0.1/README.md +889 -0
- data/vendor/bundle/gems/guard-1.0.1/bin/fsevent_watch_guard +0 -0
- data/vendor/bundle/gems/guard-1.0.1/bin/fsevent_watch_guard_guard +0 -0
- data/vendor/bundle/gems/guard-1.0.1/bin/guard +6 -0
- data/vendor/bundle/gems/guard-1.0.1/images/failed.png +0 -0
- data/vendor/bundle/gems/guard-1.0.1/images/pending.png +0 -0
- data/vendor/bundle/gems/guard-1.0.1/images/success.png +0 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/cli.rb +159 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/dsl.rb +439 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/dsl_describer.rb +151 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/group.rb +37 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/guard.rb +129 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/hook.rb +118 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/interactor.rb +250 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/interactors/readline.rb +110 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/interactors/simple.rb +17 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/listener.rb +376 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/darwin.rb +62 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/linux.rb +93 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/polling.rb +55 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/listeners/windows.rb +63 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifier.rb +213 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/gntp.rb +114 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/growl.rb +98 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/growl_notify.rb +91 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/libnotify.rb +96 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/notifysend.rb +81 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/notifiers/rb_notifu.rb +101 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/templates/Guardfile +2 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/ui.rb +205 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/version.rb +6 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/version.rbc +180 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard/watcher.rb +128 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/guard.rb +541 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/Gemfile +6 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/Guardfile +8 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/LICENSE +20 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/README.rdoc +255 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/Rakefile +21 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/bin/fsevent_watch +0 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/Info.plist +38 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/LICENSE +21 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/TSICTString.c +394 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/TSICTString.h +74 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/cli.c +160 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/cli.h +45 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/common.h +34 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/compat.c +20 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/compat.h +40 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch/main.c +509 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/fsevent_watch.xcodeproj/project.pbxproj +254 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/Common.xcconfig +82 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/Debug.xcconfig +19 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/Release.xcconfig +23 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/fsevent_watch/xcconfig/fsevent_watch.xcconfig +17 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/rakefile.rb +47 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/ext/rb-fsevent.xcconfig +33 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/lib/rb-fsevent/fsevent.rb +105 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/lib/rb-fsevent/version.rb +3 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/lib/rb-fsevent.rb +2 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/rb-fsevent.gemspec +25 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/fixtures/folder1/file1.txt +0 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/fixtures/folder1/folder2/file2.txt +0 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/rb-fsevent/fsevent_spec.rb +75 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/darwin/spec/spec_helper.rb +23 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/README.md +66 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/Rakefile +54 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/VERSION +1 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/event.rb +139 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/native/flags.rb +89 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/native.rb +31 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/notifier.rb +308 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify/watcher.rb +83 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/lib/rb-inotify.rb +17 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/linux/rb-inotify.gemspec +53 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/Gemfile +4 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/README.md +34 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/Rakefile +18 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/event.rb +29 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/native/flags.rb +78 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/native.rb +45 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/notifier.rb +149 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/version.rb +3 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange/watcher.rb +99 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/lib/rb-fchange.rb +14 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/rb-fchange.gemspec +34 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/fixtures/folder1/file1.txt +0 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/fixtures/folder1/folder2/file2.txt +0 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/rb-fchange/fchange_spec.rb +119 -0
- data/vendor/bundle/gems/guard-1.0.1/lib/vendor/windows/spec/spec_helper.rb +21 -0
- data/vendor/bundle/gems/guard-1.0.1/man/guard.1 +96 -0
- data/vendor/bundle/gems/guard-1.0.1/man/guard.1.html +181 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/LICENSE +20 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/README.md +194 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/formatter.rb +49 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/formatters/notification_rspec.rb +13 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/formatters/notification_spec.rb +13 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/inspector.rb +72 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/runner.rb +204 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/templates/Guardfile +16 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec/version.rb +5 -0
- data/vendor/bundle/gems/guard-rspec-0.7.0/lib/guard/rspec.rb +77 -0
- data/vendor/bundle/gems/haml-3.1.4/.yardopts +11 -0
- data/vendor/bundle/gems/haml-3.1.4/CONTRIBUTING +3 -0
- data/vendor/bundle/gems/haml-3.1.4/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/haml-3.1.4/README.md +133 -0
- data/vendor/bundle/gems/haml-3.1.4/REVISION +1 -0
- data/vendor/bundle/gems/haml-3.1.4/Rakefile +419 -0
- data/vendor/bundle/gems/haml-3.1.4/VERSION +1 -0
- data/vendor/bundle/gems/haml-3.1.4/VERSION_NAME +1 -0
- data/vendor/bundle/gems/haml-3.1.4/bin/haml +9 -0
- data/vendor/bundle/gems/haml-3.1.4/bin/html2haml +7 -0
- data/vendor/bundle/gems/haml-3.1.4/extra/update_watch.rb +13 -0
- data/vendor/bundle/gems/haml-3.1.4/init.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/buffer.rb +297 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/compiler.rb +452 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/engine.rb +312 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/error.rb +22 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/exec.rb +362 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/filters.rb +385 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers/action_view_extensions.rb +57 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers/action_view_mods.rb +258 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers/xss_mods.rb +165 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/helpers.rb +608 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/html/erb.rb +141 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/html.rb +412 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/parser.rb +711 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/railtie.rb +19 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/root.rb +7 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/shared.rb +78 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/template/options.rb +16 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/template/patch.rb +58 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/template/plugin.rb +123 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/template.rb +99 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/util.rb +842 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml/version.rb +109 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/haml.rb +47 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/sass/plugin.rb +10 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/sass/rails2_shim.rb +9 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/sass/rails3_shim.rb +16 -0
- data/vendor/bundle/gems/haml-3.1.4/lib/sass.rb +8 -0
- data/vendor/bundle/gems/haml-3.1.4/rails/init.rb +1 -0
- data/vendor/bundle/gems/haml-3.1.4/test/benchmark.rb +91 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.0.x +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.0.x.lock +38 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.1.x +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.1.x.lock +38 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.2.x +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.2.x.lock +38 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.3.x +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-2.3.x.lock +40 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.0.x +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.0.x.lock +85 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.1.x +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-3.1.x.lock +98 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-xss-2.3.x +9 -0
- data/vendor/bundle/gems/haml-3.1.4/test/gemfiles/Gemfile.rails-xss-2.3.x.lock +42 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/engine_test.rb +1944 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/_av_partial_1.erb +12 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/_av_partial_2.erb +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/action_view.erb +62 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/erb/standard.erb +55 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/helper_test.rb +454 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/html2haml/erb_tests.rb +440 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/html2haml_test.rb +336 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/markaby/standard.mab +52 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/mocks/article.rb +6 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/content_for_layout.xhtml +12 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/eval_suppressed.xhtml +9 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/filters.xhtml +62 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/helpers.xhtml +70 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/helpful.xhtml +10 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/just_stuff.xhtml +70 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/list.xhtml +12 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/original_engine.xhtml +20 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/partial_layout.xhtml +5 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/partials.xhtml +21 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/render_layout.xhtml +3 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/silent_script.xhtml +74 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/standard.xhtml +162 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/tag_parsing.xhtml +23 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/very_basic.xhtml +5 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/results/whitespace_handling.xhtml +89 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/README.md +97 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/lua_haml_spec.lua +30 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/ruby_haml_test.rb +19 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/spec/tests.json +534 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/spec_test.rb +44 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/template_test.rb +435 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_1.haml +9 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_1_ugly.haml +9 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_2.haml +5 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_av_partial_2_ugly.haml +5 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_layout.erb +3 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_layout_for_partial.haml +3 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_partial.haml +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/_text_area.haml +3 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/action_view.haml +47 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/action_view_ugly.haml +47 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/breakage.haml +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/content_for_layout.haml +8 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/eval_suppressed.haml +11 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/filters.haml +66 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/helpers.haml +55 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/helpful.haml +11 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/just_stuff.haml +85 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/list.haml +12 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/nuke_inner_whitespace.haml +32 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/nuke_outer_whitespace.haml +144 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/original_engine.haml +17 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/partial_layout.haml +10 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/partialize.haml +1 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/partials.haml +12 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/render_layout.haml +2 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/silent_script.haml +40 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/standard.haml +43 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/standard_ugly.haml +43 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/tag_parsing.haml +21 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/very_basic.haml +4 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/templates/whitespace_handling.haml +87 -0
- data/vendor/bundle/gems/haml-3.1.4/test/haml/util_test.rb +300 -0
- data/vendor/bundle/gems/haml-3.1.4/test/linked_rails.rb +42 -0
- data/vendor/bundle/gems/haml-3.1.4/test/test_helper.rb +75 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/CONTRIBUTING +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/README.md +201 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/Rakefile +339 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/TODO +39 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/VERSION +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/VERSION_NAME +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/bin/sass +8 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/bin/sass-convert +7 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/bin/scss +8 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/FAQ.md +35 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/INDENTED_SYNTAX.md +210 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/SASS_CHANGELOG.md +2327 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/SASS_REFERENCE.md +1965 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/doc-src/SCSS_FOR_SASS_USERS.md +155 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/ext/extconf.rb +10 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/extra/update_watch.rb +13 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/init.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/base.rb +86 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/chain.rb +33 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/filesystem.rb +60 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/memory.rb +47 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores/null.rb +25 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/cache_stores.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/callbacks.rb +66 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/css.rb +295 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/engine.rb +878 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/environment.rb +166 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/error.rb +201 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/exec.rb +672 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/importers/base.rb +139 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/importers/filesystem.rb +149 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/importers.rb +22 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/less.rb +382 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/logger/base.rb +32 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/logger/log_level.rb +49 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/logger.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/compiler.rb +383 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/configuration.rb +123 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/generic.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/merb.rb +48 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/rack.rb +60 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/rails.rb +47 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin/staleness_checker.rb +173 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/plugin.rb +132 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/railtie.rb +9 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/repl.rb +58 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/root.rb +7 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/bool.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/color.rb +480 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/css_lexer.rb +29 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/css_parser.rb +31 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/funcall.rb +175 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/functions.rb +1386 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/interpolation.rb +79 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/lexer.rb +339 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/list.rb +83 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/literal.rb +250 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/node.rb +99 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/number.rb +452 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/operation.rb +99 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/parser.rb +474 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/string.rb +51 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/string_interpolation.rb +103 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/unary_operation.rb +64 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script/variable.rb +59 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/script.rb +40 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/css_parser.rb +46 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/parser.rb +960 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/rx.rb +128 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/sass_parser.rb +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/script_lexer.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/script_parser.rb +25 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss/static_parser.rb +40 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/scss.rb +17 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/abstract_sequence.rb +62 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/comma_sequence.rb +81 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/sequence.rb +233 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/simple.rb +113 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector/simple_sequence.rb +134 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/selector.rb +361 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/shared.rb +78 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/charset_node.rb +22 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/comment_node.rb +90 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/debug_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/directive_node.rb +23 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/each_node.rb +24 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/extend_node.rb +29 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/for_node.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/function_node.rb +27 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/if_node.rb +52 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/import_node.rb +68 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/media_node.rb +32 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/mixin_def_node.rb +27 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/mixin_node.rb +32 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/node.rb +201 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/prop_node.rb +148 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/return_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/root_node.rb +28 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/rule_node.rb +136 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/variable_node.rb +30 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/base.rb +75 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/check_nesting.rb +133 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/convert.rb +260 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/cssize.rb +175 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/deep_copy.rb +87 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/perform.rb +332 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/set_options.rb +97 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/visitors/to_css.rb +210 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/warn_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/tree/while_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/util/subset_map.rb +101 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/util.rb +721 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass/version.rb +112 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/lib/sass.rb +73 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/rails/init.rb +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/sass.gemspec +33 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/Gemfile +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/cache_test.rb +89 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/callbacks_test.rb +61 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/conversion_test.rb +1199 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/css2sass_test.rb +373 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/data/hsl-rgb.txt +319 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/engine_test.rb +2567 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/extend_test.rb +1348 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/functions_test.rb +1038 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/importer_test.rb +192 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/less_conversion_test.rb +653 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/logger_test.rb +58 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/mock_importer.rb +49 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_results/more1.css +9 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_results/more1_with_line_comments.css +26 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_results/more_import.css +29 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_templates/_more_partial.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_templates/more1.sass +23 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/more_templates/more_import.sass +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/plugin_test.rb +472 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/alt.css +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/basic.css +9 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/compact.css +5 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/complex.css +86 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/compressed.css +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/expanded.css +19 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/if.css +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import.css +31 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import_charset.css +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import_charset_1_8.css +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/import_charset_ibm866.css +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/line_numbers.css +49 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/mixins.css +95 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/multiline.css +24 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/nested.css +22 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/options.css +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/parent_ref.css +13 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/script.css +16 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/scss_import.css +31 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/scss_importee.css +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/subdir/subdir.css +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/units.css +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/warn.css +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/results/warn_imported.css +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/script_conversion_test.rb +285 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/script_test.rb +514 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/css_test.rb +922 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/rx_test.rb +156 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/scss_test.rb +1273 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/scss/test_helper.rb +37 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/_imported_charset_ibm866.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/_imported_charset_utf8.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/_partial.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/alt.sass +16 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/basic.sass +23 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork1.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork2.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork3.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork4.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/bork5.sass +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/compact.sass +17 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/complex.sass +305 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/compressed.sass +15 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/expanded.sass +17 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/if.sass +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import.sass +12 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import_charset.sass +7 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import_charset_1_8.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/import_charset_ibm866.sass +9 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/importee.less +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/importee.sass +19 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/line_numbers.sass +13 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/mixin_bork.sass +5 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/mixins.sass +76 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/multiline.sass +20 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested.sass +25 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork1.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork2.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork3.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork4.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_bork5.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_import.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/nested_mixin_bork.sass +6 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/options.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/parent_ref.sass +25 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/script.sass +101 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/scss_import.scss +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/scss_importee.scss +1 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/subdir/subdir.sass +6 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/units.sass +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/warn.sass +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/templates/warn_imported.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/test_helper.rb +8 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/util/subset_map_test.rb +91 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/sass/util_test.rb +266 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/test/test_helper.rb +69 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/Gemfile +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/LICENSE +20 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/README.markdown +83 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/Rakefile +11 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/example.rb +12 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/fssm.gemspec +24 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/fsevents.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/inotify.rb +26 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/polling.rb +25 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/rbfsevent.rb +42 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +131 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/monitor.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/path.rb +94 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/pathname.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/state/directory.rb +75 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/state/file.rb +24 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/support.rb +92 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/tree.rb +176 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm/version.rb +3 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/lib/fssm.rb +37 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-cache.rb +40 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-fssm-pathname.html +1231 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-pathname-rubinius.rb +35 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-pathname.rb +68 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof-plain-pathname.html +988 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/profile/prof.html +2379 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/count_down_latch.rb +151 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/monitor_spec.rb +202 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/path_spec.rb +96 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/duck/quack.txt +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/file.css +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/file.rb +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/file.yml +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/root/moo/cow.txt +0 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/vendor/fssm/spec/spec_helper.rb +14 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/callbacks.rb +29 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/default/fulldoc/html/css/common.sass +26 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/default/layout/html/footer.erb +12 -0
- data/vendor/bundle/gems/haml-3.1.4/vendor/sass/yard/inherited_hash.rb +41 -0
- data/vendor/bundle/gems/i18n-0.6.0/CHANGELOG.textile +152 -0
- data/vendor/bundle/gems/i18n-0.6.0/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/i18n-0.6.0/README.textile +103 -0
- data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.no-rails +5 -0
- data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.no-rails.lock +14 -0
- data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-2.3.x +9 -0
- data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-2.3.x.lock +23 -0
- data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-3.x +9 -0
- data/vendor/bundle/gems/i18n-0.6.0/ci/Gemfile.rails-3.x.lock +23 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/base.rb +175 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/cache.rb +96 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/cascade.rb +53 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/chain.rb +78 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/fallbacks.rb +68 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/flatten.rb +113 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/gettext.rb +71 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/interpolation_compiler.rb +121 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/key_value.rb +101 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/memoize.rb +46 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/metadata.rb +65 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/pluralization.rb +55 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/simple.rb +87 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend/transliterator.rb +98 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/backend.rb +18 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/config.rb +86 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb +29 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/string/interpolate.rb +105 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/exceptions.rb +106 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/gettext/helpers.rb +64 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/gettext/po_parser.rb +329 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/gettext.rb +25 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/interpolate/ruby.rb +31 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/fallbacks.rb +96 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag/parents.rb +22 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag/rfc4646.rb +74 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag/simple.rb +39 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale/tag.rb +28 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/locale.rb +6 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/basics.rb +54 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/defaults.rb +40 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/interpolation.rb +133 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/link.rb +56 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/date.rb +84 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/date_time.rb +77 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/procs.rb +116 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization/time.rb +76 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/localization.rb +19 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/lookup.rb +74 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/pluralization.rb +35 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests/procs.rb +55 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/tests.rb +12 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n/version.rb +3 -0
- data/vendor/bundle/gems/i18n-0.6.0/lib/i18n.rb +331 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/all.rb +8 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/all_features_test.rb +58 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/cascade_test.rb +28 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/chain_test.rb +24 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/fallbacks_test.rb +30 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/key_value_test.rb +28 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/memoize_test.rb +60 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/pluralization_test.rb +30 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/api/simple_test.rb +28 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/cache_test.rb +85 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/cascade_test.rb +85 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/chain_test.rb +72 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/exceptions_test.rb +30 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/fallbacks_test.rb +120 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/interpolation_compiler_test.rb +102 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/key_value_test.rb +46 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/memoize_test.rb +47 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/metadata_test.rb +67 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/pluralization_test.rb +44 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/simple_test.rb +83 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/backend/transliterator_test.rb +81 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/core_ext/hash_test.rb +30 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/core_ext/string/interpolate_test.rb +99 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/gettext/api_test.rb +206 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/gettext/backend_test.rb +93 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/i18n/exceptions_test.rb +116 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/i18n/interpolate_test.rb +61 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/i18n/load_path_test.rb +26 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/i18n_test.rb +236 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/locale/fallbacks_test.rb +124 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/locale/tag/rfc4646_test.rb +142 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/locale/tag/simple_test.rb +32 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/run_all.rb +21 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/de.po +72 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/en.rb +3 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/en.yml +3 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/invalid/empty.yml +1 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/test_data/locales/plurals.rb +113 -0
- data/vendor/bundle/gems/i18n-0.6.0/test/test_helper.rb +56 -0
- data/vendor/bundle/gems/mongo-1.6.1/LICENSE.txt +190 -0
- data/vendor/bundle/gems/mongo-1.6.1/README.md +333 -0
- data/vendor/bundle/gems/mongo-1.6.1/Rakefile +317 -0
- data/vendor/bundle/gems/mongo-1.6.1/bin/mongo_console +21 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/CREDITS.md +123 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/FAQ.md +116 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/GridFS.md +158 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/HISTORY.md +352 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/READ_PREFERENCE.md +39 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/RELEASES.md +47 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/REPLICA_SETS.md +113 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/TAILABLE_CURSORS.md +51 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/TUTORIAL.md +247 -0
- data/vendor/bundle/gems/mongo-1.6.1/docs/WRITE_CONCERN.md +31 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/collection.rb +1002 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/connection.rb +639 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/cursor.rb +650 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/db.rb +642 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/exceptions.rb +84 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid.rb +109 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_ext.rb +57 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_file_system.rb +156 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_io.rb +485 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/gridfs/grid_io_fix.rb +38 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/networking.rb +364 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/repl_set_connection.rb +543 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/conversions.rb +89 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/core_ext.rb +105 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/logging.rb +58 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/node.rb +201 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/pool.rb +321 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/pool_manager.rb +305 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/server_version.rb +71 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/ssl_socket.rb +39 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/support.rb +90 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/tcp_socket.rb +6 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/util/uri_parser.rb +231 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo/version.rb +3 -0
- data/vendor/bundle/gems/mongo-1.6.1/lib/mongo.rb +83 -0
- data/vendor/bundle/gems/mongo-1.6.1/mongo.gemspec +34 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/1.4_features.rb +166 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/authentication_test.rb +76 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/autoreconnect_test.rb +41 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/fork_test.rb +30 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/repl_set_auth_test.rb +57 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/slave_connection_test.rb +36 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/auxillary/threaded_authentication_test.rb +101 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/binary_test.rb +13 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/bson_test.rb +658 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/byte_buffer_test.rb +208 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/hash_with_indifferent_access_test.rb +38 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/json_test.rb +17 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/object_id_test.rb +138 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/ordered_hash_test.rb +247 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/test_helper.rb +30 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/bson/timestamp_test.rb +46 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/collection_test.rb +1097 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/connection_test.rb +369 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/conversions_test.rb +119 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/cursor_fail_test.rb +75 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/cursor_message_test.rb +43 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/cursor_test.rb +544 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/db_api_test.rb +738 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/db_connection_test.rb +15 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/db_test.rb +332 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/grid_file_system_test.rb +271 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/grid_io_test.rb +209 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/grid_test.rb +258 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/load/thin/load.rb +21 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/load/unicorn/load.rb +23 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/pool_test.rb +57 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/basic_test.rb +112 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/complex_connect_test.rb +44 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/connect_test.rb +123 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/count_test.rb +43 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/insert_test.rb +52 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/pooled_insert_test.rb +57 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/query_test.rb +50 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/read_preference_test.rb +181 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/refresh_test.rb +154 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/refresh_with_threads_test.rb +64 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/replication_ack_test.rb +68 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/replica_sets/rs_test_helper.rb +39 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/safe_test.rb +68 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/support/hash_with_indifferent_access.rb +186 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/support/keys.rb +45 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/support_test.rb +18 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/test_helper.rb +110 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/threading/threading_with_large_pool_test.rb +90 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/threading_test.rb +95 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/tools/auth_repl_set_manager.rb +14 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/tools/repl_set_manager.rb +416 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/collection_test.rb +140 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/connection_test.rb +135 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/cursor_test.rb +130 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/db_test.rb +96 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/grid_test.rb +53 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/node_test.rb +73 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/pool_manager_test.rb +49 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/pool_test.rb +9 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/read_test.rb +115 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/unit/safe_test.rb +125 -0
- data/vendor/bundle/gems/mongo-1.6.1/test/uri_test.rb +111 -0
- data/vendor/bundle/gems/mongoid-2.4.7/CHANGELOG.md +999 -0
- data/vendor/bundle/gems/mongoid-2.4.7/LICENSE +20 -0
- data/vendor/bundle/gems/mongoid-2.4.7/README.md +62 -0
- data/vendor/bundle/gems/mongoid-2.4.7/Rakefile +49 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/bg.yml +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/de.yml +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/en-GB.yml +64 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/en.yml +64 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/es.yml +59 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/fr.yml +62 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/hi.yml +53 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/hu.yml +64 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/id.yml +62 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/it.yml +59 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/ja.yml +57 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/kr.yml +54 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/nl.yml +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/pl.yml +59 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/pt-BR.yml +60 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/pt.yml +60 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/ro.yml +66 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/ru.yml +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/sv.yml +60 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/vi.yml +62 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/config/locales/zh-CN.yml +53 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/modifiers.rb +275 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/embedded/many.rb +44 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/embedded/one.rb +43 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/embedded.rb +43 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths/root.rb +40 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic/paths.rb +3 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/atomic.rb +279 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/attributes/processing.rb +146 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/attributes.rb +220 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/callbacks.rb +136 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collection.rb +153 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections/master.rb +45 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections/operations.rb +44 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections/retry.rb +58 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/collections.rb +120 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/components.rb +99 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/database.rb +181 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/environment.rb +41 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/options.rb +74 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config/replset_database.rb +80 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/config.rb +308 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts/enumerable/sort.rb +43 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts/enumerable.rb +313 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts/mongo.rb +485 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/contexts.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/copyable.rb +47 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criteria.rb +421 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/builder.rb +34 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/complex.rb +84 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/creational.rb +34 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/exclusion.rb +108 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/inclusion.rb +290 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/inspection.rb +22 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/optional.rb +259 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/scoping.rb +83 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/criterion/selector.rb +177 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/cursor.rb +88 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/default_scope.rb +36 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/dirty.rb +287 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/document.rb +335 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/callback.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/document_not_found.rb +28 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/eager_load.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_collection.rb +18 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_database.rb +19 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_field.rb +18 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_find.rb +19 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_options.rb +28 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_time.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/invalid_type.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/mixed_relations.rb +37 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/mongoid_error.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/no_environment.rb +19 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/scope_overwrite.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/unsaved_document.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/unsupported_version.rb +20 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors/validations.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/errors.rb +19 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/array/deep_copy.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/array/deletion.rb +29 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/false_class/equality.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/hash/criteria_helpers.rb +46 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/hash/deep_copy.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/hash/scoping.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/integer/checks.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/nil/collectionization.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/checks.rb +29 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/deep_copy.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/reflections.rb +48 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/substitutable.rb +15 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object/yoda.rb +44 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/object_id/conversions.rb +60 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/proc/scoping.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/string/checks.rb +36 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/string/conversions.rb +22 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/string/inflections.rb +118 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/symbol/checks.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/symbol/inflections.rb +67 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions/true_class/equality.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extensions.rb +88 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/extras.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/factory.rb +46 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/array.rb +76 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/big_decimal.rb +57 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/bignum.rb +10 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/binary.rb +11 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/boolean.rb +58 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/date.rb +51 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/date_time.rb +28 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/false_class.rb +10 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/fixnum.rb +10 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/float.rb +47 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/foreign_keys/array.rb +88 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/foreign_keys/object.rb +56 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/hash.rb +11 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/integer.rb +59 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/localized.rb +62 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/nil_class.rb +53 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/object.rb +11 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/object_id.rb +46 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/range.rb +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/set.rb +57 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/string.rb +42 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/symbol.rb +43 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/time.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/time_with_zone.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/timekeeping.rb +122 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/internal/true_class.rb +10 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/mappings.rb +42 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields/serializable.rb +270 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/fields.rb +525 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/finders.rb +152 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/hierarchy.rb +122 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/identity.rb +92 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/identity_map.rb +120 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/indexes.rb +54 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/inspection.rb +54 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/javascript/functions.yml +63 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/javascript.rb +20 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/json.rb +16 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/keys.rb +144 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/logger.rb +45 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/all.rb +28 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/and.rb +30 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/default.rb +70 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/exists.rb +23 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/gt.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/gte.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/in.rb +28 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/lt.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/lte.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/ne.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/nin.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/or.rb +33 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/size.rb +21 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers/strategies.rb +97 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/matchers.rb +32 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/multi_database.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/multi_parameter_attributes.rb +106 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/named_scope.rb +165 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/nested_attributes.rb +54 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/observer.rb +181 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/paranoia.rb +159 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/add_to_set.rb +51 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/bit.rb +37 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/inc.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/operation.rb +85 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/pop.rb +34 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/pull.rb +34 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/pull_all.rb +34 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/push.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/push_all.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/rename.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/sets.rb +30 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic/unset.rb +28 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/atomic.rb +226 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/deletion.rb +32 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/insertion.rb +42 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/modification.rb +37 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/embedded/insert.rb +42 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/embedded/remove.rb +40 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/insert.rb +34 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/remove.rb +33 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations/update.rb +55 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence/operations.rb +211 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/persistence.rb +271 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/railtie.rb +144 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/railties/database.rake +182 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/railties/document.rb +12 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/accessors.rb +138 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/auto_save.rb +38 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/binding.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/embedded/in.rb +69 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/embedded/many.rb +93 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/embedded/one.rb +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/in.rb +96 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/many.rb +54 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/many_to_many.rb +51 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings/referenced/one.rb +58 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/bindings.rb +9 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builder.rb +57 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/embedded/in.rb +29 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/embedded/many.rb +36 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/embedded/one.rb +30 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/nested_attributes/many.rb +112 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/nested_attributes/one.rb +135 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/in.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/many.rb +27 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/many_to_many.rb +38 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders/referenced/one.rb +26 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/builders.rb +101 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading/delete.rb +36 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading/destroy.rb +43 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading/nullify.rb +35 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cascading.rb +55 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/constraint.rb +42 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/conversions.rb +35 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/cyclic.rb +107 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/operation.rb +63 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/pull.rb +65 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/push_all.rb +59 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/set.rb +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic/unset.rb +41 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/atomic.rb +89 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/in.rb +220 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/many.rb +655 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/embedded/one.rb +206 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/macros.rb +312 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/many.rb +148 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/metadata.rb +932 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/nested_builder.rb +76 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/one.rb +36 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/options.rb +47 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/polymorphic.rb +40 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/proxy.rb +146 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/batch/insert.rb +57 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/batch.rb +73 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/in.rb +262 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/many.rb +700 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/many_to_many.rb +385 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/referenced/one.rb +276 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/reflections.rb +62 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/synchronization.rb +170 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/targets/enumerable.rb +378 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations/targets.rb +2 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/relations.rb +144 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/reloading.rb +91 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/safety.rb +105 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/scope.rb +31 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/serialization.rb +144 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/sharding.rb +61 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/state.rb +97 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/threaded/lifecycle.rb +192 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/threaded.rb +318 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps/created.rb +24 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps/timeless.rb +50 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps/updated.rb +36 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/timestamps.rb +15 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/associated.rb +46 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/format.rb +40 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/presence.rb +40 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations/uniqueness.rb +207 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/validations.rb +177 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/version.rb +4 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid/versioning.rb +198 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/mongoid.rb +148 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rack/mongoid/middleware/identity_map.rb +38 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rack/mongoid.rb +2 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/config/templates/mongoid.yml +20 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/model/model_generator.rb +24 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/observer/observer_generator.rb +17 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid/observer/templates/observer.rb.tt +4 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/generators/mongoid_generator.rb +70 -0
- data/vendor/bundle/gems/mongoid-2.4.7/lib/rails/mongoid.rb +103 -0
- data/vendor/bundle/gems/multi_json-1.2.0/.document +5 -0
- data/vendor/bundle/gems/multi_json-1.2.0/.travis.yml +9 -0
- data/vendor/bundle/gems/multi_json-1.2.0/Gemfile +7 -0
- data/vendor/bundle/gems/multi_json-1.2.0/LICENSE.md +20 -0
- data/vendor/bundle/gems/multi_json-1.2.0/README.md +117 -0
- data/vendor/bundle/gems/multi_json-1.2.0/Rakefile +25 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/json_common.rb +27 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/json_gem.rb +12 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/json_pure.rb +12 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/nsjsonserialization.rb +34 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/oj.rb +22 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/ok_json.rb +48 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/engines/yajl.rb +18 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/vendor/ok_json.rb +587 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json/version.rb +3 -0
- data/vendor/bundle/gems/multi_json-1.2.0/lib/multi_json.rb +90 -0
- data/vendor/bundle/gems/multi_json-1.2.0/multi_json.gemspec +22 -0
- data/vendor/bundle/gems/multi_json-1.2.0/spec/engine_shared_example.rb +115 -0
- data/vendor/bundle/gems/multi_json-1.2.0/spec/helper.rb +30 -0
- data/vendor/bundle/gems/multi_json-1.2.0/spec/multi_json_spec.rb +72 -0
- data/vendor/bundle/gems/rack-1.4.1/COPYING +18 -0
- data/vendor/bundle/gems/rack-1.4.1/KNOWN-ISSUES +21 -0
- data/vendor/bundle/gems/rack-1.4.1/README.rdoc +498 -0
- data/vendor/bundle/gems/rack-1.4.1/Rakefile +115 -0
- data/vendor/bundle/gems/rack-1.4.1/SPEC +171 -0
- data/vendor/bundle/gems/rack-1.4.1/bin/rackup +4 -0
- data/vendor/bundle/gems/rack-1.4.1/contrib/rack_logo.svg +111 -0
- data/vendor/bundle/gems/rack-1.4.1/example/lobster.ru +4 -0
- data/vendor/bundle/gems/rack-1.4.1/example/protectedlobster.rb +14 -0
- data/vendor/bundle/gems/rack-1.4.1/example/protectedlobster.ru +8 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/abstract/handler.rb +37 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/abstract/request.rb +43 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/basic.rb +58 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/md5.rb +129 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/nonce.rb +51 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/params.rb +53 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/request.rb +41 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/backports/uri/common_18.rb +70 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/backports/uri/common_192.rb +55 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/body_proxy.rb +29 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/builder.rb +145 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/cascade.rb +41 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/chunked.rb +58 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/commonlogger.rb +51 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/conditionalget.rb +67 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/config.rb +15 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/content_length.rb +33 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/content_type.rb +29 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/deflater.rb +99 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/directory.rb +161 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/etag.rb +61 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/file.rb +142 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/cgi.rb +61 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/evented_mongrel.rb +8 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/fastcgi.rb +98 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/lsws.rb +61 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/mongrel.rb +100 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/scgi.rb +67 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/swiftiplied_mongrel.rb +8 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/thin.rb +24 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler/webrick.rb +80 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/handler.rb +94 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/head.rb +19 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/lint.rb +567 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/lobster.rb +65 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/lock.rb +25 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/logger.rb +18 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/methodoverride.rb +33 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/mime.rb +648 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/mock.rb +189 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/generator.rb +93 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/parser.rb +167 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/uploaded_file.rb +34 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart.rb +34 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/nulllogger.rb +18 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/recursive.rb +61 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/reloader.rb +109 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/request.rb +341 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/response.rb +155 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/rewindable_input.rb +104 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/runtime.rb +27 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/sendfile.rb +141 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/server.rb +323 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb +372 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/cookie.rb +161 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/memcache.rb +93 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/pool.rb +79 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/showexceptions.rb +378 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/showstatus.rb +113 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/static.rb +71 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/urlmap.rb +75 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/utils.rb +547 -0
- data/vendor/bundle/gems/rack-1.4.1/lib/rack.rb +83 -0
- data/vendor/bundle/gems/rack-1.4.1/rack.gemspec +37 -0
- data/vendor/bundle/gems/rack-1.4.1/test/builder/anything.rb +5 -0
- data/vendor/bundle/gems/rack-1.4.1/test/builder/comment.ru +4 -0
- data/vendor/bundle/gems/rack-1.4.1/test/builder/end.ru +5 -0
- data/vendor/bundle/gems/rack-1.4.1/test/builder/options.ru +2 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/lighttpd.conf +26 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/rackup_stub.rb +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/sample_rackup.ru +5 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/test +9 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/test+directory/test+file +1 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/test.fcgi +8 -0
- data/vendor/bundle/gems/rack-1.4.1/test/cgi/test.ru +5 -0
- data/vendor/bundle/gems/rack-1.4.1/test/gemloader.rb +10 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/bad_robots +259 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/binary +0 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/content_type_and_no_filename +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/empty +10 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/fail_16384_nofile +814 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/file1.txt +1 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_and_modification_param +7 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_escaped_quotes +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_escaped_quotes_and_modification_param +7 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_percent_escaped_quotes +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_percentages +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_percentages2 +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_percentages3 +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/filename_with_unescaped_quotes +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/ie +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/mixed_files +21 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/nested +10 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/none +9 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/semicolon +6 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/text +15 -0
- data/vendor/bundle/gems/rack-1.4.1/test/multipart/webkit +32 -0
- data/vendor/bundle/gems/rack-1.4.1/test/rackup/config.ru +31 -0
- data/vendor/bundle/gems/rack-1.4.1/test/registering_handler/rack/handler/registering_myself.rb +8 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_auth_basic.rb +73 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_auth_digest.rb +245 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_body_proxy.rb +65 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_builder.rb +201 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_cascade.rb +53 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_cgi.rb +102 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_chunked.rb +87 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_commonlogger.rb +57 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_conditionalget.rb +102 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_config.rb +23 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_content_length.rb +73 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_content_type.rb +35 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_deflater.rb +169 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_directory.rb +69 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_etag.rb +82 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_fastcgi.rb +107 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_file.rb +183 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_handler.rb +59 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_head.rb +30 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_lint.rb +515 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_lobster.rb +43 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_lock.rb +142 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_logger.rb +28 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_methodoverride.rb +73 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_mock.rb +264 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_mongrel.rb +182 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_multipart.rb +363 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_nulllogger.rb +12 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_recursive.rb +69 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_request.rb +938 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_response.rb +283 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_rewindable_input.rb +118 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_runtime.rb +39 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_sendfile.rb +86 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_server.rb +74 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_abstract_id.rb +43 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_cookie.rb +294 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_memcache.rb +319 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_pool.rb +206 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_showexceptions.rb +87 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_showstatus.rb +79 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_static.rb +69 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_thin.rb +86 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_urlmap.rb +213 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_utils.rb +524 -0
- data/vendor/bundle/gems/rack-1.4.1/test/spec_webrick.rb +143 -0
- data/vendor/bundle/gems/rack-1.4.1/test/static/index.html +1 -0
- data/vendor/bundle/gems/rack-1.4.1/test/testrequest.rb +78 -0
- data/vendor/bundle/gems/rack-1.4.1/test/unregistered_handler/rack/handler/unregistered.rb +7 -0
- data/vendor/bundle/gems/rack-1.4.1/test/unregistered_handler/rack/handler/unregistered_long_one.rb +7 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/License +20 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/README.md +102 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/Rakefile +37 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/authenticity_token.rb +24 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/base.rb +97 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/escaped_params.rb +87 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/form_token.rb +23 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/frame_options.rb +26 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/ip_spoofing.rb +23 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/json_csrf.rb +28 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/path_traversal.rb +36 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/remote_referrer.rb +23 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/remote_token.rb +22 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/session_hijacking.rb +35 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/version.rb +16 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection/xss_header.rb +27 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack/protection.rb +34 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/lib/rack-protection.rb +1 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/rack-protection.gemspec +70 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/authenticity_token_spec.rb +33 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/escaped_params_spec.rb +34 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/form_token_spec.rb +33 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/frame_options_spec.rb +24 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/ip_spoofing_spec.rb +35 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/json_csrf_spec.rb +32 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/path_traversal_spec.rb +28 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/protection_spec.rb +20 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/remote_referrer_spec.rb +31 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/remote_token_spec.rb +42 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/session_hijacking_spec.rb +40 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/spec_helper.rb +157 -0
- data/vendor/bundle/gems/rack-protection-1.2.0/spec/xss_header_spec.rb +24 -0
- data/vendor/bundle/gems/rspec-2.9.0/License.txt +24 -0
- data/vendor/bundle/gems/rspec-2.9.0/README.markdown +47 -0
- data/vendor/bundle/gems/rspec-2.9.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/gems/rspec-2.9.0/lib/rspec.rb +4 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/.document +5 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/.yardopts +3 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/Changelog.md +493 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/License.txt +24 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/README.md +228 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/exe/autospec +13 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/exe/rspec +25 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/Autotest.md +38 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/README.md +17 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/Upgrade.md +364 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/README.md +28 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/example_name_option.feature +86 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/exit_status.feature +83 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/format_option.feature +81 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/init.feature +18 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/line_number_appended_to_path.feature +140 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/line_number_option.feature +58 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/order.feature +29 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/pattern_option.feature +31 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/rake_task.feature +68 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/ruby.feature +22 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/command_line/tag.feature +91 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/alias_example_to.feature +48 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/custom_settings.feature +84 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/default_path.feature +38 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/fail_fast.feature +77 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/configuration/read_options_from_file.feature +87 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/example_groups/basic_structure.feature +55 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/example_groups/shared_context.feature +74 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/example_groups/shared_examples.feature +204 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/expectation_framework_integration/configure_expectation_framework.feature +73 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/exclusion_filters.feature +139 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/if_and_unless.feature +168 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/inclusion_filters.feature +105 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/filtering/run_all_when_everything_filtered.feature +46 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/formatters/custom_formatter.feature +36 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/formatters/text_formatter.feature +46 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/helper_methods/arbitrary_methods.feature +40 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/helper_methods/let.feature +50 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/helper_methods/modules.feature +149 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/hooks/around_hooks.feature +343 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/hooks/before_and_after_hooks.feature +423 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/hooks/filtering.feature +234 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/metadata/current_example.feature +17 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/metadata/described_class.feature +17 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/metadata/user_defined.feature +113 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_any_framework.feature +106 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_flexmock.feature +96 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_mocha.feature +97 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_rr.feature +98 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/mock_framework_integration/use_rspec.feature +97 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/pending/pending_examples.feature +229 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/spec_files/arbitrary_file_suffix.feature +13 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/step_definitions/additional_cli_steps.rb +30 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/attribute_of_subject.feature +124 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/explicit_subject.feature +82 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/implicit_receiver.feature +29 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/subject/implicit_subject.feature +63 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/features/support/env.rb +12 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/autotest/discover.rb +1 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/autotest/rspec2.rb +73 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/autorun.rb +2 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/backward_compatibility.rb +65 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/command_line.rb +36 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/configuration.rb +909 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/configuration_options.rb +124 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/deprecation.rb +51 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/drb_command_line.rb +23 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/drb_options.rb +85 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/dsl.rb +24 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/example.rb +247 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/example_group.rb +443 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/instance_eval_with_args.rb +44 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/kernel.rb +9 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/module_eval_with_args.rb +38 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions/ordered.rb +21 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/extensions.rb +4 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/filter_manager.rb +203 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/base_formatter.rb +174 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/base_text_formatter.rb +194 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/documentation_formatter.rb +67 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/helpers.rb +39 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/html_formatter.rb +464 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/progress_formatter.rb +32 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/snippet_extractor.rb +58 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/hooks.rb +417 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/let.rb +103 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/load_path.rb +3 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/metadata.rb +268 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/metadata_hash_builder.rb +97 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_flexmock.rb +27 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_mocha.rb +23 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_rr.rb +27 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/mocking/with_rspec.rb +23 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/option_parser.rb +180 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/pending.rb +101 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/project_initializer.rb +81 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/rake_task.rb +179 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/reporter.rb +102 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/ruby_project.rb +44 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/runner.rb +76 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/shared_context.rb +49 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/shared_example_group.rb +72 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/subject.rb +183 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/version.rb +7 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core/world.rb +132 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/lib/rspec/core.rb +107 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/autotest/discover_spec.rb +19 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/autotest/failed_results_re_spec.rb +45 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/autotest/rspec_spec.rb +123 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/command_line/order_spec.rb +137 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/command_line_spec.rb +166 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/configuration_options_spec.rb +355 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/configuration_spec.rb +1156 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/deprecations_spec.rb +66 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/drb_command_line_spec.rb +107 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/drb_options_spec.rb +179 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/example_group_spec.rb +1090 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/example_spec.rb +302 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/filter_manager_spec.rb +256 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/base_formatter_spec.rb +80 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/base_text_formatter_spec.rb +344 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/documentation_formatter_spec.rb +88 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/helpers_spec.rb +66 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +410 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.8.7.html +409 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.9.2.html +416 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatted-1.9.3.html +416 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/html_formatter_spec.rb +82 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +410 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +409 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +416 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +416 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/formatters/text_mate_formatter_spec.rb +83 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/hooks_filtering_spec.rb +227 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/hooks_spec.rb +143 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/kernel_extensions_spec.rb +9 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/let_spec.rb +55 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/metadata_spec.rb +437 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/option_parser_spec.rb +165 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/pending_example_spec.rb +219 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/project_initializer_spec.rb +130 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/rake_task_spec.rb +138 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/reporter_spec.rb +103 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/a_bar.rb +0 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/a_foo.rb +0 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/a_spec.rb +1 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/formatter_specs.rb +60 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/resources/utf8_encoded.rb +8 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/rspec_matchers_spec.rb +45 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/ruby_project_spec.rb +24 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/runner_spec.rb +82 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/shared_context_spec.rb +67 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/shared_example_group_spec.rb +84 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/subject_spec.rb +228 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core/world_spec.rb +144 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/rspec/core_spec.rb +25 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/spec_helper.rb +98 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/config_options_helper.rb +27 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/matchers.rb +65 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/shared_example_groups.rb +41 -0
- data/vendor/bundle/gems/rspec-core-2.9.0/spec/support/spec_files.rb +44 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/.document +5 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/.yardopts +3 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/Changelog.md +176 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/License.txt +23 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/README.md +147 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/README.markdown +49 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/Upgrade.md +53 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/README.md +90 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/be.feature +135 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/be_within.feature +43 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/cover.feature +45 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/equality.feature +145 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/exist.feature +43 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/expect_change.feature +59 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/expect_error.feature +138 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/have.feature +103 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/include.feature +121 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/match.feature +50 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/operators.feature +221 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/predicates.feature +128 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/respond_to.feature +78 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/satisfy.feature +31 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/throw_symbol.feature +85 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/built_in_matchers/types.feature +114 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/access_running_example.feature +53 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_diffable_matcher.feature +27 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_matcher.feature +340 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/customized_message.feature +22 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/diffing.feature +85 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/implicit_docstrings.feature +52 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/step_definitions/additional_cli_steps.rb +22 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/support/env.rb +5 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/features/test_frameworks/test_unit.feature +46 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/deprecation.rb +38 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/differ.rb +76 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/errors.rb +9 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions/array.rb +9 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions/kernel.rb +26 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions/object.rb +39 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/extensions.rb +3 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb +54 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/handler.rb +48 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations.rb +45 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/be_close.rb +9 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/block_aliases.rb +20 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/base_matcher.rb +58 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be.rb +183 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +13 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +13 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/be_within.rb +39 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/change.rb +132 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/cover.rb +22 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/eq.rb +26 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/eql.rb +25 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/equal.rb +48 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/exist.rb +28 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/has.rb +47 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/have.rb +107 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/include.rb +52 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/match.rb +13 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/match_array.rb +52 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/raise_error.rb +96 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/respond_to.rb +73 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/satisfy.rb +29 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +93 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/built_in.rb +33 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/compatibility.rb +14 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/dsl.rb +23 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/matcher.rb +298 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/method_missing.rb +12 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/operator_matcher.rb +84 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers/pretty.rb +60 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/matchers.rb +572 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec-expectations.rb +1 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/differ_spec.rb +144 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/expectations/handler_spec.rb +206 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/base_matcher_spec.rb +52 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_close_spec.rb +22 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_spec.rb +452 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/be_within_spec.rb +64 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/change_spec.rb +522 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/cover_spec.rb +65 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/description_generation_spec.rb +176 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/dsl_spec.rb +41 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/eq_spec.rb +38 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/eql_spec.rb +37 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/equal_spec.rb +57 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/exist_spec.rb +104 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/has_spec.rb +113 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/have_spec.rb +458 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/include_spec.rb +351 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/match_array_spec.rb +108 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/match_spec.rb +57 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/matcher_spec.rb +434 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/matchers_spec.rb +31 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/method_missing_spec.rb +24 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/operator_matcher_spec.rb +221 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/rspec/matchers/throw_symbol_spec.rb +111 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/spec_helper.rb +27 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/support/classes.rb +56 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/support/matchers.rb +22 -0
- data/vendor/bundle/gems/rspec-expectations-2.9.0/spec/support/ruby_version.rb +10 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/.document +5 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/.yardopts +7 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/Changelog.md +147 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/License.txt +23 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/README.md +257 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/README.markdown +67 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/Scope.md +17 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/Upgrade.md +22 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/README.md +27 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/explicit.feature +60 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/general_matchers.feature +85 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/argument_matchers/type_matchers.feature +25 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/README.md +58 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/any_instance.feature +21 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/expect_message.feature +94 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/receive_counts.feature +209 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/README.md +43 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/any_instance.feature +133 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/as_null_object.feature +35 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/simple_return_value.feature +64 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/stub_chain.feature +51 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/stub_implementation.feature +26 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/method_stubs/to_ary.feature +47 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/outside_rspec/configuration.feature +82 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/outside_rspec/standalone.feature +32 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/step_definitions/additional_cli_steps.rb +4 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/features/support/env.rb +6 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance/chain.rb +158 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance/message_chains.rb +60 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance/recorder.rb +192 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/any_instance.rb +45 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/argument_expectation.rb +52 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/argument_matchers.rb +230 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/error_generator.rb +107 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/errors.rb +12 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/example_methods.rb +54 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/extensions/instance_exec.rb +34 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/extensions/marshal.rb +23 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/extensions/psych.rb +23 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/framework.rb +18 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/message_expectation.rb +506 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/method_double.rb +190 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/methods.rb +151 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/mock.rb +81 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/order_group.rb +40 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/proxy.rb +179 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/serialization.rb +34 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/space.rb +34 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/standalone.rb +3 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks/version.rb +7 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/rspec/mocks.rb +39 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/lib/spec/mocks.rb +2 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/any_instance_spec.rb +785 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/argument_expectation_spec.rb +34 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/at_least_spec.rb +103 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/at_most_spec.rb +99 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_10263_spec.rb +25 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/double_spec.rb +12 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +95 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/hash_excluding_matcher_spec.rb +67 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/mock_ordering_spec.rb +103 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/mock_space_spec.rb +58 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/mock_spec.rb +715 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/multiple_return_value_spec.rb +188 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +62 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/null_object_mock_spec.rb +78 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/partial_mock_spec.rb +156 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/precise_counts_spec.rb +58 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/serialization_spec.rb +110 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stash_spec.rb +27 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stub_chain_spec.rb +149 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stub_spec.rb +238 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +47 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/to_ary_spec.rb +40 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/rspec/mocks_spec.rb +51 -0
- data/vendor/bundle/gems/rspec-mocks-2.9.0/spec/spec_helper.rb +53 -0
- data/vendor/bundle/gems/sass-3.1.15/.yardopts +11 -0
- data/vendor/bundle/gems/sass-3.1.15/CONTRIBUTING +3 -0
- data/vendor/bundle/gems/sass-3.1.15/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/sass-3.1.15/README.md +201 -0
- data/vendor/bundle/gems/sass-3.1.15/REVISION +1 -0
- data/vendor/bundle/gems/sass-3.1.15/Rakefile +339 -0
- data/vendor/bundle/gems/sass-3.1.15/VERSION +1 -0
- data/vendor/bundle/gems/sass-3.1.15/VERSION_NAME +1 -0
- data/vendor/bundle/gems/sass-3.1.15/bin/sass +8 -0
- data/vendor/bundle/gems/sass-3.1.15/bin/sass-convert +7 -0
- data/vendor/bundle/gems/sass-3.1.15/bin/scss +8 -0
- data/vendor/bundle/gems/sass-3.1.15/extra/update_watch.rb +13 -0
- data/vendor/bundle/gems/sass-3.1.15/init.rb +18 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/base.rb +86 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/chain.rb +33 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/filesystem.rb +61 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/memory.rb +47 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores/null.rb +25 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/cache_stores.rb +15 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/callbacks.rb +66 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/css.rb +294 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/engine.rb +877 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/environment.rb +180 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/error.rb +201 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/exec.rb +682 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/importers/base.rb +139 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/importers/filesystem.rb +149 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/importers.rb +22 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/less.rb +382 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/logger/base.rb +32 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/logger/log_level.rb +49 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/logger.rb +15 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/compiler.rb +383 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/configuration.rb +123 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/generic.rb +15 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/merb.rb +48 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/rack.rb +60 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/rails.rb +47 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin/staleness_checker.rb +183 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/plugin.rb +132 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/railtie.rb +9 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/repl.rb +57 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/root.rb +7 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/bool.rb +18 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/color.rb +480 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/css_lexer.rb +29 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/css_parser.rb +31 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/funcall.rb +175 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/functions.rb +1395 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/interpolation.rb +79 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/lexer.rb +337 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/list.rb +83 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/literal.rb +230 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/node.rb +99 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/number.rb +452 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/operation.rb +107 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/parser.rb +474 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/string.rb +51 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/string_interpolation.rb +103 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/unary_operation.rb +64 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script/variable.rb +58 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/script.rb +39 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/css_parser.rb +46 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/parser.rb +973 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/rx.rb +132 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/sass_parser.rb +11 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/script_lexer.rb +15 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/script_parser.rb +25 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss/static_parser.rb +40 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/scss.rb +17 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/abstract_sequence.rb +62 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/comma_sequence.rb +81 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/sequence.rb +293 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/simple.rb +113 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector/simple_sequence.rb +134 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/selector.rb +373 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/shared.rb +76 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/charset_node.rb +22 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/comment_node.rb +90 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/debug_node.rb +18 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/directive_node.rb +23 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/each_node.rb +24 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/extend_node.rb +29 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/for_node.rb +36 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/function_node.rb +27 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/if_node.rb +52 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/import_node.rb +68 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/media_node.rb +32 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/mixin_def_node.rb +27 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/mixin_node.rb +32 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/node.rb +201 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/prop_node.rb +148 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/return_node.rb +18 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/root_node.rb +28 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/rule_node.rb +136 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/variable_node.rb +30 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/base.rb +75 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/check_nesting.rb +133 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/convert.rb +261 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/cssize.rb +191 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/deep_copy.rb +87 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/perform.rb +357 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/set_options.rb +97 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/visitors/to_css.rb +218 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/warn_node.rb +18 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/tree/while_node.rb +18 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/util/multibyte_string_scanner.rb +134 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/util/subset_map.rb +101 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/util.rb +754 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass/version.rb +112 -0
- data/vendor/bundle/gems/sass-3.1.15/lib/sass.rb +73 -0
- data/vendor/bundle/gems/sass-3.1.15/rails/init.rb +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/Gemfile +4 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/cache_test.rb +89 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/callbacks_test.rb +61 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/conversion_test.rb +1209 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/css2sass_test.rb +373 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/data/hsl-rgb.txt +319 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/engine_test.rb +2711 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/extend_test.rb +1450 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/functions_test.rb +1041 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/importer_test.rb +192 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/less_conversion_test.rb +653 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/logger_test.rb +58 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/mock_importer.rb +49 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/more_results/more1.css +9 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/more_results/more1_with_line_comments.css +26 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/more_results/more_import.css +29 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/more_templates/_more_partial.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/more_templates/more1.sass +23 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/more_templates/more_import.sass +11 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/plugin_test.rb +496 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/alt.css +4 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/basic.css +9 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/compact.css +5 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/complex.css +86 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/compressed.css +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/expanded.css +19 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/if.css +3 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import.css +31 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import_charset.css +5 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import_charset_1_8.css +5 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/import_charset_ibm866.css +5 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/line_numbers.css +49 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/mixins.css +95 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/multiline.css +24 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/nested.css +22 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/options.css +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/parent_ref.css +13 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/script.css +16 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/scss_import.css +31 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/scss_importee.css +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/subdir/subdir.css +3 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/units.css +11 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/warn.css +0 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/results/warn_imported.css +0 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/script_conversion_test.rb +285 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/script_test.rb +519 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/css_test.rb +922 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/rx_test.rb +156 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/scss_test.rb +1298 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/scss/test_helper.rb +37 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_double_import_loop2.sass +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_imported_charset_ibm866.sass +4 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_imported_charset_utf8.sass +4 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/_partial.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/alt.sass +16 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/basic.sass +23 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork1.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork2.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork3.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork4.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/bork5.sass +3 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/compact.sass +17 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/complex.sass +305 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/compressed.sass +15 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/double_import_loop1.sass +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/expanded.sass +17 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/if.sass +11 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import.sass +12 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import_charset.sass +9 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import_charset_1_8.sass +6 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/import_charset_ibm866.sass +11 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/importee.less +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/importee.sass +19 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/line_numbers.sass +13 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/mixin_bork.sass +5 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/mixins.sass +76 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/multiline.sass +20 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested.sass +25 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork1.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork2.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork3.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork4.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_bork5.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_import.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/nested_mixin_bork.sass +6 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/options.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/parent_ref.sass +25 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/script.sass +101 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/scss_import.scss +11 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/scss_importee.scss +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/single_import_loop.sass +1 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/subdir/subdir.sass +6 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/units.sass +11 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/warn.sass +3 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/templates/warn_imported.sass +4 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/test_helper.rb +8 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/util/multibyte_string_scanner_test.rb +147 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/util/subset_map_test.rb +91 -0
- data/vendor/bundle/gems/sass-3.1.15/test/sass/util_test.rb +272 -0
- data/vendor/bundle/gems/sass-3.1.15/test/test_helper.rb +70 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/Gemfile +3 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/LICENSE +20 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/README.markdown +83 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/Rakefile +11 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/example.rb +12 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/ext/rakefile.rb +14 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/fssm.gemspec +27 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/fsevents.rb +36 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/inotify.rb +26 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/polling.rb +25 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/rbfsevent.rb +42 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +131 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/monitor.rb +36 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/path.rb +94 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/pathname.rb +36 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/state/directory.rb +75 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/state/file.rb +24 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/support.rb +87 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/tree.rb +176 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm/version.rb +3 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/lib/fssm.rb +74 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-cache.rb +40 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-fssm-pathname.html +1231 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-pathname-rubinius.rb +35 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-pathname.rb +68 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof-plain-pathname.html +988 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/profile/prof.html +2379 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/count_down_latch.rb +151 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/monitor_spec.rb +202 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/path_spec.rb +96 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/duck/quack.txt +0 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/file.css +0 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/file.rb +0 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/file.yml +0 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/root/moo/cow.txt +0 -0
- data/vendor/bundle/gems/sass-3.1.15/vendor/fssm/spec/spec_helper.rb +14 -0
- data/vendor/bundle/gems/sinatra-1.3.2/.yardopts +4 -0
- data/vendor/bundle/gems/sinatra-1.3.2/AUTHORS +58 -0
- data/vendor/bundle/gems/sinatra-1.3.2/CHANGES +1010 -0
- data/vendor/bundle/gems/sinatra-1.3.2/Gemfile +77 -0
- data/vendor/bundle/gems/sinatra-1.3.2/LICENSE +22 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.de.rdoc +1961 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.es.rdoc +2043 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.fr.rdoc +1983 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.hu.rdoc +607 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.jp.rdoc +1043 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.pt-br.rdoc +647 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.pt-pt.rdoc +646 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.rdoc +1979 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.ru.rdoc +1785 -0
- data/vendor/bundle/gems/sinatra-1.3.2/README.zh.rdoc +1816 -0
- data/vendor/bundle/gems/sinatra-1.3.2/Rakefile +181 -0
- data/vendor/bundle/gems/sinatra-1.3.2/examples/chat.rb +61 -0
- data/vendor/bundle/gems/sinatra-1.3.2/examples/simple.rb +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/examples/stream.ru +26 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/base.rb +1642 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/images/404.png +0 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/images/500.png +0 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/main.rb +28 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/showexceptions.rb +340 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra/version.rb +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/lib/sinatra.rb +7 -0
- data/vendor/bundle/gems/sinatra-1.3.2/sinatra.gemspec +18 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/base_test.rb +160 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/builder_test.rb +95 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/coffee_test.rb +92 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/contest.rb +98 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/creole_test.rb +65 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/delegator_test.rb +162 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/encoding_test.rb +20 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/erb_test.rb +104 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/extensions_test.rb +100 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/filter_test.rb +428 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/haml_test.rb +101 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/helper.rb +123 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/helpers_test.rb +1783 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/integration/app.rb +6 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/integration_test.rb +65 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/less_test.rb +67 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/liquid_test.rb +59 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/mapped_error_test.rb +259 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/markaby_test.rb +80 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/markdown_test.rb +81 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/middleware_test.rb +68 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/nokogiri_test.rb +69 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/public/favicon.ico +0 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/rack_test.rb +45 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/radius_test.rb +59 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/rdoc_test.rb +66 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/readme_test.rb +136 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/request_test.rb +45 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/response_test.rb +61 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/result_test.rb +98 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/route_added_hook_test.rb +59 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/routing_test.rb +1098 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/sass_test.rb +115 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/scss_test.rb +88 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/server_test.rb +48 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/settings_test.rb +538 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/sinatra_test.rb +17 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/slim_test.rb +88 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/static_test.rb +177 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/streaming_test.rb +123 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/templates_test.rb +298 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/textile_test.rb +65 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/a/in_a.str +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/ascii.erb +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/b/in_b.str +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/calc.html.erb +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.builder +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.erb +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.haml +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/error.sass +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/explicitly_nested.str +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/foo/hello.test +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.builder +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.coffee +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.creole +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.erb +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.haml +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.less +5 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.liquid +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.mab +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.md +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.nokogiri +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.radius +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.rdoc +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.sass +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.scss +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.slim +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.str +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.test +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/hello.textile +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.builder +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.erb +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.haml +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.liquid +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.mab +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.nokogiri +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.radius +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.slim +3 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.str +2 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/layout2.test +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/nested.str +1 -0
- data/vendor/bundle/gems/sinatra-1.3.2/test/views/utf8.erb +2 -0
- data/vendor/bundle/gems/spork-0.9.0/Gemfile +10 -0
- data/vendor/bundle/gems/spork-0.9.0/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/spork-0.9.0/README.rdoc +134 -0
- data/vendor/bundle/gems/spork-0.9.0/assets/bootstrap.rb +49 -0
- data/vendor/bundle/gems/spork-0.9.0/bin/spork +20 -0
- data/vendor/bundle/gems/spork-0.9.0/features/at_exit_during_each_run.feature +36 -0
- data/vendor/bundle/gems/spork-0.9.0/features/cucumber_rails_integration.feature +107 -0
- data/vendor/bundle/gems/spork-0.9.0/features/diagnostic_mode.feature +41 -0
- data/vendor/bundle/gems/spork-0.9.0/features/gemfiles/rails3.0/Gemfile +14 -0
- data/vendor/bundle/gems/spork-0.9.0/features/rails_delayed_loading_workarounds.feature +177 -0
- data/vendor/bundle/gems/spork-0.9.0/features/rspec_rails_integration.feature +92 -0
- data/vendor/bundle/gems/spork-0.9.0/features/spork_debugger.feature +108 -0
- data/vendor/bundle/gems/spork-0.9.0/features/steps/general_steps.rb +3 -0
- data/vendor/bundle/gems/spork-0.9.0/features/steps/rails_steps.rb +67 -0
- data/vendor/bundle/gems/spork-0.9.0/features/steps/sandbox_steps.rb +115 -0
- data/vendor/bundle/gems/spork-0.9.0/features/support/background_job.rb +63 -0
- data/vendor/bundle/gems/spork-0.9.0/features/support/bundler_helpers.rb +41 -0
- data/vendor/bundle/gems/spork-0.9.0/features/support/env.rb +105 -0
- data/vendor/bundle/gems/spork-0.9.0/features/unknown_app_framework.feature +42 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework/padrino.rb +22 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework/rails.rb +82 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework/unknown.rb +6 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/app_framework.rb +80 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/custom_io_streams.rb +25 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/diagnoser.rb +105 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/ext/rails-reloader.rb +14 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/ext/ruby-debug.rb +150 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/forker.rb +71 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/gem_helpers.rb +38 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/forking.rb +35 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine/magazine_slave.rb +30 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine/magazine_slave_provider.rb +30 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine/ring_server.rb +10 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy/magazine.rb +155 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/run_strategy.rb +48 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/runner.rb +90 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/server.rb +77 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/test_framework/cucumber.rb +38 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/test_framework/rspec.rb +18 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork/test_framework.rb +167 -0
- data/vendor/bundle/gems/spork-0.9.0/lib/spork.rb +155 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spec_helper.rb +107 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/app_framework/rails_spec.rb +22 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/app_framework/unknown_spec.rb +12 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/app_framework_spec.rb +16 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/diagnoser_spec.rb +105 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/forker_spec.rb +44 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/run_strategy/forking_spec.rb +38 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/runner_spec.rb +50 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/server_spec.rb +15 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework/cucumber_spec.rb +6 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework/rspec_spec.rb +31 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework_shared_examples.rb +23 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork/test_framework_spec.rb +90 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/spork_spec.rb +153 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/support/fake_framework.rb +15 -0
- data/vendor/bundle/gems/spork-0.9.0/spec/support/fake_run_strategy.rb +21 -0
- data/vendor/bundle/gems/thor-0.14.6/CHANGELOG.rdoc +103 -0
- data/vendor/bundle/gems/thor-0.14.6/LICENSE +20 -0
- data/vendor/bundle/gems/thor-0.14.6/README.md +307 -0
- data/vendor/bundle/gems/thor-0.14.6/Thorfile +24 -0
- data/vendor/bundle/gems/thor-0.14.6/bin/rake2thor +86 -0
- data/vendor/bundle/gems/thor-0.14.6/bin/thor +6 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/create_file.rb +105 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/create_link.rb +57 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/directory.rb +93 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/empty_directory.rb +134 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/file_manipulation.rb +270 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions/inject_into_file.rb +109 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/actions.rb +314 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/base.rb +579 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/core_ext/file_binary_read.rb +9 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/core_ext/hash_with_indifferent_access.rb +75 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/core_ext/ordered_hash.rb +100 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/error.rb +30 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/group.rb +273 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/invocation.rb +168 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/argument.rb +67 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/arguments.rb +161 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/option.rb +120 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser/options.rb +173 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/parser.rb +4 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/rake_compat.rb +66 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/runner.rb +309 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell/basic.rb +290 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell/color.rb +108 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell/html.rb +121 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/shell.rb +88 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/task.rb +114 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/util.rb +229 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor/version.rb +3 -0
- data/vendor/bundle/gems/thor-0.14.6/lib/thor.rb +334 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/actions/create_file_spec.rb +170 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/actions/directory_spec.rb +136 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/actions/empty_directory_spec.rb +98 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/actions/file_manipulation_spec.rb +310 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/actions/inject_into_file_spec.rb +135 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/actions_spec.rb +322 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/base_spec.rb +269 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/core_ext/hash_with_indifferent_access_spec.rb +43 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/core_ext/ordered_hash_spec.rb +115 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/application.rb +2 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/bundle/execute.rb +6 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/bundle/main.thor +1 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/%file_name%.rb.tt +1 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/README +3 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/block_helper.rb +3 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/components/.empty_directory +0 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/doc/config.rb +1 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/group.thor +114 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/invoke.thor +112 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/path with spaces +0 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/script.thor +184 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/fixtures/task.thor +10 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/group_spec.rb +178 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/invocation_spec.rb +100 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/parser/argument_spec.rb +47 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/parser/arguments_spec.rb +64 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/parser/option_spec.rb +202 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/parser/options_spec.rb +319 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/rake_compat_spec.rb +68 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/register_spec.rb +92 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/runner_spec.rb +210 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/shell/basic_spec.rb +223 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/shell/color_spec.rb +41 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/shell/html_spec.rb +27 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/shell_spec.rb +47 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/spec_helper.rb +54 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/task_spec.rb +69 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/thor_spec.rb +334 -0
- data/vendor/bundle/gems/thor-0.14.6/spec/util_spec.rb +163 -0
- data/vendor/bundle/gems/tilt-1.3.3/COPYING +18 -0
- data/vendor/bundle/gems/tilt-1.3.3/Gemfile +2 -0
- data/vendor/bundle/gems/tilt-1.3.3/README.md +208 -0
- data/vendor/bundle/gems/tilt-1.3.3/Rakefile +80 -0
- data/vendor/bundle/gems/tilt-1.3.3/TEMPLATES.md +516 -0
- data/vendor/bundle/gems/tilt-1.3.3/bin/tilt +110 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/builder.rb +40 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/coffee.rb +50 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/css.rb +72 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/erb.rb +110 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/haml.rb +64 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/liquid.rb +41 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/markaby.rb +52 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/markdown.rb +190 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/nokogiri.rb +43 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/radius.rb +51 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/rdoc.rb +32 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/string.rb +21 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/template.rb +285 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/textile.rb +25 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/wiki.rb +50 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt/yajl.rb +94 -0
- data/vendor/bundle/gems/tilt-1.3.3/lib/tilt.rb +190 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/contest.rb +68 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/markaby/locals.mab +1 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/markaby/markaby.mab +1 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/markaby/markaby_other_static.mab +1 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/markaby/render_twice.mab +1 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/markaby/scope.mab +1 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/markaby/yielding.mab +2 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_blueclothtemplate_test.rb +45 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_buildertemplate_test.rb +59 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_cache_test.rb +32 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_coffeescripttemplate_test.rb +61 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_compilesite_test.rb +51 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_creoletemplate_test.rb +28 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_erbtemplate_test.rb +234 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_erubistemplate_test.rb +151 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_fallback_test.rb +122 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_hamltemplate_test.rb +144 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_kramdown_test.rb +42 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_lesstemplate_test.rb +26 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_liquidtemplate_test.rb +78 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_markaby_test.rb +88 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_markdown_test.rb +161 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_marukutemplate_test.rb +48 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_nokogiritemplate_test.rb +87 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_radiustemplate_test.rb +75 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_rdiscounttemplate_test.rb +55 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_rdoctemplate_test.rb +24 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_redcarpettemplate_test.rb +59 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_redclothtemplate_test.rb +24 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_sasstemplate_test.rb +41 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_stringtemplate_test.rb +170 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_template_test.rb +154 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_test.rb +65 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_wikiclothtemplate_test.rb +32 -0
- data/vendor/bundle/gems/tilt-1.3.3/test/tilt_yajltemplate_test.rb +92 -0
- data/vendor/bundle/gems/tilt-1.3.3/tilt.gemspec +109 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/CHANGES +459 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/LICENSE +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/README +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/Rakefile +241 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country.rb +176 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country_index_definition.rb +48 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country_info.rb +80 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/country_timezone.rb +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/data_timezone.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/data_timezone_info.rb +222 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Abidjan.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Accra.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Addis_Ababa.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Algiers.rb +53 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Asmara.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Asmera.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bamako.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bangui.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Banjul.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bissau.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Blantyre.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Brazzaville.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Bujumbura.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Cairo.rb +139 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Casablanca.rb +44 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Ceuta.rb +170 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Conakry.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Dakar.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Dar_es_Salaam.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Djibouti.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Douala.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/El_Aaiun.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Freetown.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Gaborone.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Harare.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Johannesburg.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Juba.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Kampala.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Khartoum.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Kigali.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Kinshasa.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lagos.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Libreville.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lome.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Luanda.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lubumbashi.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Lusaka.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Malabo.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Maputo.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Maseru.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Mbabane.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Mogadishu.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Monrovia.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Nairobi.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Ndjamena.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Niamey.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Nouakchott.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Ouagadougou.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Porto__m__Novo.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Sao_Tome.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Timbuktu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Tripoli.rb +46 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Tunis.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Africa/Windhoek.rb +138 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Adak.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Anchorage.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Anguilla.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Antigua.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Araguaina.rb +65 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +82 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Catamarca.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/ComodRivadavia.rb +13 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Cordoba.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Jujuy.rb +82 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/La_Rioja.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Mendoza.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Rio_Gallegos.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Salta.rb +81 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/San_Juan.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/San_Luis.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Tucuman.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Argentina/Ushuaia.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Aruba.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Asuncion.rb +172 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Atikokan.rb +26 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Atka.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Bahia.rb +153 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Bahia_Banderas.rb +138 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Barbados.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Belem.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Belize.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Blanc__m__Sablon.rb +24 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Boa_Vista.rb +49 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Bogota.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Boise.rb +197 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Buenos_Aires.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cambridge_Bay.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Campo_Grande.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cancun.rb +131 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Caracas.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Catamarca.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cayenne.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cayman.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Chicago.rb +281 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Chihuahua.rb +134 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Coral_Harbour.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cordoba.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Costa_Rica.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Creston.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Cuiaba.rb +167 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Curacao.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Danmarkshavn.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Dawson.rb +174 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Dawson_Creek.rb +77 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Denver.rb +202 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Detroit.rb +184 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Dominica.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Edmonton.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Eirunepe.rb +49 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/El_Salvador.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Ensenada.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Fort_Wayne.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Fortaleza.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Glace_Bay.rb +184 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Godthab.rb +159 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Goose_Bay.rb +253 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Grand_Turk.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Grenada.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guadeloupe.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guatemala.rb +25 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guayaquil.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Guyana.rb +22 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Halifax.rb +272 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Havana.rb +199 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Hermosillo.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Indianapolis.rb +147 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Knox.rb +201 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Marengo.rb +151 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Petersburg.rb +164 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Tell_City.rb +149 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Vevay.rb +129 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Vincennes.rb +149 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indiana/Winamac.rb +155 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Indianapolis.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Inuvik.rb +164 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Iqaluit.rb +168 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Jamaica.rb +39 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Jujuy.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Juneau.rb +193 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Kentucky/Louisville.rb +226 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Kentucky/Monticello.rb +196 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Knox_IN.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Kralendijk.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/La_Paz.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Lima.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Los_Angeles.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Louisville.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Lower_Princes.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Maceio.rb +57 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Managua.rb +34 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Manaus.rb +47 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Marigot.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Martinique.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Matamoros.rb +129 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Mazatlan.rb +137 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Mendoza.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Menominee.rb +188 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Merida.rb +130 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Metlakatla.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Mexico_City.rb +142 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Miquelon.rb +147 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Moncton.rb +252 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Monterrey.rb +129 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Montevideo.rb +177 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Montreal.rb +277 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Montserrat.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Nassau.rb +191 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/New_York.rb +280 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Nipigon.rb +179 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Nome.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Noronha.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/North_Dakota/Beulah.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/North_Dakota/Center.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/North_Dakota/New_Salem.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Ojinaga.rb +134 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Panama.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Pangnirtung.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Paramaribo.rb +24 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Phoenix.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Port__m__au__m__Prince.rb +53 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Port_of_Spain.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Porto_Acre.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Porto_Velho.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Puerto_Rico.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rainy_River.rb +179 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rankin_Inlet.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Recife.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Regina.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Resolute.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rio_Branco.rb +47 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Rosario.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santa_Isabel.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santarem.rb +47 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santiago.rb +203 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Santo_Domingo.rb +36 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Sao_Paulo.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Scoresbysund.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Shiprock.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Sitka.rb +192 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Barthelemy.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Johns.rb +286 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Kitts.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Lucia.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Thomas.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/St_Vincent.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Swift_Current.rb +42 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Tegucigalpa.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Thule.rb +137 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Thunder_Bay.rb +184 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Tijuana.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Toronto.rb +277 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Tortola.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Vancouver.rb +234 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Virgin.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Whitehorse.rb +174 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Winnipeg.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Yakutat.rb +191 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/America/Yellowknife.rb +167 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Casey.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Davis.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/DumontDUrville.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Macquarie.rb +112 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Mawson.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/McMurdo.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Palmer.rb +170 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Rothera.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/South_Pole.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Syowa.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Antarctica/Vostok.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Arctic/Longyearbyen.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Aden.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Almaty.rb +65 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Amman.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Anadyr.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Aqtau.rb +73 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Aqtobe.rb +69 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ashgabat.rb +46 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ashkhabad.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Baghdad.rb +71 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Bahrain.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Baku.rb +159 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Bangkok.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Beirut.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Bishkek.rb +73 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Brunei.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Calcutta.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Choibalsan.rb +66 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Chongqing.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Chungking.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Colombo.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dacca.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Damascus.rb +193 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dhaka.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dili.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dubai.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Dushanbe.rb +43 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Gaza.rb +111 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Harbin.rb +35 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Hebron.rb +113 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ho_Chi_Minh.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Hong_Kong.rb +86 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Hovd.rb +63 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Irkutsk.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Istanbul.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Jakarta.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Jayapura.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Jerusalem.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kabul.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kamchatka.rb +82 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kashgar.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kathmandu.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Katmandu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kolkata.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Krasnoyarsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb +29 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kuching.rb +38 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Kuwait.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Macao.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Macau.rb +59 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Magadan.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Makassar.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Manila.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Muscat.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Nicosia.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Novokuznetsk.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Novosibirsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Omsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Oral.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Phnom_Penh.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Pontianak.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Pyongyang.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Qatar.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Qyzylorda.rb +71 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Rangoon.rb +22 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh87.rb +590 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh88.rb +580 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Riyadh89.rb +580 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Saigon.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Sakhalin.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Samarkand.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Seoul.rb +32 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Shanghai.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Singapore.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Taipei.rb +57 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tashkent.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tbilisi.rb +76 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tehran.rb +119 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tel_Aviv.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Thimbu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Thimphu.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Tokyo.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ujung_Pandang.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ulaanbaatar.rb +63 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Ulan_Bator.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Urumqi.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Vientiane.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Vladivostok.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Yakutsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Yekaterinburg.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Asia/Yerevan.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Azores.rb +268 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Bermuda.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Canary.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Cape_Verde.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Faeroe.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Faroe.rb +157 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Jan_Mayen.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Madeira.rb +267 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Reykjavik.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/South_Georgia.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/St_Helena.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Atlantic/Stanley.rb +90 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/ACT.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Adelaide.rb +185 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Brisbane.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Broken_Hill.rb +187 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Canberra.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Currie.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Darwin.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Eucla.rb +35 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Hobart.rb +191 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/LHI.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Lindeman.rb +37 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Lord_Howe.rb +158 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Melbourne.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/NSW.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/North.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Perth.rb +35 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Queensland.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/South.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Sydney.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Tasmania.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Victoria.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/West.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Australia/Yancowinna.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/Acre.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/DeNoronha.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/East.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Brazil/West.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/CET.rb +175 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/CST6CDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Atlantic.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Central.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/East__m__Saskatchewan.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Eastern.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Mountain.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Newfoundland.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Pacific.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Saskatchewan.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Canada/Yukon.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Chile/Continental.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Chile/EasterIsland.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Cuba.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/EET.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/EST.rb +12 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/EST5EDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Egypt.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Eire.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT0.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__0.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__1.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__10.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__11.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__12.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__13.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__14.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__2.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__3.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__4.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__5.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__6.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__7.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__8.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__m__9.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__0.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__1.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__10.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__11.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__12.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__2.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__3.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__4.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__5.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__6.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__7.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__8.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/GMT__p__9.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/Greenwich.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/UCT.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/UTC.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/Universal.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Etc/Zulu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Amsterdam.rb +226 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Andorra.rb +151 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Athens.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Belfast.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Belgrade.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Berlin.rb +186 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Bratislava.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Brussels.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Bucharest.rb +179 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Budapest.rb +195 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Chisinau.rb +187 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Copenhagen.rb +177 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Dublin.rb +274 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Gibraltar.rb +243 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Guernsey.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Helsinki.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Isle_of_Man.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Istanbul.rb +216 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Jersey.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Kaliningrad.rb +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Kiev.rb +166 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Lisbon.rb +266 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Ljubljana.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/London.rb +286 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Luxembourg.rb +229 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Madrid.rb +209 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Malta.rb +211 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Mariehamn.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Minsk.rb +90 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Monaco.rb +231 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Moscow.rb +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Nicosia.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Oslo.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Paris.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Podgorica.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Prague.rb +185 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Riga.rb +174 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Rome.rb +213 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Samara.rb +88 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/San_Marino.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Sarajevo.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Simferopol.rb +168 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Skopje.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Sofia.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Stockholm.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Tallinn.rb +170 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Tirane.rb +175 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Tiraspol.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Uzhgorod.rb +166 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vaduz.rb +157 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vatican.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vienna.rb +181 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Vilnius.rb +168 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Volgograd.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Warsaw.rb +210 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Zagreb.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Zaporozhye.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Europe/Zurich.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GB.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GB__m__Eire.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT0.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT__m__0.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/GMT__p__0.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Greenwich.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/HST.rb +12 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Hongkong.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Iceland.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Antananarivo.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Chagos.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Christmas.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Cocos.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Comoro.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Kerguelen.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Mahe.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Maldives.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Mauritius.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Mayotte.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Indian/Reunion.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Iran.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Israel.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Jamaica.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Japan.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Kwajalein.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Libya.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/MET.rb +175 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/MST.rb +12 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/MST7MDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mexico/BajaNorte.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mexico/BajaSur.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mexico/General.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mideast/Riyadh87.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mideast/Riyadh88.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Mideast/Riyadh89.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/NZ.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/NZ__m__CHAT.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Navajo.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/PRC.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/PST8PDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Apia.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Auckland.rb +200 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Chatham.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Chuuk.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Easter.rb +188 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Efate.rb +37 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Enderbury.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Fakaofo.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Fiji.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Funafuti.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Galapagos.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Gambier.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Guadalcanal.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Guam.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Honolulu.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Johnston.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Kiritimati.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Kosrae.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Kwajalein.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Majuro.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Marquesas.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Midway.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Nauru.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Niue.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Norfolk.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Noumea.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Pago_Pago.rb +24 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Palau.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Pitcairn.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Pohnpei.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Ponape.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Port_Moresby.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Rarotonga.rb +44 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Saipan.rb +22 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Samoa.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Tahiti.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Tarawa.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Tongatapu.rb +25 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Truk.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Wake.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Wallis.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Pacific/Yap.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Poland.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Portugal.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/ROC.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/ROK.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Singapore.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Turkey.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/UCT.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Alaska.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Aleutian.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Arizona.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Central.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/East__m__Indiana.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Eastern.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Hawaii.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Indiana__m__Starke.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Michigan.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Mountain.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Pacific.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Pacific__m__New.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/US/Samoa.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/UTC.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Universal.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/WET.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/W__m__SU.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/definitions/Zulu.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/indexes/countries.rb +919 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/indexes/timezones.rb +589 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/info_timezone.rb +50 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/linked_timezone.rb +49 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/linked_timezone_info.rb +42 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/offset_rationals.rb +97 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/ruby_core_support.rb +80 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/time_or_datetime.rb +291 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone.rb +535 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_definition.rb +53 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_index_definition.rb +70 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_info.rb +40 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_period.rb +195 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_proxy.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/timezone_transition_info.rb +128 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo/tzdataparser.rb +1168 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/lib/tzinfo.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country.rb +156 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country_index_definition.rb +70 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country_info.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_country_timezone.rb +121 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_data_timezone.rb +68 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_data_timezone_info.rb +282 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_info_timezone.rb +36 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_linked_timezone.rb +102 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_linked_timezone_info.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_offset_rationals.rb +25 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_ruby_core_support.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_time_or_datetime.rb +422 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone.rb +964 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_definition.rb +115 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_index_definition.rb +75 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_info.rb +13 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_london.rb +114 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_melbourne.rb +114 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_new_york.rb +114 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_offset_info.rb +116 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_period.rb +509 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_proxy.rb +87 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_transition_info.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/tc_timezone_utc.rb +29 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/test_utils.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.32/test/ts_all.rb +9 -0
- data/vendor/bundle/specifications/activemodel-3.2.3.gemspec +32 -0
- data/vendor/bundle/specifications/activesupport-3.2.3.gemspec +33 -0
- data/vendor/bundle/specifications/bson-1.6.1.gemspec +27 -0
- data/vendor/bundle/specifications/bson_ext-1.6.1.gemspec +30 -0
- data/vendor/bundle/specifications/builder-3.0.0.gemspec +29 -0
- data/vendor/bundle/specifications/coffee-script-2.2.0.gemspec +31 -0
- data/vendor/bundle/specifications/coffee-script-source-1.2.0.gemspec +26 -0
- data/vendor/bundle/specifications/diff-lcs-1.1.3.gemspec +35 -0
- data/vendor/bundle/specifications/execjs-1.3.0.gemspec +43 -0
- data/vendor/bundle/specifications/factory_girl-3.0.0.gemspec +62 -0
- data/vendor/bundle/specifications/ffi-1.0.11.gemspec +30 -0
- data/vendor/bundle/specifications/guard-1.0.1.gemspec +52 -0
- data/vendor/bundle/specifications/guard-rspec-0.7.0.gemspec +35 -0
- data/vendor/bundle/specifications/haml-3.1.4.gemspec +34 -0
- data/vendor/bundle/specifications/i18n-0.6.0.gemspec +38 -0
- data/vendor/bundle/specifications/mongo-1.6.1.gemspec +32 -0
- data/vendor/bundle/specifications/mongoid-2.4.7.gemspec +53 -0
- data/vendor/bundle/specifications/multi_json-1.2.0.gemspec +40 -0
- data/vendor/bundle/specifications/rack-1.4.1.gemspec +47 -0
- data/vendor/bundle/specifications/rack-protection-1.2.0.gemspec +34 -0
- data/vendor/bundle/specifications/rspec-2.9.0.gemspec +39 -0
- data/vendor/bundle/specifications/rspec-core-2.9.0.gemspec +58 -0
- data/vendor/bundle/specifications/rspec-expectations-2.9.0.gemspec +40 -0
- data/vendor/bundle/specifications/rspec-mocks-2.9.0.gemspec +37 -0
- data/vendor/bundle/specifications/sass-3.1.15.gemspec +35 -0
- data/vendor/bundle/specifications/sinatra-1.3.2.gemspec +37 -0
- data/vendor/bundle/specifications/spork-0.9.0.gemspec +30 -0
- data/vendor/bundle/specifications/thor-0.14.6.gemspec +47 -0
- data/vendor/bundle/specifications/tilt-1.3.3.gemspec +97 -0
- data/vendor/bundle/specifications/tzinfo-0.3.32.gemspec +29 -0
- metadata +3830 -0
@@ -0,0 +1,1965 @@
|
|
1
|
+
# Sass (Syntactically Awesome StyleSheets)
|
2
|
+
|
3
|
+
* Table of contents
|
4
|
+
{:toc}
|
5
|
+
|
6
|
+
Sass is an extension of CSS
|
7
|
+
that adds power and elegance to the basic language.
|
8
|
+
It allows you to use [variables](#variables_), [nested rules](#nested_rules),
|
9
|
+
[mixins](#mixins), [inline imports](#import), and more,
|
10
|
+
all with a fully CSS-compatible syntax.
|
11
|
+
Sass helps keep large stylesheets well-organized,
|
12
|
+
and get small stylesheets up and running quickly,
|
13
|
+
particularly with the help of
|
14
|
+
[the Compass style library](http://compass-style.org).
|
15
|
+
|
16
|
+
## Features
|
17
|
+
|
18
|
+
* Fully CSS3-compatible
|
19
|
+
* Language extensions such as variables, nesting, and mixins
|
20
|
+
* Many {Sass::Script::Functions useful functions} for manipulating colors and other values
|
21
|
+
* Advanced features like [control directives](#control_directives) for libraries
|
22
|
+
* Well-formatted, customizable output
|
23
|
+
* [Firebug integration](https://addons.mozilla.org/en-US/firefox/addon/103988)
|
24
|
+
|
25
|
+
## Syntax
|
26
|
+
|
27
|
+
There are two syntaxes available for Sass.
|
28
|
+
The first, known as SCSS (Sassy CSS) and used throughout this reference,
|
29
|
+
is an extension of the syntax of CSS3.
|
30
|
+
This means that every valid CSS3 stylesheet
|
31
|
+
is a valid SCSS file with the same meaning.
|
32
|
+
In addition, SCSS understands most CSS hacks
|
33
|
+
and vendor-specific syntax, such as [IE's old `filter` syntax](http://msdn.microsoft.com/en-us/library/ms533754%28VS.85%29.aspx).
|
34
|
+
This syntax is enhanced with the Sass features described below.
|
35
|
+
Files using this syntax have the `.scss` extension.
|
36
|
+
|
37
|
+
The second and older syntax, known as the indented syntax (or sometimes just "Sass"),
|
38
|
+
provides a more concise way of writing CSS.
|
39
|
+
It uses indentation rather than brackets to indicate nesting of selectors,
|
40
|
+
and newlines rather than semicolons to separate properties.
|
41
|
+
Some people find this to be easier to read and quicker to write than SCSS.
|
42
|
+
The indented syntax has all the same features,
|
43
|
+
although some of them have slightly different syntax;
|
44
|
+
this is described in {file:INDENTED_SYNTAX.md the indented syntax reference}.
|
45
|
+
Files using this syntax have the `.sass` extension.
|
46
|
+
|
47
|
+
Either syntax can [import](#import) files written in the other.
|
48
|
+
Files can be automatically converted from one syntax to the other
|
49
|
+
using the `sass-convert` command line tool:
|
50
|
+
|
51
|
+
# Convert Sass to SCSS
|
52
|
+
$ sass-convert style.sass style.scss
|
53
|
+
|
54
|
+
# Convert SCSS to Sass
|
55
|
+
$ sass-convert style.scss style.sass
|
56
|
+
|
57
|
+
## Using Sass
|
58
|
+
|
59
|
+
Sass can be used in three ways:
|
60
|
+
as a command-line tool,
|
61
|
+
as a standalone Ruby module,
|
62
|
+
and as a plugin for any Rack-enabled framework,
|
63
|
+
including Ruby on Rails and Merb.
|
64
|
+
The first step for all of these is to install the Sass gem:
|
65
|
+
|
66
|
+
gem install sass
|
67
|
+
|
68
|
+
If you're using Windows,
|
69
|
+
you may need to [install Ruby](http://rubyinstaller.org/download.html) first.
|
70
|
+
|
71
|
+
To run Sass from the command line, just use
|
72
|
+
|
73
|
+
sass input.scss output.css
|
74
|
+
|
75
|
+
You can also tell Sass to watch the file and update the CSS
|
76
|
+
every time the Sass file changes:
|
77
|
+
|
78
|
+
sass --watch input.scss:output.css
|
79
|
+
|
80
|
+
If you have a directory with many Sass files,
|
81
|
+
you can also tell Sass to watch the entire directory:
|
82
|
+
|
83
|
+
sass --watch app/sass:public/stylesheets
|
84
|
+
|
85
|
+
Use `sass --help` for full documentation.
|
86
|
+
|
87
|
+
Using Sass in Ruby code is very simple.
|
88
|
+
After installing the Sass gem,
|
89
|
+
you can use it by running `require "sass"`
|
90
|
+
and using {Sass::Engine} like so:
|
91
|
+
|
92
|
+
engine = Sass::Engine.new("#main {background-color: #0000ff}", :syntax => :scss)
|
93
|
+
engine.render #=> "#main { background-color: #0000ff; }\n"
|
94
|
+
|
95
|
+
### Rack/Rails/Merb Plugin
|
96
|
+
|
97
|
+
To enable Sass in Rails versions before Rails 3,
|
98
|
+
add the following line to `environment.rb`:
|
99
|
+
|
100
|
+
config.gem "sass"
|
101
|
+
|
102
|
+
For Rails 3, instead add the following line to the Gemfile:
|
103
|
+
|
104
|
+
gem "sass"
|
105
|
+
|
106
|
+
To enable Sass in Merb,
|
107
|
+
add the following line to `config/dependencies.rb`:
|
108
|
+
|
109
|
+
dependency "merb-haml"
|
110
|
+
|
111
|
+
To enable Sass in a Rack application,
|
112
|
+
add
|
113
|
+
|
114
|
+
require 'sass/plugin/rack'
|
115
|
+
use Sass::Plugin::Rack
|
116
|
+
|
117
|
+
to `config.ru`.
|
118
|
+
|
119
|
+
Sass stylesheets don't work the same as views.
|
120
|
+
They don't contain dynamic content,
|
121
|
+
so the CSS only needs to be generated when the Sass file has been updated.
|
122
|
+
By default, `.sass` and `.scss` files are placed in public/stylesheets/sass
|
123
|
+
(this can be customized with the [`:template_location`](#template_location-option) option).
|
124
|
+
Then, whenever necessary, they're compiled into corresponding CSS files in public/stylesheets.
|
125
|
+
For instance, public/stylesheets/sass/main.scss would be compiled to public/stylesheets/main.css.
|
126
|
+
|
127
|
+
### Caching
|
128
|
+
|
129
|
+
By default, Sass caches compiled templates and [partials](#partials).
|
130
|
+
This dramatically speeds up re-compilation of large collections of Sass files,
|
131
|
+
and works best if the Sass templates are split up into separate files
|
132
|
+
that are all [`@import`](#import)ed into one large file.
|
133
|
+
|
134
|
+
Without a framework, Sass puts the cached templates in the `.sass-cache` directory.
|
135
|
+
In Rails and Merb, they go in `tmp/sass-cache`.
|
136
|
+
The directory can be customized with the [`:cache_location`](#cache_location-option) option.
|
137
|
+
If you don't want Sass to use caching at all,
|
138
|
+
set the [`:cache`](#cache-option) option to `false`.
|
139
|
+
|
140
|
+
### Options
|
141
|
+
|
142
|
+
Options can be set by setting the {Sass::Plugin::Configuration#options Sass::Plugin#options} hash
|
143
|
+
in `environment.rb` in Rails or `config.ru` in Rack...
|
144
|
+
|
145
|
+
Sass::Plugin.options[:style] = :compact
|
146
|
+
|
147
|
+
...or by setting the `Merb::Plugin.config[:sass]` hash in `init.rb` in Merb...
|
148
|
+
|
149
|
+
Merb::Plugin.config[:sass][:style] = :compact
|
150
|
+
|
151
|
+
...or by passing an options hash to {Sass::Engine#initialize}.
|
152
|
+
All relevant options are also available via flags
|
153
|
+
to the `sass` and `scss` command-line executables.
|
154
|
+
Available options are:
|
155
|
+
|
156
|
+
{#style-option} `:style`
|
157
|
+
: Sets the style of the CSS output.
|
158
|
+
See [Output Style](#output_style).
|
159
|
+
|
160
|
+
{#syntax-option} `:syntax`
|
161
|
+
: The syntax of the input file, `:sass` for the indented syntax
|
162
|
+
and `:scss` for the CSS-extension syntax.
|
163
|
+
This is only useful when you're constructing {Sass::Engine} instances yourself;
|
164
|
+
it's automatically set properly when using {Sass::Plugin}.
|
165
|
+
Defaults to `:sass`.
|
166
|
+
|
167
|
+
{#property_syntax-option} `:property_syntax`
|
168
|
+
: Forces indented-syntax documents to use one syntax for properties.
|
169
|
+
If the correct syntax isn't used, an error is thrown.
|
170
|
+
`:new` forces the use of a colon or equals sign
|
171
|
+
after the property name.
|
172
|
+
For example: `color: #0f3`
|
173
|
+
or `width: $main_width`.
|
174
|
+
`:old` forces the use of a colon
|
175
|
+
before the property name.
|
176
|
+
For example: `:color #0f3`
|
177
|
+
or `:width $main_width`.
|
178
|
+
By default, either syntax is valid.
|
179
|
+
This has no effect on SCSS documents.
|
180
|
+
|
181
|
+
{#cache-option} `:cache`
|
182
|
+
: Whether parsed Sass files should be cached,
|
183
|
+
allowing greater speed. Defaults to true.
|
184
|
+
|
185
|
+
{#read_cache-option} `:read_cache`
|
186
|
+
: If this is set and `:cache` is not,
|
187
|
+
only read the Sass cache if it exists,
|
188
|
+
don't write to it if it doesn't.
|
189
|
+
|
190
|
+
{#cache_store-option} `:cache_store`
|
191
|
+
: If this is set to an instance of a subclass of {Sass::CacheStores::Base},
|
192
|
+
that cache store will be used to store and retrieve
|
193
|
+
cached compilation results.
|
194
|
+
Defaults to a {Sass::CacheStores::Filesystem} that is
|
195
|
+
initialized using the [`:cache_location` option](#cache_location-option).
|
196
|
+
|
197
|
+
{#never_update-option} `:never_update`
|
198
|
+
: Whether the CSS files should never be updated,
|
199
|
+
even if the template file changes.
|
200
|
+
Setting this to true may give small performance gains.
|
201
|
+
It always defaults to false.
|
202
|
+
Only has meaning within Rack, Ruby on Rails, or Merb.
|
203
|
+
|
204
|
+
{#always_update-option} `:always_update`
|
205
|
+
: Whether the CSS files should be updated every
|
206
|
+
time a controller is accessed,
|
207
|
+
as opposed to only when the template has been modified.
|
208
|
+
Defaults to false.
|
209
|
+
Only has meaning within Rack, Ruby on Rails, or Merb.
|
210
|
+
|
211
|
+
{#always_check-option} `:always_check`
|
212
|
+
: Whether a Sass template should be checked for updates every
|
213
|
+
time a controller is accessed,
|
214
|
+
as opposed to only when the server starts.
|
215
|
+
If a Sass template has been updated,
|
216
|
+
it will be recompiled and will overwrite the corresponding CSS file.
|
217
|
+
Defaults to false in production mode, true otherwise.
|
218
|
+
Only has meaning within Rack, Ruby on Rails, or Merb.
|
219
|
+
|
220
|
+
{#full_exception-option} `:full_exception`
|
221
|
+
: Whether an error in the Sass code
|
222
|
+
should cause Sass to provide a detailed description
|
223
|
+
within the generated CSS file.
|
224
|
+
If set to true, the error will be displayed
|
225
|
+
along with a line number and source snippet
|
226
|
+
both as a comment in the CSS file
|
227
|
+
and at the top of the page (in supported browsers).
|
228
|
+
Otherwise, an exception will be raised in the Ruby code.
|
229
|
+
Defaults to false in production mode, true otherwise.
|
230
|
+
Only has meaning within Rack, Ruby on Rails, or Merb.
|
231
|
+
|
232
|
+
{#template_location-option} `:template_location`
|
233
|
+
: A path to the root sass template directory for your application.
|
234
|
+
If a hash, `:css_location` is ignored and this option designates
|
235
|
+
a mapping between input and output directories.
|
236
|
+
May also be given a list of 2-element lists, instead of a hash.
|
237
|
+
Defaults to `css_location + "/sass"`.
|
238
|
+
Only has meaning within Rack, Ruby on Rails, or Merb.
|
239
|
+
Note that if multiple template locations are specified, all
|
240
|
+
of them are placed in the import path, allowing you to import
|
241
|
+
between them.
|
242
|
+
**Note that due to the many possible formats it can take,
|
243
|
+
this option should only be set directly, not accessed or modified.
|
244
|
+
Use the {Sass::Plugin::Configuration#template_location_array Sass::Plugin#template_location_array},
|
245
|
+
{Sass::Plugin::Configuration#add_template_location Sass::Plugin#add_template_location},
|
246
|
+
and {Sass::Plugin::Configuration#remove_template_location Sass::Plugin#remove_template_location} methods instead**.
|
247
|
+
|
248
|
+
{#css_location-option} `:css_location`
|
249
|
+
: The path where CSS output should be written to.
|
250
|
+
This option is ignored when `:template_location` is a Hash.
|
251
|
+
Defaults to `"./public/stylesheets"`.
|
252
|
+
Only has meaning within Rack, Ruby on Rails, or Merb.
|
253
|
+
|
254
|
+
{#cache_location-option} `:cache_location`
|
255
|
+
: The path where the cached `sassc` files should be written to.
|
256
|
+
Defaults to `"./tmp/sass-cache"` in Rails and Merb,
|
257
|
+
or `"./.sass-cache"` otherwise.
|
258
|
+
If the [`:cache_store` option](#cache_location-option) is set,
|
259
|
+
this is ignored.
|
260
|
+
|
261
|
+
{#unix_newlines-option} `:unix_newlines`
|
262
|
+
: If true, use Unix-style newlines when writing files.
|
263
|
+
Only has meaning on Windows, and only when Sass is writing the files
|
264
|
+
(in Rack, Rails, or Merb, when using {Sass::Plugin} directly,
|
265
|
+
or when using the command-line executable).
|
266
|
+
|
267
|
+
{#filename-option} `:filename`
|
268
|
+
: The filename of the file being rendered.
|
269
|
+
This is used solely for reporting errors,
|
270
|
+
and is automatically set when using Rack, Rails, or Merb.
|
271
|
+
|
272
|
+
{#line-option} `:line`
|
273
|
+
: The number of the first line of the Sass template.
|
274
|
+
Used for reporting line numbers for errors.
|
275
|
+
This is useful to set if the Sass template is embedded in a Ruby file.
|
276
|
+
|
277
|
+
{#load_paths-option} `:load_paths`
|
278
|
+
: An array of filesystem paths or importers which should be searched
|
279
|
+
for Sass templates imported with the [`@import`](#import) directive.
|
280
|
+
These may be strings, `Pathname` objects, or subclasses of {Sass::Importers::Base}.
|
281
|
+
This defaults to the working directory and, in Rack, Rails, or Merb,
|
282
|
+
whatever `:template_location` is.
|
283
|
+
|
284
|
+
{#filesystem_importer-option} `:filesystem_importer`
|
285
|
+
: A {Sass::Importers::Base} subclass used to handle plain string load paths.
|
286
|
+
This should import files from the filesystem.
|
287
|
+
It should be a Class object inheriting from {Sass::Importers::Base}
|
288
|
+
with a constructor that takes a single string argument (the load path).
|
289
|
+
Defaults to {Sass::Importers::Filesystem}.
|
290
|
+
|
291
|
+
{#line_numbers-option} `:line_numbers`
|
292
|
+
: When set to true, causes the line number and file
|
293
|
+
where a selector is defined to be emitted into the compiled CSS
|
294
|
+
as a comment. Useful for debugging, especially when using imports
|
295
|
+
and mixins.
|
296
|
+
This option may also be called `:line_comments`.
|
297
|
+
Automatically disabled when using the `:compressed` output style
|
298
|
+
or the `:debug_info`/`:trace_selectors` options.
|
299
|
+
|
300
|
+
{#trace_selectors-option} `:trace_selectors`
|
301
|
+
: When set to true, emit a full trace of imports and mixins before
|
302
|
+
each selector. This can be helpful for in-browser debugging of
|
303
|
+
stylesheet imports and mixin includes. This option supersedes
|
304
|
+
the `:line_comments` option and is superseded by the
|
305
|
+
`:debug_info` option. Automatically disabled when using the
|
306
|
+
`:compressed` output style.
|
307
|
+
|
308
|
+
{#debug_info-option} `:debug_info`
|
309
|
+
: When set to true, causes the line number and file
|
310
|
+
where a selector is defined to be emitted into the compiled CSS
|
311
|
+
in a format that can be understood by the browser.
|
312
|
+
Useful in conjunction with [the FireSass Firebug extension](https://addons.mozilla.org/en-US/firefox/addon/103988)
|
313
|
+
for displaying the Sass filename and line number.
|
314
|
+
Automatically disabled when using the `:compressed` output style.
|
315
|
+
|
316
|
+
{#custom-option} `:custom`
|
317
|
+
: An option that's available for individual applications to set
|
318
|
+
to make data available to {Sass::Script::Functions custom Sass functions}.
|
319
|
+
|
320
|
+
{#quiet-option} `:quiet`
|
321
|
+
: When set to true, causes warnings to be disabled.
|
322
|
+
|
323
|
+
### Syntax Selection
|
324
|
+
|
325
|
+
The Sass command-line tool will use the file extension to determine which
|
326
|
+
syntax you are using, but there's not always a filename. The `sass`
|
327
|
+
command-line program defaults to the indented syntax but you can pass the
|
328
|
+
`--scss` option to it if the input should be interpreted as SCSS syntax.
|
329
|
+
Alternatively, you can use the `scss` command-line program which is exactly
|
330
|
+
like the `sass` program but it defaults to assuming the syntax is SCSS.
|
331
|
+
|
332
|
+
### Encodings
|
333
|
+
|
334
|
+
When running on Ruby 1.9 and later, Sass is aware of the character encoding of documents
|
335
|
+
and will handle them the same way that CSS would.
|
336
|
+
By default, Sass assumes that all stylesheets are encoded
|
337
|
+
using whatever coding system your operating system defaults to.
|
338
|
+
For many users this will be `UTF-8`, the de facto standard for the web.
|
339
|
+
For some users, though, it may be a more local encoding.
|
340
|
+
|
341
|
+
If you want to use a different encoding for your stylesheet
|
342
|
+
than your operating system default,
|
343
|
+
you can use the `@charset` declaration just like in CSS.
|
344
|
+
Add `@charset "encoding-name";` at the beginning of the stylesheet
|
345
|
+
(before any whitespace or comments)
|
346
|
+
and Sass will interpret it as the given encoding.
|
347
|
+
Note that whatever encoding you use, it must be convertible to Unicode.
|
348
|
+
|
349
|
+
Sass will also respect any Unicode BOMs and non-ASCII-compatible Unicode encodings
|
350
|
+
[as specified by the CSS spec](http://www.w3.org/TR/CSS2/syndata.html#charset),
|
351
|
+
although this is *not* the recommended way
|
352
|
+
to specify the character set for a document.
|
353
|
+
Note that Sass does not support the obscure `UTF-32-2143`,
|
354
|
+
`UTF-32-3412`, `EBCDIC`, `IBM1026`, and `GSM 03.38` encodings,
|
355
|
+
since Ruby does not have support for them
|
356
|
+
and they're highly unlikely to ever be used in practice.
|
357
|
+
|
358
|
+
#### Output Encoding
|
359
|
+
|
360
|
+
In general, Sass will try to encode the output stylesheet
|
361
|
+
using the same encoding as the input stylesheet.
|
362
|
+
In order for it to do this, though, the input stylesheet must have a `@charset` declaration;
|
363
|
+
otherwise, Sass will default to encoding the output stylesheet as UTF-8.
|
364
|
+
In addition, it will add a `@charset` declaration to the output
|
365
|
+
if it's not plain ASCII.
|
366
|
+
|
367
|
+
When other stylesheets with `@charset` declarations are `@import`ed,
|
368
|
+
Sass will convert them to the same encoding as the main stylesheet.
|
369
|
+
|
370
|
+
Note that Ruby 1.8 does not have good support for character encodings,
|
371
|
+
and so Sass behaves somewhat differently when running under it than under Ruby 1.9 and later.
|
372
|
+
In Ruby 1.8, Sass simply uses the first `@charset` declaration in the stylesheet
|
373
|
+
or any of the other stylesheets it `@import`s.
|
374
|
+
|
375
|
+
## CSS Extensions
|
376
|
+
|
377
|
+
### Nested Rules
|
378
|
+
|
379
|
+
Sass allows CSS rules to be nested within one another.
|
380
|
+
The inner rule then only applies within the outer rule's selector.
|
381
|
+
For example:
|
382
|
+
|
383
|
+
#main p {
|
384
|
+
color: #00ff00;
|
385
|
+
width: 97%;
|
386
|
+
|
387
|
+
.redbox {
|
388
|
+
background-color: #ff0000;
|
389
|
+
color: #000000;
|
390
|
+
}
|
391
|
+
}
|
392
|
+
|
393
|
+
is compiled to:
|
394
|
+
|
395
|
+
#main p {
|
396
|
+
color: #00ff00;
|
397
|
+
width: 97%; }
|
398
|
+
#main p .redbox {
|
399
|
+
background-color: #ff0000;
|
400
|
+
color: #000000; }
|
401
|
+
|
402
|
+
This helps avoid repetition of parent selectors,
|
403
|
+
and makes complex CSS layouts with lots of nested selectors much simpler.
|
404
|
+
For example:
|
405
|
+
|
406
|
+
#main {
|
407
|
+
width: 97%;
|
408
|
+
|
409
|
+
p, div {
|
410
|
+
font-size: 2em;
|
411
|
+
a { font-weight: bold; }
|
412
|
+
}
|
413
|
+
|
414
|
+
pre { font-size: 3em; }
|
415
|
+
}
|
416
|
+
|
417
|
+
is compiled to:
|
418
|
+
|
419
|
+
#main {
|
420
|
+
width: 97%; }
|
421
|
+
#main p, #main div {
|
422
|
+
font-size: 2em; }
|
423
|
+
#main p a, #main div a {
|
424
|
+
font-weight: bold; }
|
425
|
+
#main pre {
|
426
|
+
font-size: 3em; }
|
427
|
+
|
428
|
+
### Referencing Parent Selectors: `&`
|
429
|
+
|
430
|
+
Sometimes it's useful to use a nested rule's parent selector
|
431
|
+
in other ways than the default.
|
432
|
+
For instance, you might want to have special styles
|
433
|
+
for when that selector is hovered over
|
434
|
+
or for when the body element has a certain class.
|
435
|
+
In these cases, you can explicitly specify where the parent selector
|
436
|
+
should be inserted using the `&` character.
|
437
|
+
For example:
|
438
|
+
|
439
|
+
a {
|
440
|
+
font-weight: bold;
|
441
|
+
text-decoration: none;
|
442
|
+
&:hover { text-decoration: underline; }
|
443
|
+
body.firefox & { font-weight: normal; }
|
444
|
+
}
|
445
|
+
|
446
|
+
is compiled to:
|
447
|
+
|
448
|
+
a {
|
449
|
+
font-weight: bold;
|
450
|
+
text-decoration: none; }
|
451
|
+
a:hover {
|
452
|
+
text-decoration: underline; }
|
453
|
+
body.firefox a {
|
454
|
+
font-weight: normal; }
|
455
|
+
|
456
|
+
`&` will be replaced with the parent selector as it appears in the CSS.
|
457
|
+
This means that if you have a deeply nested rule,
|
458
|
+
the parent selector will be fully resolved
|
459
|
+
before the `&` is replaced.
|
460
|
+
For example:
|
461
|
+
|
462
|
+
#main {
|
463
|
+
color: black;
|
464
|
+
a {
|
465
|
+
font-weight: bold;
|
466
|
+
&:hover { color: red; }
|
467
|
+
}
|
468
|
+
}
|
469
|
+
|
470
|
+
is compiled to:
|
471
|
+
|
472
|
+
#main {
|
473
|
+
color: black; }
|
474
|
+
#main a {
|
475
|
+
font-weight: bold; }
|
476
|
+
#main a:hover {
|
477
|
+
color: red; }
|
478
|
+
|
479
|
+
### Nested Properties
|
480
|
+
|
481
|
+
CSS has quite a few properties that are in "namespaces;"
|
482
|
+
for instance, `font-family`, `font-size`, and `font-weight`
|
483
|
+
are all in the `font` namespace.
|
484
|
+
In CSS, if you want to set a bunch of properties in the same namespace,
|
485
|
+
you have to type it out each time.
|
486
|
+
Sass provides a shortcut for this:
|
487
|
+
just write the namespace once,
|
488
|
+
then nest each of the sub-properties within it.
|
489
|
+
For example:
|
490
|
+
|
491
|
+
.funky {
|
492
|
+
font: {
|
493
|
+
family: fantasy;
|
494
|
+
size: 30em;
|
495
|
+
weight: bold;
|
496
|
+
}
|
497
|
+
}
|
498
|
+
|
499
|
+
is compiled to:
|
500
|
+
|
501
|
+
.funky {
|
502
|
+
font-family: fantasy;
|
503
|
+
font-size: 30em;
|
504
|
+
font-weight: bold; }
|
505
|
+
|
506
|
+
The property namespace itself can also have a value.
|
507
|
+
For example:
|
508
|
+
|
509
|
+
.funky {
|
510
|
+
font: 2px/3px {
|
511
|
+
family: fantasy;
|
512
|
+
size: 30em;
|
513
|
+
weight: bold;
|
514
|
+
}
|
515
|
+
}
|
516
|
+
|
517
|
+
is compiled to:
|
518
|
+
|
519
|
+
.funky {
|
520
|
+
font: 2px/3px;
|
521
|
+
font-family: fantasy;
|
522
|
+
font-size: 30em;
|
523
|
+
font-weight: bold; }
|
524
|
+
|
525
|
+
## Comments: `/* */` and `//` {#comments}
|
526
|
+
|
527
|
+
Sass supports standard multiline CSS comments with `/* */`,
|
528
|
+
as well as single-line comments with `//`.
|
529
|
+
The multiline comments are preserved in the CSS output where possible,
|
530
|
+
while the single-line comments are removed.
|
531
|
+
For example:
|
532
|
+
|
533
|
+
/* This comment is
|
534
|
+
* several lines long.
|
535
|
+
* since it uses the CSS comment syntax,
|
536
|
+
* it will appear in the CSS output. */
|
537
|
+
body { color: black; }
|
538
|
+
|
539
|
+
// These comments are only one line long each.
|
540
|
+
// They won't appear in the CSS output,
|
541
|
+
// since they use the single-line comment syntax.
|
542
|
+
a { color: green; }
|
543
|
+
|
544
|
+
is compiled to:
|
545
|
+
|
546
|
+
/* This comment is
|
547
|
+
* several lines long.
|
548
|
+
* since it uses the CSS comment syntax,
|
549
|
+
* it will appear in the CSS output. */
|
550
|
+
body {
|
551
|
+
color: black; }
|
552
|
+
|
553
|
+
a {
|
554
|
+
color: green; }
|
555
|
+
|
556
|
+
When the first letter of a comment is `!`, the comment will be interpolated
|
557
|
+
and always rendered into css output even in compressed output modes. This is useful for adding Copyright notices to your generated CSS.
|
558
|
+
|
559
|
+
## SassScript {#sassscript}
|
560
|
+
|
561
|
+
In addition to the plain CSS property syntax,
|
562
|
+
Sass supports a small set of extensions called SassScript.
|
563
|
+
SassScript allows properties to use
|
564
|
+
variables, arithmetic, and extra functions.
|
565
|
+
SassScript can be used in any property value.
|
566
|
+
|
567
|
+
SassScript can also be used to generate selectors and property names,
|
568
|
+
which is useful when writing [mixins](#mixins).
|
569
|
+
This is done via [interpolation](#interpolation_).
|
570
|
+
|
571
|
+
### Interactive Shell
|
572
|
+
|
573
|
+
You can easily experiment with SassScript using the interactive shell.
|
574
|
+
To launch the shell run the sass command-line with the `-i` option. At the
|
575
|
+
prompt, enter any legal SassScript expression to have it evaluated
|
576
|
+
and the result printed out for you:
|
577
|
+
|
578
|
+
$ sass -i
|
579
|
+
>> "Hello, Sassy World!"
|
580
|
+
"Hello, Sassy World!"
|
581
|
+
>> 1px + 1px + 1px
|
582
|
+
3px
|
583
|
+
>> #777 + #777
|
584
|
+
#eeeeee
|
585
|
+
>> #777 + #888
|
586
|
+
white
|
587
|
+
|
588
|
+
### Variables: `$` {#variables_}
|
589
|
+
|
590
|
+
The most straightforward way to use SassScript
|
591
|
+
is to use variables.
|
592
|
+
Variables begin with dollar signs,
|
593
|
+
and are set like CSS properties:
|
594
|
+
|
595
|
+
$width: 5em;
|
596
|
+
|
597
|
+
You can then refer to them in properties:
|
598
|
+
|
599
|
+
#main {
|
600
|
+
width: $width;
|
601
|
+
}
|
602
|
+
|
603
|
+
Variables are only available within the level of nested selectors
|
604
|
+
where they're defined.
|
605
|
+
If they're defined outside of any nested selectors,
|
606
|
+
they're available everywhere.
|
607
|
+
|
608
|
+
Variables used to use the prefix character `!`;
|
609
|
+
this still works, but it's deprecated and prints a warning.
|
610
|
+
`$` is the recommended syntax.
|
611
|
+
|
612
|
+
Variables also used to be defined with `=` rather than `:`;
|
613
|
+
this still works, but it's deprecated and prints a warning.
|
614
|
+
`:` is the recommended syntax.
|
615
|
+
|
616
|
+
### Data Types
|
617
|
+
|
618
|
+
SassScript supports four main data types:
|
619
|
+
|
620
|
+
* numbers (e.g. `1.2`, `13`, `10px`)
|
621
|
+
* strings of text, with and without quotes (e.g. `"foo"`, `'bar'`, `baz`)
|
622
|
+
* colors (e.g. `blue`, `#04a3f9`, `rgba(255, 0, 0, 0.5)`)
|
623
|
+
* booleans (e.g. `true`, `false`)
|
624
|
+
* lists of values, separated by spaces or commas (e.g. `1.5em 1em 0 2em`, `Helvetica, Arial, sans-serif`)
|
625
|
+
|
626
|
+
SassScript also supports all other types of CSS property value,
|
627
|
+
such as Unicode ranges and `!important` declarations.
|
628
|
+
However, it has no special handling for these types.
|
629
|
+
They're treated just like unquoted strings.
|
630
|
+
|
631
|
+
#### Strings {#sass-script-strings}
|
632
|
+
|
633
|
+
CSS specifies two kinds of strings: those with quotes,
|
634
|
+
such as `"Lucida Grande"` or `'http://sass-lang.com'`,
|
635
|
+
and those without quotes, such as `sans-serif` or `bold`.
|
636
|
+
SassScript recognizes both kinds,
|
637
|
+
and in general if one kind of string is used in the Sass document,
|
638
|
+
that kind of string will be used in the resulting CSS.
|
639
|
+
|
640
|
+
There is one exception to this, though:
|
641
|
+
when using [`#{}` interpolation](#interpolation_),
|
642
|
+
quoted strings are unquoted.
|
643
|
+
This makes it easier to use e.g. selector names in [mixins](#mixins).
|
644
|
+
For example:
|
645
|
+
|
646
|
+
@mixin firefox-message($selector) {
|
647
|
+
body.firefox #{$selector}:before {
|
648
|
+
content: "Hi, Firefox users!"; } }
|
649
|
+
|
650
|
+
@include firefox-message(".header");
|
651
|
+
|
652
|
+
is compiled to:
|
653
|
+
|
654
|
+
body.firefox .header:before {
|
655
|
+
content: "Hi, Firefox users!"; }
|
656
|
+
|
657
|
+
It's also worth noting that when using the [deprecated `=` property syntax](#sassscript),
|
658
|
+
all strings are interpreted as unquoted,
|
659
|
+
regardless of whether or not they're written with quotes.
|
660
|
+
|
661
|
+
#### Lists
|
662
|
+
|
663
|
+
Lists are how Sass represents the values of CSS declarations
|
664
|
+
like `margin: 10px 15px 0 0` or `font-face: Helvetica, Arial, sans-serif`.
|
665
|
+
Lists are just a series of other values, separated by either spaces or commas.
|
666
|
+
In fact, individual values count as lists, too: they're just lists with one item.
|
667
|
+
|
668
|
+
On their own, lists don't do much,
|
669
|
+
but the [Sass list functions](Sass/Script/Functions.html#list-functions)
|
670
|
+
make them useful.
|
671
|
+
The {Sass::Script::Functions#nth nth function} can access items in a list,
|
672
|
+
the {Sass::Script::Functions#join join function} can join multiple lists together,
|
673
|
+
and the {Sass::Script::Functions#append append function} can add items to lists.
|
674
|
+
The [`@each` rule](#each-directive) can also add styles for each item in a list.
|
675
|
+
|
676
|
+
In addition to containing simple values, lists can contain other lists.
|
677
|
+
For example, `1px 2px, 5px 6px` is a two-item list
|
678
|
+
containing the list `1px 2px` and the list `5px 6px`.
|
679
|
+
If the inner lists have the same separator as the outer list,
|
680
|
+
you'll need to use parentheses to make it clear
|
681
|
+
where the inner lists start and stop.
|
682
|
+
For example, `(1px 2px) (5px 6px)` is also a two-item list
|
683
|
+
containing the list `1px 2px` and the list `5px 6px`.
|
684
|
+
The difference is that the outer list is space-separated,
|
685
|
+
where before it was comma-separated.
|
686
|
+
|
687
|
+
When lists are turned into plain CSS, Sass doesn't add any parentheses,
|
688
|
+
since CSS doesn't understand them.
|
689
|
+
That means that `(1px 2px) (5px 6px)` and `1px 2px 5px 6px`
|
690
|
+
will look the same when they become CSS.
|
691
|
+
However, they aren't the same when they're Sass:
|
692
|
+
the first is a list containing two lists,
|
693
|
+
while the second is a list containing four numbers.
|
694
|
+
|
695
|
+
Lists can also have no items in them at all.
|
696
|
+
These lists are represented as `()`.
|
697
|
+
They can't be output directly to CSS;
|
698
|
+
if you try to do e.g. `font-family: ()`, Sass will raise an error.
|
699
|
+
If a list contains empty lists, as in `1px 2px () 3px`,
|
700
|
+
the empty list will be removed before it's turned into CSS.
|
701
|
+
|
702
|
+
### Operations
|
703
|
+
|
704
|
+
All types support equality operations (`==` and `!=`).
|
705
|
+
In addition, each type has its own operations
|
706
|
+
that it has special support for.
|
707
|
+
|
708
|
+
#### Number Operations
|
709
|
+
|
710
|
+
SassScript supports the standard arithmetic operations on numbers
|
711
|
+
(`+`, `-`, `*`, `/`, `%`),
|
712
|
+
and will automatically convert between units if it can:
|
713
|
+
|
714
|
+
p {
|
715
|
+
width: 1in + 8pt;
|
716
|
+
}
|
717
|
+
|
718
|
+
is compiled to:
|
719
|
+
|
720
|
+
p {
|
721
|
+
width: 1.111in; }
|
722
|
+
|
723
|
+
Relational operators
|
724
|
+
(`<`, `>`, `<=`, `>=`)
|
725
|
+
are also supported for numbers,
|
726
|
+
and equality operators
|
727
|
+
(`==`, `!=`)
|
728
|
+
are supported for all types.
|
729
|
+
|
730
|
+
##### Division and `/`
|
731
|
+
{#division-and-slash}
|
732
|
+
|
733
|
+
CSS allows `/` to appear in property values
|
734
|
+
as a way of separating numbers.
|
735
|
+
Since SassScript is an extension of the CSS property syntax,
|
736
|
+
it must support this, while also allowing `/` to be used for division.
|
737
|
+
This means that by default, if two numbers are separated by `/` in SassScript,
|
738
|
+
then they will appear that way in the resulting CSS.
|
739
|
+
|
740
|
+
However, there are three situations where the `/` will be interpreted as division.
|
741
|
+
These cover the vast majority of cases where division is actually used.
|
742
|
+
They are:
|
743
|
+
|
744
|
+
1. If the value, or any part of it, is stored in a variable.
|
745
|
+
2. If the value is surrounded by parentheses.
|
746
|
+
3. If the value is used as part of another arithmetic expression.
|
747
|
+
|
748
|
+
For example:
|
749
|
+
|
750
|
+
p {
|
751
|
+
font: 10px/8px; // Plain CSS, no division
|
752
|
+
$width: 1000px;
|
753
|
+
width: $width/2; // Uses a variable, does division
|
754
|
+
height: (500px/2); // Uses parentheses, does division
|
755
|
+
margin-left: 5px + 8px/2px; // Uses +, does division
|
756
|
+
}
|
757
|
+
|
758
|
+
is compiled to:
|
759
|
+
|
760
|
+
p {
|
761
|
+
font: 10px/8px;
|
762
|
+
width: 500px;
|
763
|
+
height: 250px;
|
764
|
+
margin-left: 9px; }
|
765
|
+
|
766
|
+
If you want to use variables along with a plain CSS `/`,
|
767
|
+
you can use `#{}` to insert them.
|
768
|
+
For example:
|
769
|
+
|
770
|
+
p {
|
771
|
+
$font-size: 12px;
|
772
|
+
$line-height: 30px;
|
773
|
+
font: #{$font-size}/#{$line-height};
|
774
|
+
}
|
775
|
+
|
776
|
+
is compiled to:
|
777
|
+
|
778
|
+
p {
|
779
|
+
font: 12px/30px;
|
780
|
+
}
|
781
|
+
|
782
|
+
#### Color Operations
|
783
|
+
|
784
|
+
All arithmetic operations are supported for color values,
|
785
|
+
where they work piecewise.
|
786
|
+
This means that the operation is performed
|
787
|
+
on the red, green, and blue components in turn.
|
788
|
+
For example:
|
789
|
+
|
790
|
+
p {
|
791
|
+
color: #010203 + #040506;
|
792
|
+
}
|
793
|
+
|
794
|
+
computes `01 + 04 = 05`, `02 + 05 = 07`, and `03 + 06 = 09`,
|
795
|
+
and is compiled to:
|
796
|
+
|
797
|
+
p {
|
798
|
+
color: #050709; }
|
799
|
+
|
800
|
+
Often it's more useful to use {Sass::Script::Functions color functions}
|
801
|
+
than to try to use color arithmetic to achieve the same effect.
|
802
|
+
|
803
|
+
Arithmetic operations also work between numbers and colors,
|
804
|
+
also piecewise.
|
805
|
+
For example:
|
806
|
+
|
807
|
+
p {
|
808
|
+
color: #010203 * 2;
|
809
|
+
}
|
810
|
+
|
811
|
+
computes `01 * 2 = 02`, `02 * 2 = 04`, and `03 * 2 = 06`,
|
812
|
+
and is compiled to:
|
813
|
+
|
814
|
+
p {
|
815
|
+
color: #020406; }
|
816
|
+
|
817
|
+
Note that colors with an alpha channel
|
818
|
+
(those created with the {Sass::Script::Functions#rgba rgba}
|
819
|
+
or {Sass::Script::Functions#hsla hsla} functions)
|
820
|
+
must have the same alpha value in order for color arithmetic
|
821
|
+
to be done with them.
|
822
|
+
The arithmetic doesn't affect the alpha value.
|
823
|
+
For example:
|
824
|
+
|
825
|
+
p {
|
826
|
+
color: rgba(255, 0, 0, 0.75) + rgba(0, 255, 0, 0.75);
|
827
|
+
}
|
828
|
+
|
829
|
+
is compiled to:
|
830
|
+
|
831
|
+
p {
|
832
|
+
color: rgba(255, 255, 0, 0.75); }
|
833
|
+
|
834
|
+
The alpha channel of a color can be adjusted using the
|
835
|
+
{Sass::Script::Functions#opacify opacify} and
|
836
|
+
{Sass::Script::Functions#transparentize transparentize} functions.
|
837
|
+
For example:
|
838
|
+
|
839
|
+
$translucent-red: rgba(255, 0, 0, 0.5);
|
840
|
+
p {
|
841
|
+
color: opacify($translucent-red, 0.8);
|
842
|
+
background-color: transparentize($translucent-red, 50%);
|
843
|
+
}
|
844
|
+
|
845
|
+
is compiled to:
|
846
|
+
|
847
|
+
p {
|
848
|
+
color: rgba(255, 0, 0, 0.9);
|
849
|
+
background-color: rgba(255, 0, 0, 0.25); }
|
850
|
+
|
851
|
+
#### String Operations
|
852
|
+
|
853
|
+
The `+` operation can be used to concatenate strings:
|
854
|
+
|
855
|
+
p {
|
856
|
+
cursor: e + -resize;
|
857
|
+
}
|
858
|
+
|
859
|
+
is compiled to:
|
860
|
+
|
861
|
+
p {
|
862
|
+
cursor: e-resize; }
|
863
|
+
|
864
|
+
Note that if a quoted string is added to an unquoted string
|
865
|
+
(that is, the quoted string is to the left of the `+`),
|
866
|
+
the result is a quoted string.
|
867
|
+
Likewise, if an unquoted string is added to a quoted string
|
868
|
+
(the unquoted string is to the left of the `+`),
|
869
|
+
the result is an unquoted string.
|
870
|
+
For example:
|
871
|
+
|
872
|
+
p:before {
|
873
|
+
content: "Foo " + Bar;
|
874
|
+
font-family: sans- + "serif"; }
|
875
|
+
|
876
|
+
is compiled to:
|
877
|
+
|
878
|
+
p:before {
|
879
|
+
content: "Foo Bar";
|
880
|
+
font-family: sans-serif; }
|
881
|
+
|
882
|
+
By default, if two values are placed next to one another,
|
883
|
+
they are concatenated with a space:
|
884
|
+
|
885
|
+
p {
|
886
|
+
margin: 3px + 4px auto;
|
887
|
+
}
|
888
|
+
|
889
|
+
is compiled to:
|
890
|
+
|
891
|
+
p {
|
892
|
+
margin: 7px auto; }
|
893
|
+
|
894
|
+
Within a string of text, #{} style interpolation can be used to
|
895
|
+
place dynamic values within the string:
|
896
|
+
|
897
|
+
p:before {
|
898
|
+
content: "I ate #{5 + 10} pies!"; }
|
899
|
+
|
900
|
+
is compiled to:
|
901
|
+
|
902
|
+
p:before {
|
903
|
+
content: "I ate 15 pies!"; }
|
904
|
+
|
905
|
+
#### Boolean Operations
|
906
|
+
|
907
|
+
SassScript supports `and`, `or`, and `not` operators
|
908
|
+
for boolean values.
|
909
|
+
|
910
|
+
#### List Operations
|
911
|
+
|
912
|
+
Lists don't support any special operations.
|
913
|
+
Instead, they're manipulated using the
|
914
|
+
[list functions](Sass/Script/Functions.html#list-functions).
|
915
|
+
|
916
|
+
### Parentheses
|
917
|
+
|
918
|
+
Parentheses can be used to affect the order of operations:
|
919
|
+
|
920
|
+
p {
|
921
|
+
width: 1em + (2em * 3);
|
922
|
+
}
|
923
|
+
|
924
|
+
is compiled to:
|
925
|
+
|
926
|
+
p {
|
927
|
+
width: 7em; }
|
928
|
+
|
929
|
+
### Functions
|
930
|
+
|
931
|
+
SassScript defines some useful functions
|
932
|
+
that are called using the normal CSS function syntax:
|
933
|
+
|
934
|
+
p {
|
935
|
+
color: hsl(0, 100%, 50%);
|
936
|
+
}
|
937
|
+
|
938
|
+
is compiled to:
|
939
|
+
|
940
|
+
p {
|
941
|
+
color: #ff0000; }
|
942
|
+
|
943
|
+
#### Keyword Arguments
|
944
|
+
|
945
|
+
Sass functions can also be called using explicit keyword arguments.
|
946
|
+
The above example can also be written as:
|
947
|
+
|
948
|
+
p {
|
949
|
+
color: hsl($hue: 0, $saturation: 100%, $lightness: 50%);
|
950
|
+
}
|
951
|
+
|
952
|
+
While this is less concise, it can make the stylesheet easier to read.
|
953
|
+
It also allows functions to present more flexible interfaces,
|
954
|
+
providing many arguments without becoming difficult to call.
|
955
|
+
|
956
|
+
Named arguments can be passed in any order, and arguments with default values can be omitted.
|
957
|
+
Since the named arguments are variable names, underscores and dashes can be used interchangeably.
|
958
|
+
|
959
|
+
See {Sass::Script::Functions} for a full listing of Sass functions and their argument names,
|
960
|
+
as well as instructions on defining your own in Ruby.
|
961
|
+
|
962
|
+
### Interpolation: `#{}` {#interpolation_}
|
963
|
+
|
964
|
+
You can also use SassScript variables in selectors
|
965
|
+
and property names using #{} interpolation syntax:
|
966
|
+
|
967
|
+
$name: foo;
|
968
|
+
$attr: border;
|
969
|
+
p.#{$name} { #{$attr}-color: blue }
|
970
|
+
|
971
|
+
is compiled to:
|
972
|
+
|
973
|
+
p.foo {
|
974
|
+
border-color: blue; }
|
975
|
+
|
976
|
+
It's also possible to use `#{}` to put SassScript into property values.
|
977
|
+
In most cases this isn't any better than using a variable,
|
978
|
+
but using `#{}` does mean that any operations near it
|
979
|
+
will be treated as plain CSS.
|
980
|
+
For example:
|
981
|
+
|
982
|
+
p {
|
983
|
+
$font-size: 12px;
|
984
|
+
$line-height: 30px;
|
985
|
+
font: #{$font-size}/#{$line-height};
|
986
|
+
}
|
987
|
+
|
988
|
+
is compiled to:
|
989
|
+
|
990
|
+
p {
|
991
|
+
font: 12px/30px;
|
992
|
+
}
|
993
|
+
|
994
|
+
### Variable Defaults: `!default`
|
995
|
+
|
996
|
+
You can assign to variables if they aren't already assigned
|
997
|
+
by adding the `!default` flag to the end of the value.
|
998
|
+
This means that if the variable has already been assigned to,
|
999
|
+
it won't be re-assigned,
|
1000
|
+
but if it doesn't have a value yet, it will be given one.
|
1001
|
+
|
1002
|
+
For example:
|
1003
|
+
|
1004
|
+
$content: "First content";
|
1005
|
+
$content: "Second content?" !default;
|
1006
|
+
$new_content: "First time reference" !default;
|
1007
|
+
|
1008
|
+
#main {
|
1009
|
+
content: $content;
|
1010
|
+
new-content: $new_content;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
is compiled to:
|
1014
|
+
|
1015
|
+
#main {
|
1016
|
+
content: "First content";
|
1017
|
+
new-content: "First time reference"; }
|
1018
|
+
|
1019
|
+
## `@`-Rules and Directives {#directives}
|
1020
|
+
|
1021
|
+
Sass supports all CSS3 `@`-rules,
|
1022
|
+
as well as some additional Sass-specific ones
|
1023
|
+
known as "directives."
|
1024
|
+
These have various effects in Sass, detailed below.
|
1025
|
+
See also [control directives](#control-directives)
|
1026
|
+
and [mixin directives](#mixins).
|
1027
|
+
|
1028
|
+
### `@import` {#import}
|
1029
|
+
|
1030
|
+
Sass extends the CSS `@import` rule
|
1031
|
+
to allow it to import SCSS and Sass files.
|
1032
|
+
All imported SCSS and Sass files will be merged together
|
1033
|
+
into a single CSS output file.
|
1034
|
+
In addition, any variables or [mixins](#mixins)
|
1035
|
+
defined in imported files can be used in the main file.
|
1036
|
+
|
1037
|
+
Sass looks for other Sass files in the current directory,
|
1038
|
+
and the Sass file directory under Rack, Rails, or Merb.
|
1039
|
+
Additional search directories may be specified
|
1040
|
+
using the [`:load_paths`](#load_paths-option) option,
|
1041
|
+
or the `--load-path` option on the command line.
|
1042
|
+
|
1043
|
+
`@import` takes a filename to import.
|
1044
|
+
By default, it looks for a Sass file to import directly,
|
1045
|
+
but there are a few circumstances under which it will compile to a CSS `@import` rule:
|
1046
|
+
|
1047
|
+
* If the file's extension is `.css`.
|
1048
|
+
* If the filename begins with `http://`.
|
1049
|
+
* If the filename is a `url()`.
|
1050
|
+
* If the `@import` has any media queries.
|
1051
|
+
|
1052
|
+
If none of the above conditions are met
|
1053
|
+
and the extension is `.scss` or `.sass`,
|
1054
|
+
then the named Sass or SCSS file will be imported.
|
1055
|
+
If there is no extension,
|
1056
|
+
Sass will try to find a file with that name and the `.scss` or `.sass` extension
|
1057
|
+
and import it.
|
1058
|
+
|
1059
|
+
For example,
|
1060
|
+
|
1061
|
+
@import "foo.scss";
|
1062
|
+
|
1063
|
+
or
|
1064
|
+
|
1065
|
+
@import "foo";
|
1066
|
+
|
1067
|
+
would both import the file `foo.scss`,
|
1068
|
+
whereas
|
1069
|
+
|
1070
|
+
@import "foo.css";
|
1071
|
+
@import "foo" screen;
|
1072
|
+
@import "http://foo.com/bar";
|
1073
|
+
@import url(foo);
|
1074
|
+
|
1075
|
+
would all compile to
|
1076
|
+
|
1077
|
+
@import "foo.css";
|
1078
|
+
@import "foo" screen;
|
1079
|
+
@import "http://foo.com/bar";
|
1080
|
+
@import url(foo);
|
1081
|
+
|
1082
|
+
It's also possible to import multiple files in one `@import`. For example:
|
1083
|
+
|
1084
|
+
@import "rounded-corners", "text-shadow";
|
1085
|
+
|
1086
|
+
would import both the `rounded-corners` and the `text-shadow` files.
|
1087
|
+
|
1088
|
+
#### Partials {#partials}
|
1089
|
+
|
1090
|
+
If you have a SCSS or Sass file that you want to import
|
1091
|
+
but don't want to compile to a CSS file,
|
1092
|
+
you can add an underscore to the beginning of the filename.
|
1093
|
+
This will tell Sass not to compile it to a normal CSS file.
|
1094
|
+
You can then import these files without using the underscore.
|
1095
|
+
|
1096
|
+
For example, you might have `_colors.scss`.
|
1097
|
+
Then no `_colors.css` file would be created,
|
1098
|
+
and you can do
|
1099
|
+
|
1100
|
+
@import "colors";
|
1101
|
+
|
1102
|
+
and `_colors.scss` would be imported.
|
1103
|
+
|
1104
|
+
#### Nested `@import` {#nested-import}
|
1105
|
+
|
1106
|
+
Although most of the time it's most useful to just have `@import`s
|
1107
|
+
at the top level of the document,
|
1108
|
+
it is possible to include them within CSS rules and `@media` rules.
|
1109
|
+
Like a base-level `@import`, this includes the contents of the `@import`ed file.
|
1110
|
+
However, the imported rules will be nested in the same place as the original `@import`.
|
1111
|
+
|
1112
|
+
For example, if `example.scss` contains
|
1113
|
+
|
1114
|
+
.example {
|
1115
|
+
color: red;
|
1116
|
+
}
|
1117
|
+
|
1118
|
+
then
|
1119
|
+
|
1120
|
+
#main {
|
1121
|
+
@import "example";
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
would compile to
|
1125
|
+
|
1126
|
+
#main .example {
|
1127
|
+
color: red;
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
Directives that are only allowed at the base level of a document,
|
1131
|
+
like `@mixin` or `@charset`, are not allowed in files that are `@import`ed
|
1132
|
+
in a nested context.
|
1133
|
+
|
1134
|
+
It's not possible to nest `@import` within mixins or control directives.
|
1135
|
+
|
1136
|
+
### `@media` {#media}
|
1137
|
+
|
1138
|
+
`@media` directives in Sass behave just like they do in plain CSS,
|
1139
|
+
with one extra capability: they can be nested in CSS rules.
|
1140
|
+
If a `@media` directive appears within a CSS rule,
|
1141
|
+
it will be bubbled up to the top level of the stylesheet,
|
1142
|
+
putting all the selectors on the way inside the rule.
|
1143
|
+
This makes it easy to add media-specific styles
|
1144
|
+
without having to repeat selectors
|
1145
|
+
or break the flow of the stylesheet.
|
1146
|
+
For example:
|
1147
|
+
|
1148
|
+
.sidebar {
|
1149
|
+
width: 300px;
|
1150
|
+
@media screen and (orientation: landscape) {
|
1151
|
+
width: 500px;
|
1152
|
+
}
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
is compiled to:
|
1156
|
+
|
1157
|
+
.sidebar {
|
1158
|
+
width: 300px;
|
1159
|
+
}
|
1160
|
+
@media screen and (orientation: landscape) {
|
1161
|
+
.sidebar {
|
1162
|
+
width: 500px;
|
1163
|
+
}
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
`@media` queries can also be nested within one another.
|
1167
|
+
The queries will then be combined using the `and` operator.
|
1168
|
+
For example:
|
1169
|
+
|
1170
|
+
@media screen {
|
1171
|
+
.sidebar {
|
1172
|
+
@media (orientation: landscape) {
|
1173
|
+
width: 500px;
|
1174
|
+
}
|
1175
|
+
}
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
is compiled to:
|
1179
|
+
|
1180
|
+
@media screen and (orientation: landscape) {
|
1181
|
+
.sidebar {
|
1182
|
+
width: 500px;
|
1183
|
+
}
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
### `@extend` {#extend}
|
1187
|
+
|
1188
|
+
There are often cases when designing a page
|
1189
|
+
when one class should have all the styles of another class,
|
1190
|
+
as well as its own specific styles.
|
1191
|
+
The most common way of handling this is to use both the more general class
|
1192
|
+
and the more specific class in the HTML.
|
1193
|
+
For example, suppose we have a design for a normal error
|
1194
|
+
and also for a serious error. We might write our markup like so:
|
1195
|
+
|
1196
|
+
<div class="error seriousError">
|
1197
|
+
Oh no! You've been hacked!
|
1198
|
+
</div>
|
1199
|
+
|
1200
|
+
And our styles like so:
|
1201
|
+
|
1202
|
+
.error {
|
1203
|
+
border: 1px #f00;
|
1204
|
+
background-color: #fdd;
|
1205
|
+
}
|
1206
|
+
.seriousError {
|
1207
|
+
border-width: 3px;
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
Unfortunately, this means that we have to always remember
|
1211
|
+
to use `.error` with `.seriousError`.
|
1212
|
+
This is a maintenance burden, leads to tricky bugs,
|
1213
|
+
and can bring non-semantic style concerns into the markup.
|
1214
|
+
|
1215
|
+
The `@extend` directive avoids these problems
|
1216
|
+
by telling Sass that one selector should inherit the styles of another selector.
|
1217
|
+
For example:
|
1218
|
+
|
1219
|
+
.error {
|
1220
|
+
border: 1px #f00;
|
1221
|
+
background-color: #fdd;
|
1222
|
+
}
|
1223
|
+
.seriousError {
|
1224
|
+
@extend .error;
|
1225
|
+
border-width: 3px;
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
This means that all styles defined for `.error`
|
1229
|
+
are also applied to `.seriousError`,
|
1230
|
+
in addition to the styles specific to `.seriousError`.
|
1231
|
+
In effect, everything with class `.seriousError` also has class `.error`.
|
1232
|
+
|
1233
|
+
Other rules that use `.error` will work for `.seriousError` as well.
|
1234
|
+
For example, if we have special styles for errors caused by hackers:
|
1235
|
+
|
1236
|
+
.error.intrusion {
|
1237
|
+
background-image: url("/image/hacked.png");
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
Then `<div class="seriousError intrusion">`
|
1241
|
+
will have the `hacked.png` background image as well.
|
1242
|
+
|
1243
|
+
#### How it Works
|
1244
|
+
|
1245
|
+
`@extend` works by inserting the extending selector (e.g. `.seriousError`)
|
1246
|
+
anywhere in the stylesheet that the extended selector (.e.g `.error`) appears.
|
1247
|
+
Thus the example above:
|
1248
|
+
|
1249
|
+
.error {
|
1250
|
+
border: 1px #f00;
|
1251
|
+
background-color: #fdd;
|
1252
|
+
}
|
1253
|
+
.error.intrusion {
|
1254
|
+
background-image: url("/image/hacked.png");
|
1255
|
+
}
|
1256
|
+
.seriousError {
|
1257
|
+
@extend .error;
|
1258
|
+
border-width: 3px;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
is compiled to:
|
1262
|
+
|
1263
|
+
.error, .seriousError {
|
1264
|
+
border: 1px #f00;
|
1265
|
+
background-color: #fdd; }
|
1266
|
+
|
1267
|
+
.error.intrusion, .seriousError.intrusion {
|
1268
|
+
background-image: url("/image/hacked.png"); }
|
1269
|
+
|
1270
|
+
.seriousError {
|
1271
|
+
border-width: 3px; }
|
1272
|
+
|
1273
|
+
When merging selectors, `@extend` is smart enough
|
1274
|
+
to avoid unnecessary duplication,
|
1275
|
+
so something like `.seriousError.seriousError` gets translated to `.seriousError`.
|
1276
|
+
In addition, it won't produce selectors that can't match anything, like `#main#footer`.
|
1277
|
+
|
1278
|
+
#### Extending Complex Selectors
|
1279
|
+
|
1280
|
+
Class selectors aren't the only things that can be extended.
|
1281
|
+
It's possible to extend any selector involving only a single element,
|
1282
|
+
such as `.special.cool`, `a:hover`, or `a.user[href^="http://"]`.
|
1283
|
+
For example:
|
1284
|
+
|
1285
|
+
.hoverlink {@extend a:hover}
|
1286
|
+
|
1287
|
+
Just like with classes, this means that all styles defined for `a:hover`
|
1288
|
+
are also applied to `.hoverlink`.
|
1289
|
+
For example:
|
1290
|
+
|
1291
|
+
.hoverlink {@extend a:hover}
|
1292
|
+
a:hover {text-decoration: underline}
|
1293
|
+
|
1294
|
+
is compiled to:
|
1295
|
+
|
1296
|
+
a:hover, .hoverlink {text-decoration: underline}
|
1297
|
+
|
1298
|
+
Just like with `.error.intrusion` above,
|
1299
|
+
any rule that uses `a:hover` will also work for `.hoverlink`,
|
1300
|
+
even if they have other selectors as well.
|
1301
|
+
For example:
|
1302
|
+
|
1303
|
+
.hoverlink {@extend a:hover}
|
1304
|
+
.comment a.user:hover {font-weight: bold}
|
1305
|
+
|
1306
|
+
is compiled to:
|
1307
|
+
|
1308
|
+
.comment a.user:hover, .comment .hoverlink.user {font-weight: bold}
|
1309
|
+
|
1310
|
+
#### Multiple Extends
|
1311
|
+
|
1312
|
+
A single selector can extend more than one selector.
|
1313
|
+
This means that it inherits the styles of all the extended selectors.
|
1314
|
+
For example:
|
1315
|
+
|
1316
|
+
.error {
|
1317
|
+
border: 1px #f00;
|
1318
|
+
background-color: #fdd;
|
1319
|
+
}
|
1320
|
+
.attention {
|
1321
|
+
font-size: 3em;
|
1322
|
+
background-color: #ff0;
|
1323
|
+
}
|
1324
|
+
.seriousError {
|
1325
|
+
@extend .error;
|
1326
|
+
@extend .attention;
|
1327
|
+
border-width: 3px;
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
is compiled to:
|
1331
|
+
|
1332
|
+
.error, .seriousError {
|
1333
|
+
border: 1px #f00;
|
1334
|
+
background-color: #fdd; }
|
1335
|
+
|
1336
|
+
.attention, .seriousError {
|
1337
|
+
font-size: 3em;
|
1338
|
+
background-color: #ff0; }
|
1339
|
+
|
1340
|
+
.seriousError {
|
1341
|
+
border-width: 3px; }
|
1342
|
+
|
1343
|
+
In effect, everything with class `.seriousError`
|
1344
|
+
also has class `.error` *and* class `.attention`.
|
1345
|
+
Thus, the styles defined later in the document take precedence:
|
1346
|
+
`.seriousError` has background color `#ff0` rather than `#fdd`,
|
1347
|
+
since `.attention` is defined later than `.error`.
|
1348
|
+
|
1349
|
+
#### Chaining Extends
|
1350
|
+
|
1351
|
+
It's possible for one selector to extend another selector
|
1352
|
+
that in turn extends a third.
|
1353
|
+
For example:
|
1354
|
+
|
1355
|
+
.error {
|
1356
|
+
border: 1px #f00;
|
1357
|
+
background-color: #fdd;
|
1358
|
+
}
|
1359
|
+
.seriousError {
|
1360
|
+
@extend .error;
|
1361
|
+
border-width: 3px;
|
1362
|
+
}
|
1363
|
+
.criticalError {
|
1364
|
+
@extend .seriousError;
|
1365
|
+
position: fixed;
|
1366
|
+
top: 10%;
|
1367
|
+
bottom: 10%;
|
1368
|
+
left: 10%;
|
1369
|
+
right: 10%;
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
Now everything with class `.seriousError` also has class `.error`,
|
1373
|
+
and everything with class `.criticalError` has class `.seriousError`
|
1374
|
+
*and* class `.error`.
|
1375
|
+
It's compiled to:
|
1376
|
+
|
1377
|
+
.error, .seriousError, .criticalError {
|
1378
|
+
border: 1px #f00;
|
1379
|
+
background-color: #fdd; }
|
1380
|
+
|
1381
|
+
.seriousError, .criticalError {
|
1382
|
+
border-width: 3px; }
|
1383
|
+
|
1384
|
+
.criticalError {
|
1385
|
+
position: fixed;
|
1386
|
+
top: 10%;
|
1387
|
+
bottom: 10%;
|
1388
|
+
left: 10%;
|
1389
|
+
right: 10%; }
|
1390
|
+
|
1391
|
+
#### Selector Sequences
|
1392
|
+
|
1393
|
+
Selector sequences, such as `.foo .bar` or `.foo + .bar`, currently can't be extended.
|
1394
|
+
However, it is possible for nested selectors themselves to use `@extend`.
|
1395
|
+
For example:
|
1396
|
+
|
1397
|
+
#fake-links .link {@extend a}
|
1398
|
+
|
1399
|
+
a {
|
1400
|
+
color: blue;
|
1401
|
+
&:hover {text-decoration: underline}
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
is compiled to
|
1405
|
+
|
1406
|
+
a, #fake-links .link {
|
1407
|
+
color: blue; }
|
1408
|
+
a:hover, #fake-links .link:hover {
|
1409
|
+
text-decoration: underline; }
|
1410
|
+
|
1411
|
+
##### Merging Selector Sequences
|
1412
|
+
|
1413
|
+
Sometimes a selector sequence extends another selector that appears in another sequence.
|
1414
|
+
In this case, the two sequences need to be merged.
|
1415
|
+
For example:
|
1416
|
+
|
1417
|
+
#admin .tabbar a {font-weight: bold}
|
1418
|
+
#demo .overview .fakelink {@extend a}
|
1419
|
+
|
1420
|
+
While it would technically be possible
|
1421
|
+
to generate all selectors that could possibly match either sequence,
|
1422
|
+
this would make the stylesheet far too large.
|
1423
|
+
The simple example above, for instance, would require ten selectors.
|
1424
|
+
Instead, Sass generates only selectors that are likely to be useful.
|
1425
|
+
|
1426
|
+
When the two sequences being merged have no selectors in common,
|
1427
|
+
then two new selectors are generated:
|
1428
|
+
one with the first sequence before the second,
|
1429
|
+
and one with the second sequence before the first.
|
1430
|
+
For example:
|
1431
|
+
|
1432
|
+
#admin .tabbar a {font-weight: bold}
|
1433
|
+
#demo .overview .fakelink {@extend a}
|
1434
|
+
|
1435
|
+
is compiled to:
|
1436
|
+
|
1437
|
+
#admin .tabbar a,
|
1438
|
+
#admin .tabbar #demo .overview .fakelink,
|
1439
|
+
#demo .overview #admin .tabbar .fakelink {
|
1440
|
+
font-weight: bold; }
|
1441
|
+
|
1442
|
+
If the two sequences do share some selectors,
|
1443
|
+
then those selectors will be merged together
|
1444
|
+
and only the differences (if any still exist) will alternate.
|
1445
|
+
In this example, both sequences contain the id `#admin`,
|
1446
|
+
so the resulting selectors will merge those two ids:
|
1447
|
+
|
1448
|
+
#admin .tabbar a {font-weight: bold}
|
1449
|
+
#admin .overview .fakelink {@extend a}
|
1450
|
+
|
1451
|
+
This is compiled to:
|
1452
|
+
|
1453
|
+
#admin .tabbar a,
|
1454
|
+
#admin .tabbar .overview .fakelink,
|
1455
|
+
#admin .overview .tabbar .fakelink {
|
1456
|
+
font-weight: bold; }
|
1457
|
+
|
1458
|
+
### `@debug`
|
1459
|
+
|
1460
|
+
The `@debug` directive prints the value of a SassScript expression
|
1461
|
+
to the standard error output stream.
|
1462
|
+
It's useful for debugging Sass files
|
1463
|
+
that have complicated SassScript going on.
|
1464
|
+
For example:
|
1465
|
+
|
1466
|
+
@debug 10em + 12em;
|
1467
|
+
|
1468
|
+
outputs:
|
1469
|
+
|
1470
|
+
Line 1 DEBUG: 22em
|
1471
|
+
|
1472
|
+
### `@warn`
|
1473
|
+
|
1474
|
+
The `@warn` directive prints the value of a SassScript expression
|
1475
|
+
to the standard error output stream.
|
1476
|
+
It's useful for libraries that need to warn users of deprecations
|
1477
|
+
or recovering from minor mixin usage mistakes.
|
1478
|
+
There are two major distinctions between `@warn` and `@debug`:
|
1479
|
+
|
1480
|
+
1. You can turn warnings off with the `--quiet` command-line option
|
1481
|
+
or the `:quiet` Sass option.
|
1482
|
+
2. A stylesheet trace will be printed out along with the message
|
1483
|
+
so that the user being warned can see where their styles caused the warning.
|
1484
|
+
|
1485
|
+
Usage Example:
|
1486
|
+
|
1487
|
+
@mixin adjust-location($x, $y) {
|
1488
|
+
@if unitless($x) {
|
1489
|
+
@warn "Assuming #{$x} to be in pixels";
|
1490
|
+
$x: 1px * $x;
|
1491
|
+
}
|
1492
|
+
@if unitless($y) {
|
1493
|
+
@warn "Assuming #{$y} to be in pixels";
|
1494
|
+
$y: 1px * $y;
|
1495
|
+
}
|
1496
|
+
position: relative; left: $x; top: $y;
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
## Control Directives
|
1500
|
+
|
1501
|
+
SassScript supports basic control directives
|
1502
|
+
for including styles only under some conditions
|
1503
|
+
or including the same style several times with variations.
|
1504
|
+
|
1505
|
+
**Note that control directives are an advanced feature,
|
1506
|
+
and are not recommended in the course of day-to-day styling**.
|
1507
|
+
They exist mainly for use in [mixins](#mixins),
|
1508
|
+
particularly those that are part of libraries like [Compass](http://compass-style.org),
|
1509
|
+
and so require substantial flexibility.
|
1510
|
+
|
1511
|
+
### `@if`
|
1512
|
+
|
1513
|
+
The `@if` directive takes a SassScript expression
|
1514
|
+
and uses the styles nested beneath it if the expression returns
|
1515
|
+
anything other than `false`:
|
1516
|
+
|
1517
|
+
p {
|
1518
|
+
@if 1 + 1 == 2 { border: 1px solid; }
|
1519
|
+
@if 5 < 3 { border: 2px dotted; }
|
1520
|
+
}
|
1521
|
+
|
1522
|
+
is compiled to:
|
1523
|
+
|
1524
|
+
p {
|
1525
|
+
border: 1px solid; }
|
1526
|
+
|
1527
|
+
The `@if` statement can be followed by several `@else if` statements
|
1528
|
+
and one `@else` statement.
|
1529
|
+
If the `@if` statement fails,
|
1530
|
+
the `@else if` statements are tried in order
|
1531
|
+
until one succeeds or the `@else` is reached.
|
1532
|
+
For example:
|
1533
|
+
|
1534
|
+
$type: monster;
|
1535
|
+
p {
|
1536
|
+
@if $type == ocean {
|
1537
|
+
color: blue;
|
1538
|
+
} @else if $type == matador {
|
1539
|
+
color: red;
|
1540
|
+
} @else if $type == monster {
|
1541
|
+
color: green;
|
1542
|
+
} @else {
|
1543
|
+
color: black;
|
1544
|
+
}
|
1545
|
+
}
|
1546
|
+
|
1547
|
+
is compiled to:
|
1548
|
+
|
1549
|
+
p {
|
1550
|
+
color: green; }
|
1551
|
+
|
1552
|
+
### `@for`
|
1553
|
+
|
1554
|
+
The `@for` directive has two forms:
|
1555
|
+
`@for $var from <start> to <end>` or
|
1556
|
+
`@for $var from <start> through <end>`.
|
1557
|
+
`$var` can be any variable name, like `$i`,
|
1558
|
+
and `<start>` and `<end>` are SassScript expressions
|
1559
|
+
that should return integers.
|
1560
|
+
|
1561
|
+
The `@for` statement sets `$var` to each number
|
1562
|
+
from `<start>` to `<end>`,
|
1563
|
+
including `<end>` if `through` is used.
|
1564
|
+
Then it outputs the nested styles
|
1565
|
+
using that value of `$var`.
|
1566
|
+
For example:
|
1567
|
+
|
1568
|
+
@for $i from 1 through 3 {
|
1569
|
+
.item-#{$i} { width: 2em * $i; }
|
1570
|
+
}
|
1571
|
+
|
1572
|
+
is compiled to:
|
1573
|
+
|
1574
|
+
.item-1 {
|
1575
|
+
width: 2em; }
|
1576
|
+
.item-2 {
|
1577
|
+
width: 4em; }
|
1578
|
+
.item-3 {
|
1579
|
+
width: 6em; }
|
1580
|
+
|
1581
|
+
### `@each` {#each-directive}
|
1582
|
+
|
1583
|
+
The `@each` rule has the form `@each $var in <list>`.
|
1584
|
+
`$var` can be any variable name, like `$length` or `$name`,
|
1585
|
+
and `<list>` is a SassScript expression that returns a list.
|
1586
|
+
|
1587
|
+
The `@each` rule sets `$var` to each item in the list,
|
1588
|
+
then outputs the styles it contains using that value of `$var`.
|
1589
|
+
For example:
|
1590
|
+
|
1591
|
+
@each $animal in puma, sea-slug, egret, salamander {
|
1592
|
+
.#{$animal}-icon {
|
1593
|
+
background-image: url('/images/#{$animal}.png');
|
1594
|
+
}
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
is compiled to:
|
1598
|
+
|
1599
|
+
.puma-icon {
|
1600
|
+
background-image: url('/images/puma.png'); }
|
1601
|
+
.sea-slug-icon {
|
1602
|
+
background-image: url('/images/sea-slug.png'); }
|
1603
|
+
.egret-icon {
|
1604
|
+
background-image: url('/images/egret.png'); }
|
1605
|
+
.salamander-icon {
|
1606
|
+
background-image: url('/images/salamander.png'); }
|
1607
|
+
|
1608
|
+
### `@while`
|
1609
|
+
|
1610
|
+
The `@while` directive takes a SassScript expression
|
1611
|
+
and repeatedly outputs the nested styles
|
1612
|
+
until the statement evaluates to `false`.
|
1613
|
+
This can be used to achieve more complex looping
|
1614
|
+
than the `@for` statement is capable of,
|
1615
|
+
although this is rarely necessary.
|
1616
|
+
For example:
|
1617
|
+
|
1618
|
+
$i: 6;
|
1619
|
+
@while $i > 0 {
|
1620
|
+
.item-#{$i} { width: 2em * $i; }
|
1621
|
+
$i: $i - 2;
|
1622
|
+
}
|
1623
|
+
|
1624
|
+
is compiled to:
|
1625
|
+
|
1626
|
+
.item-6 {
|
1627
|
+
width: 12em; }
|
1628
|
+
|
1629
|
+
.item-4 {
|
1630
|
+
width: 8em; }
|
1631
|
+
|
1632
|
+
.item-2 {
|
1633
|
+
width: 4em; }
|
1634
|
+
|
1635
|
+
## Mixin Directives {#mixins}
|
1636
|
+
|
1637
|
+
Mixins allow you to define styles
|
1638
|
+
that can be re-used throughout the stylesheet
|
1639
|
+
without needing to resort to non-semantic classes like `.float-left`.
|
1640
|
+
Mixins can also contain full CSS rules,
|
1641
|
+
and anything else allowed elsewhere in a Sass document.
|
1642
|
+
They can even take [arguments](#mixin-arguments)
|
1643
|
+
which allows you to produce a wide variety of styles
|
1644
|
+
with very few mixins.
|
1645
|
+
|
1646
|
+
### Defining a Mixin: `@mixin` {#defining_a_mixin}
|
1647
|
+
|
1648
|
+
Mixins are defined with the `@mixin` directive.
|
1649
|
+
It's followed by the name of the mixin
|
1650
|
+
and optionally the [arguments](#mixin-arguments),
|
1651
|
+
and a block containing the contents of the mixin.
|
1652
|
+
For example, the `large-text` mixin is defined as follows:
|
1653
|
+
|
1654
|
+
@mixin large-text {
|
1655
|
+
font: {
|
1656
|
+
family: Arial;
|
1657
|
+
size: 20px;
|
1658
|
+
weight: bold;
|
1659
|
+
}
|
1660
|
+
color: #ff0000;
|
1661
|
+
}
|
1662
|
+
|
1663
|
+
Mixins may also contain selectors,
|
1664
|
+
possibly mixed with properties.
|
1665
|
+
The selectors can even contain [parent references](#referencing_parent_selectors_).
|
1666
|
+
For example:
|
1667
|
+
|
1668
|
+
@mixin clearfix {
|
1669
|
+
display: inline-block;
|
1670
|
+
&:after {
|
1671
|
+
content: ".";
|
1672
|
+
display: block;
|
1673
|
+
height: 0;
|
1674
|
+
clear: both;
|
1675
|
+
visibility: hidden;
|
1676
|
+
}
|
1677
|
+
* html & { height: 1px }
|
1678
|
+
}
|
1679
|
+
|
1680
|
+
### Including a Mixin: `@include` {#including_a_mixin}
|
1681
|
+
|
1682
|
+
Mixins are included in the document
|
1683
|
+
with the `@include` directive.
|
1684
|
+
This takes the name of a mixin
|
1685
|
+
and optionally [arguments to pass to it](#mixin-arguments),
|
1686
|
+
and includes the styles defined by that mixin
|
1687
|
+
into the current rule.
|
1688
|
+
For example:
|
1689
|
+
|
1690
|
+
.page-title {
|
1691
|
+
@include large-text;
|
1692
|
+
padding: 4px;
|
1693
|
+
margin-top: 10px;
|
1694
|
+
}
|
1695
|
+
|
1696
|
+
is compiled to:
|
1697
|
+
|
1698
|
+
.page-title {
|
1699
|
+
font-family: Arial;
|
1700
|
+
font-size: 20px;
|
1701
|
+
font-weight: bold;
|
1702
|
+
color: #ff0000;
|
1703
|
+
padding: 4px;
|
1704
|
+
margin-top: 10px; }
|
1705
|
+
|
1706
|
+
Mixins may also be included outside of any rule
|
1707
|
+
(that is, at the root of the document)
|
1708
|
+
as long as they don't directly define any properties
|
1709
|
+
or use any parent references.
|
1710
|
+
For example:
|
1711
|
+
|
1712
|
+
@mixin silly-links {
|
1713
|
+
a {
|
1714
|
+
color: blue;
|
1715
|
+
background-color: red;
|
1716
|
+
}
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
@include silly-links;
|
1720
|
+
|
1721
|
+
is compiled to:
|
1722
|
+
|
1723
|
+
a {
|
1724
|
+
color: blue;
|
1725
|
+
background-color: red; }
|
1726
|
+
|
1727
|
+
Mixin definitions can also include other mixins.
|
1728
|
+
For example:
|
1729
|
+
|
1730
|
+
@mixin compound {
|
1731
|
+
@include highlighted-background;
|
1732
|
+
@include header-text;
|
1733
|
+
}
|
1734
|
+
|
1735
|
+
@mixin highlighted-background { background-color: #fc0; }
|
1736
|
+
@mixin header-text { font-size: 20px; }
|
1737
|
+
|
1738
|
+
Mixins that only define descendent selectors, can be safely mixed
|
1739
|
+
into the top most level of a document.
|
1740
|
+
|
1741
|
+
### Arguments {#mixin-arguments}
|
1742
|
+
|
1743
|
+
Mixins can take arguments SassScript values as arguments,
|
1744
|
+
which are given when the mixin is included
|
1745
|
+
and made available within the mixin as variables.
|
1746
|
+
|
1747
|
+
When defining a mixin,
|
1748
|
+
the arguments are written as variable names separated by commas,
|
1749
|
+
all in parentheses after the name.
|
1750
|
+
Then when including the mixin,
|
1751
|
+
values can be passed in in the same manner.
|
1752
|
+
For example:
|
1753
|
+
|
1754
|
+
@mixin sexy-border($color, $width) {
|
1755
|
+
border: {
|
1756
|
+
color: $color;
|
1757
|
+
width: $width;
|
1758
|
+
style: dashed;
|
1759
|
+
}
|
1760
|
+
}
|
1761
|
+
|
1762
|
+
p { @include sexy-border(blue, 1in); }
|
1763
|
+
|
1764
|
+
is compiled to:
|
1765
|
+
|
1766
|
+
p {
|
1767
|
+
border-color: blue;
|
1768
|
+
border-width: 1in;
|
1769
|
+
border-style: dashed; }
|
1770
|
+
|
1771
|
+
Mixins can also specify default values for their arguments
|
1772
|
+
using the normal variable-setting syntax.
|
1773
|
+
Then when the mixin is included,
|
1774
|
+
if it doesn't pass in that argument,
|
1775
|
+
the default value will be used instead.
|
1776
|
+
For example:
|
1777
|
+
|
1778
|
+
@mixin sexy-border($color, $width: 1in) {
|
1779
|
+
border: {
|
1780
|
+
color: $color;
|
1781
|
+
width: $width;
|
1782
|
+
style: dashed;
|
1783
|
+
}
|
1784
|
+
}
|
1785
|
+
p { @include sexy-border(blue); }
|
1786
|
+
h1 { @include sexy-border(blue, 2in); }
|
1787
|
+
|
1788
|
+
is compiled to:
|
1789
|
+
|
1790
|
+
p {
|
1791
|
+
border-color: blue;
|
1792
|
+
border-width: 1in;
|
1793
|
+
border-style: dashed; }
|
1794
|
+
|
1795
|
+
h1 {
|
1796
|
+
border-color: blue;
|
1797
|
+
border-width: 2in;
|
1798
|
+
border-style: dashed; }
|
1799
|
+
|
1800
|
+
#### Keyword Arguments
|
1801
|
+
|
1802
|
+
Mixins can also be included using explicit keyword arguments.
|
1803
|
+
For instance, we the above example could be written as:
|
1804
|
+
|
1805
|
+
p { @include sexy-border($color: blue); }
|
1806
|
+
h1 { @include sexy-border($color: blue, $width: 2in); }
|
1807
|
+
|
1808
|
+
While this is less concise, it can make the stylesheet easier to read.
|
1809
|
+
It also allows functions to present more flexible interfaces,
|
1810
|
+
providing many arguments without becoming difficult to call.
|
1811
|
+
|
1812
|
+
Named arguments can be passed in any order, and arguments with default values can be omitted.
|
1813
|
+
Since the named arguments are variable names, underscores and dashes can be used interchangeably.
|
1814
|
+
|
1815
|
+
## Function Directives {#functions}
|
1816
|
+
|
1817
|
+
It is possible to define your own functions in sass and use them in any
|
1818
|
+
value or script context. For example:
|
1819
|
+
|
1820
|
+
$grid-width: 40px;
|
1821
|
+
$gutter-width: 10px;
|
1822
|
+
|
1823
|
+
@function grid-width($n) {
|
1824
|
+
@return $n * $grid-width + ($n - 1) * $gutter-width;
|
1825
|
+
}
|
1826
|
+
|
1827
|
+
#sidebar { width: grid-width(5); }
|
1828
|
+
|
1829
|
+
Becomes:
|
1830
|
+
|
1831
|
+
#sidebar {
|
1832
|
+
width: 240px; }
|
1833
|
+
|
1834
|
+
As you can see functions can access any globally defined variables as well as
|
1835
|
+
accept arguments just like a mixin. A function may have several statements
|
1836
|
+
contained within it, and you must call `@return` to set the return value of
|
1837
|
+
the function.
|
1838
|
+
|
1839
|
+
As with mixins, you can call Sass-defined functions using keyword arguments.
|
1840
|
+
In the above example we could have called the function like this:
|
1841
|
+
|
1842
|
+
#sidebar { width: grid-width($n: 5); }
|
1843
|
+
|
1844
|
+
It is recommended that you prefix your functions to avoid naming conflicts
|
1845
|
+
and so that readers of your stylesheets know they are not part of Sass or CSS. For example, if you work for ACME Corp, you might have named the function above `-acme-grid-width`.
|
1846
|
+
|
1847
|
+
## Output Style
|
1848
|
+
|
1849
|
+
Although the default CSS style that Sass outputs is very nice
|
1850
|
+
and reflects the structure of the document,
|
1851
|
+
tastes and needs vary and so Sass supports several other styles.
|
1852
|
+
|
1853
|
+
Sass allows you to choose between four different output styles
|
1854
|
+
by setting the [`:style` option](#style-option)
|
1855
|
+
or using the `--style` command-line flag.
|
1856
|
+
|
1857
|
+
### `:nested`
|
1858
|
+
|
1859
|
+
Nested style is the default Sass style,
|
1860
|
+
because it reflects the structure of the CSS styles
|
1861
|
+
and the HTML document they're styling.
|
1862
|
+
Each property has its own line,
|
1863
|
+
but the indentation isn't constant.
|
1864
|
+
Each rule is indented based on how deeply it's nested.
|
1865
|
+
For example:
|
1866
|
+
|
1867
|
+
#main {
|
1868
|
+
color: #fff;
|
1869
|
+
background-color: #000; }
|
1870
|
+
#main p {
|
1871
|
+
width: 10em; }
|
1872
|
+
|
1873
|
+
.huge {
|
1874
|
+
font-size: 10em;
|
1875
|
+
font-weight: bold;
|
1876
|
+
text-decoration: underline; }
|
1877
|
+
|
1878
|
+
Nested style is very useful when looking at large CSS files:
|
1879
|
+
it allows you to easily grasp the structure of the file
|
1880
|
+
without actually reading anything.
|
1881
|
+
|
1882
|
+
### `:expanded`
|
1883
|
+
|
1884
|
+
Expanded is a more typical human-made CSS style,
|
1885
|
+
with each property and rule taking up one line.
|
1886
|
+
Properties are indented within the rules,
|
1887
|
+
but the rules aren't indented in any special way.
|
1888
|
+
For example:
|
1889
|
+
|
1890
|
+
#main {
|
1891
|
+
color: #fff;
|
1892
|
+
background-color: #000;
|
1893
|
+
}
|
1894
|
+
#main p {
|
1895
|
+
width: 10em;
|
1896
|
+
}
|
1897
|
+
|
1898
|
+
.huge {
|
1899
|
+
font-size: 10em;
|
1900
|
+
font-weight: bold;
|
1901
|
+
text-decoration: underline;
|
1902
|
+
}
|
1903
|
+
|
1904
|
+
### `:compact`
|
1905
|
+
|
1906
|
+
Compact style takes up less space than Nested or Expanded.
|
1907
|
+
It also draws the focus more to the selectors than to their properties.
|
1908
|
+
Each CSS rule takes up only one line,
|
1909
|
+
with every property defined on that line.
|
1910
|
+
Nested rules are placed next to each other with no newline,
|
1911
|
+
while separate groups of rules have newlines between them.
|
1912
|
+
For example:
|
1913
|
+
|
1914
|
+
#main { color: #fff; background-color: #000; }
|
1915
|
+
#main p { width: 10em; }
|
1916
|
+
|
1917
|
+
.huge { font-size: 10em; font-weight: bold; text-decoration: underline; }
|
1918
|
+
|
1919
|
+
### `:compressed`
|
1920
|
+
|
1921
|
+
Compressed style takes up the minimum amount of space possible,
|
1922
|
+
having no whitespace except that necessary to separate selectors
|
1923
|
+
and a newline at the end of the file.
|
1924
|
+
It also includes some other minor compressions,
|
1925
|
+
such as choosing the smallest representation for colors.
|
1926
|
+
It's not meant to be human-readable.
|
1927
|
+
For example:
|
1928
|
+
|
1929
|
+
#main{color:#fff;background-color:#000}#main p{width:10em}.huge{font-size:10em;font-weight:bold;text-decoration:underline}
|
1930
|
+
|
1931
|
+
## Extending Sass
|
1932
|
+
|
1933
|
+
Sass provides a number of advanced customizations for users with unique requirements.
|
1934
|
+
Using these features requires a strong understanding of Ruby.
|
1935
|
+
|
1936
|
+
### Defining Custom Sass Functions
|
1937
|
+
|
1938
|
+
Users can define their own Sass functions using the Ruby API.
|
1939
|
+
For more information, see the [source documentation](Sass/Script/Functions.html#adding_custom_functions).
|
1940
|
+
|
1941
|
+
### Cache Stores
|
1942
|
+
|
1943
|
+
Sass caches parsed documents so that they can be reused without parsing them again
|
1944
|
+
unless they have changed. By default, Sass will write these cache files to a location
|
1945
|
+
on the filesystem indicated by [`:cache_location`](#cache_location-option). If you
|
1946
|
+
cannot write to the filesystem or need to share cache across ruby processes or machines,
|
1947
|
+
then you can define your own cache store and set the[`:cache_store`
|
1948
|
+
option](#cache_store-option). For details on creating your own cache store, please
|
1949
|
+
see the {Sass::CacheStores::Base source documentation}.
|
1950
|
+
|
1951
|
+
### Custom Importers
|
1952
|
+
|
1953
|
+
Sass importers are in charge of taking paths passed to `@import` and finding the
|
1954
|
+
appropriate Sass code for those paths. By default, this code is loaded from
|
1955
|
+
the {Sass::Importers::Filesystem filesystem}, but importers could be added to load
|
1956
|
+
from a database, over HTTP, or use a different file naming scheme than what Sass expects.
|
1957
|
+
|
1958
|
+
Each importer is in charge of a single load path (or whatever the corresponding notion
|
1959
|
+
is for the backend). Importers can be placed in the {file:SASS_REFERENCE.md#load_paths-option
|
1960
|
+
`:load_paths` array} alongside normal filesystem paths.
|
1961
|
+
|
1962
|
+
When resolving an `@import`, Sass will go through the load paths looking for an importer
|
1963
|
+
that successfully imports the path. Once one is found, the imported file is used.
|
1964
|
+
|
1965
|
+
User-created importers must inherit from {Sass::Importers::Base}.
|