challah 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +4 -0
- data/README.md +0 -4
- data/lib/challah/cookie_store.rb +8 -110
- data/lib/challah/simple_cookie_store.rb +124 -0
- data/lib/challah/version.rb +1 -1
- data/lib/challah.rb +8 -6
- data/test/simple_cookie_store_test.rb +97 -0
- data/vendor/bundle/cache/actionmailer-3.2.1.gem +0 -0
- data/vendor/bundle/cache/actionpack-3.2.1.gem +0 -0
- data/vendor/bundle/cache/activemodel-3.2.1.gem +0 -0
- data/vendor/bundle/cache/activerecord-3.2.1.gem +0 -0
- data/vendor/bundle/cache/activeresource-3.2.1.gem +0 -0
- data/vendor/bundle/cache/activesupport-3.2.1.gem +0 -0
- data/vendor/bundle/cache/arel-3.0.0.gem +0 -0
- data/vendor/bundle/cache/factory_girl-2.5.1.gem +0 -0
- data/vendor/bundle/cache/journey-1.0.1.gem +0 -0
- data/vendor/bundle/cache/mocha-0.10.3.gem +0 -0
- data/vendor/bundle/cache/multi_json-1.0.4.gem +0 -0
- data/vendor/bundle/cache/rack-cache-1.1.gem +0 -0
- data/vendor/bundle/cache/rails-3.2.1.gem +0 -0
- data/vendor/bundle/cache/railties-3.2.1.gem +0 -0
- data/vendor/bundle/cache/simplecov-0.5.4.gem +0 -0
- data/vendor/bundle/cache/tzinfo-0.3.31.gem +0 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/CHANGELOG.md +461 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/MIT-LICENSE +21 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/README.rdoc +163 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/base.rb +736 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/collector.rb +30 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/delivery_methods.rb +86 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/log_subscriber.rb +22 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/mail_helper.rb +56 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/railtie.rb +44 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/test_case.rb +82 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/test_helper.rb +61 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer/version.rb +10 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/action_mailer.rb +49 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/rails/generators/mailer/USAGE +18 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/rails/generators/mailer/mailer_generator.rb +16 -0
- data/vendor/bundle/gems/actionmailer-3.2.1/lib/rails/generators/mailer/templates/mailer.rb +18 -0
- data/vendor/bundle/gems/actionpack-3.2.1/CHANGELOG.md +5835 -0
- data/vendor/bundle/gems/actionpack-3.2.1/MIT-LICENSE +21 -0
- data/vendor/bundle/gems/actionpack-3.2.1/README.rdoc +341 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/asset_paths.rb +10 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/base.rb +213 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/callbacks.rb +198 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/collector.rb +32 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/helpers.rb +167 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/layouts.rb +424 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/logger.rb +13 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/railties/routes_helpers.rb +18 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/rendering.rb +178 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/translation.rb +13 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/url_for.rb +33 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller/view_paths.rb +96 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/abstract_controller.rb +28 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/base.rb +236 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/caching/actions.rb +183 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/caching/fragments.rb +127 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/caching/pages.rb +187 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/caching/sweeping.rb +97 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/caching.rb +83 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/deprecated/integration_test.rb +2 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/deprecated/performance_test.rb +1 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/deprecated.rb +3 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/log_subscriber.rb +66 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/compatibility.rb +64 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/conditional_get.rb +131 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/cookies.rb +16 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/data_streaming.rb +157 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/exceptions.rb +46 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/flash.rb +28 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/force_ssl.rb +38 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/head.rb +34 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/helpers.rb +113 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/hide_actions.rb +47 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/http_authentication.rb +466 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/implicit_render.rb +19 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/instrumentation.rb +105 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/mime_responds.rb +310 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/params_wrapper.rb +238 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/rack_delegation.rb +26 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/redirecting.rb +99 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/renderers.rb +109 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/rendering.rb +65 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/request_forgery_protection.rb +113 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/rescue.rb +35 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/responder.rb +278 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/session_management.rb +9 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/streaming.rb +229 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/testing.rb +37 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal/url_for.rb +47 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/metal.rb +250 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/middleware.rb +39 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/railtie.rb +51 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/railties/paths.rb +25 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/record_identifier.rb +85 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/test_case.rb +548 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/node.rb +532 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +177 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/selector.rb +830 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +107 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner.rb +20 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller.rb +65 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/cache.rb +123 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/filter_parameters.rb +70 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/headers.rb +31 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/mime_negotiation.rb +110 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/mime_type.rb +274 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/mime_types.rb +35 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/parameter_filter.rb +74 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/parameters.rb +79 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/rack_cache.rb +62 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/request.rb +257 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/response.rb +206 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/upload.rb +47 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/http/url.rb +174 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/best_standards_support.rb +22 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/body_proxy.rb +30 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/callbacks.rb +32 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/cookies.rb +350 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/debug_exceptions.rb +82 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/exception_wrapper.rb +78 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/flash.rb +263 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/head.rb +18 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/params_parser.rb +75 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/public_exceptions.rb +30 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/reloader.rb +89 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/remote_ip.rb +81 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/request_id.rb +39 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/rescue.rb +26 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/session/abstract_store.rb +79 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/session/cache_store.rb +50 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/session/cookie_store.rb +71 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/session/mem_cache_store.rb +17 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/show_exceptions.rb +87 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/stack.rb +123 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb +56 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb +31 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb +26 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb +10 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/layout.erb +32 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb +2 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +15 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb +17 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb +2 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/railtie.rb +34 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing/mapper.rb +1507 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing/polymorphic_routes.rb +203 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing/redirection.rb +114 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing/route_set.rb +647 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing/routes_proxy.rb +39 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing/url_for.rb +167 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/routing.rb +293 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/assertions/dom.rb +37 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/assertions/response.rb +96 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/assertions/routing.rb +217 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/assertions/selector.rb +434 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/assertions/tag.rb +138 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/assertions.rb +18 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/integration.rb +479 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/performance_test.rb +10 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/test_process.rb +41 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/test_request.rb +74 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/testing/test_response.rb +29 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch.rb +102 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_pack/version.rb +10 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_pack.rb +24 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/asset_paths.rb +136 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/base.rb +220 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/buffers.rb +43 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/context.rb +36 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/flows.rb +79 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/active_model_helper.rb +50 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/asset_paths.rb +7 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/asset_tag_helper.rb +457 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb +146 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb +92 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb +192 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb +148 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/atom_feed_helper.rb +200 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/cache_helper.rb +64 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/capture_helper.rb +203 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/controller_helper.rb +23 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/csrf_helper.rb +32 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/date_helper.rb +1051 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/debug_helper.rb +40 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/form_helper.rb +1480 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/form_options_helper.rb +658 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/form_tag_helper.rb +665 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/javascript_helper.rb +110 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/number_helper.rb +539 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/output_safety_helper.rb +38 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/record_tag_helper.rb +109 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/rendering_helper.rb +90 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/sanitize_helper.rb +259 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/tag_helper.rb +156 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/text_helper.rb +417 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/translation_helper.rb +88 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers/url_helper.rb +691 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/helpers.rb +60 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/locale/en.yml +160 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/log_subscriber.rb +28 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/lookup_context.rb +249 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/path_set.rb +89 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/railtie.rb +47 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/renderer/abstract_renderer.rb +41 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/renderer/partial_renderer.rb +407 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/renderer/renderer.rb +54 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/renderer/streaming_template_renderer.rb +106 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/renderer/template_renderer.rb +88 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template/error.rb +128 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template/handlers/builder.rb +26 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template/handlers/erb.rb +113 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template/handlers.rb +49 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template/resolver.rb +258 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template/text.rb +30 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/template.rb +325 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/test_case.rb +244 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view/testing/resolvers.rb +50 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/action_view.rb +84 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/assets.rake +95 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/bootstrap.rb +37 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/compressors.rb +83 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/helpers/isolated_helper.rb +13 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/helpers/rails_helper.rb +167 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/helpers.rb +6 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/railtie.rb +62 -0
- data/vendor/bundle/gems/actionpack-3.2.1/lib/sprockets/static_compiler.rb +61 -0
- data/vendor/bundle/gems/activemodel-3.2.1/CHANGELOG.md +119 -0
- data/vendor/bundle/gems/activemodel-3.2.1/MIT-LICENSE +21 -0
- data/vendor/bundle/gems/activemodel-3.2.1/README.rdoc +211 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/attribute_methods.rb +452 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/callbacks.rb +134 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/conversion.rb +73 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/dirty.rb +167 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/errors.rb +370 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/lint.rb +123 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/locale/en.yml +27 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/mass_assignment_security/permission_set.rb +40 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/mass_assignment_security/sanitizer.rb +59 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/mass_assignment_security.rb +235 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/naming.rb +171 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/observer_array.rb +147 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/observing.rb +252 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/railtie.rb +2 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/secure_password.rb +74 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/serialization.rb +139 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/serializers/json.rb +108 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/serializers/xml.rb +195 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/test_case.rb +16 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/translation.rb +70 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/acceptance.rb +68 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/callbacks.rb +57 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/confirmation.rb +68 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/exclusion.rb +69 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/format.rb +94 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/inclusion.rb +69 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/length.rb +118 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/numericality.rb +130 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/presence.rb +46 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/validates.rb +138 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations/with.rb +145 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validations.rb +221 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/validator.rb +184 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model/version.rb +10 -0
- data/vendor/bundle/gems/activemodel-3.2.1/lib/active_model.rb +61 -0
- data/vendor/bundle/gems/activerecord-3.2.1/CHANGELOG.md +6749 -0
- data/vendor/bundle/gems/activerecord-3.2.1/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/activerecord-3.2.1/README.rdoc +222 -0
- data/vendor/bundle/gems/activerecord-3.2.1/examples/associations.png +0 -0
- data/vendor/bundle/gems/activerecord-3.2.1/examples/performance.rb +177 -0
- data/vendor/bundle/gems/activerecord-3.2.1/examples/simple.rb +14 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/aggregations.rb +255 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/alias_tracker.rb +79 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/association.rb +239 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/association_scope.rb +119 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/belongs_to_association.rb +79 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/belongs_to_polymorphic_association.rb +34 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/association.rb +55 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/belongs_to.rb +85 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/collection_association.rb +75 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/has_and_belongs_to_many.rb +57 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/has_many.rb +71 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/has_one.rb +62 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/builder/singular_association.rb +32 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/collection_association.rb +574 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/collection_proxy.rb +132 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_and_belongs_to_many_association.rb +62 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_many_association.rb +108 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_many_through_association.rb +180 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_one_association.rb +73 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/has_one_through_association.rb +36 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/join_dependency/join_association.rb +154 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/join_dependency/join_base.rb +24 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/join_dependency/join_part.rb +78 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/join_dependency.rb +214 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/join_helper.rb +55 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/association.rb +127 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/belongs_to.rb +17 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/collection_association.rb +24 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/has_and_belongs_to_many.rb +60 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/has_many.rb +17 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/has_many_through.rb +15 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/has_one.rb +23 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/has_one_through.rb +9 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/singular_association.rb +21 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader/through_association.rb +67 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/preloader.rb +177 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/singular_association.rb +64 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations/through_association.rb +83 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/associations.rb +1604 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_assignment.rb +221 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/before_type_cast.rb +31 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/deprecated_underscore_read.rb +32 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/dirty.rb +101 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/primary_key.rb +114 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/query.rb +39 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/read.rb +135 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/serialization.rb +93 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/time_zone_conversion.rb +62 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods/write.rb +66 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/attribute_methods.rb +250 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/autosave_association.rb +422 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/base.rb +716 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/callbacks.rb +275 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/coders/yaml_column.rb +41 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/connection_pool.rb +452 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/connection_specification.rb +188 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/database_limits.rb +58 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/database_statements.rb +388 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/query_cache.rb +82 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/quoting.rb +115 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/schema_definitions.rb +492 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract/schema_statements.rb +598 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract_adapter.rb +296 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +653 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/column.rb +270 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/mysql2_adapter.rb +288 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/mysql_adapter.rb +426 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/postgresql_adapter.rb +1261 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/schema_cache.rb +50 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/sqlite3_adapter.rb +55 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/sqlite_adapter.rb +577 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/connection_adapters/statement_pool.rb +40 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/counter_cache.rb +119 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/dynamic_finder_match.rb +56 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/dynamic_matchers.rb +79 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/dynamic_scope_match.rb +23 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/errors.rb +195 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/explain.rb +85 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/explain_subscriber.rb +21 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/fixtures/file.rb +65 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/fixtures.rb +906 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/identity_map.rb +156 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/inheritance.rb +167 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/integration.rb +49 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/locale/en.yml +40 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/locking/optimistic.rb +183 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/locking/pessimistic.rb +77 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/log_subscriber.rb +68 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/migration/command_recorder.rb +105 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/migration.rb +765 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/model_schema.rb +366 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/nested_attributes.rb +469 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/observer.rb +121 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/persistence.rb +372 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/query_cache.rb +74 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/querying.rb +58 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/railtie.rb +119 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/railties/console_sandbox.rb +6 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/railties/controller_runtime.rb +49 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/railties/databases.rake +620 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/railties/jdbcmysql_error.rb +16 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/readonly_attributes.rb +26 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/reflection.rb +534 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/batches.rb +90 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/calculations.rb +354 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/delegation.rb +49 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/finder_methods.rb +398 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/predicate_builder.rb +58 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/query_methods.rb +417 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation/spawn_methods.rb +148 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/relation.rb +534 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/result.rb +34 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/sanitization.rb +194 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/schema.rb +58 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/schema_dumper.rb +204 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/scoping/default.rb +142 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/scoping/named.rb +202 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/scoping.rb +152 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/serialization.rb +18 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/serializers/xml_serializer.rb +202 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/session_store.rb +358 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/store.rb +50 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/test_case.rb +73 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/timestamp.rb +113 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/transactions.rb +360 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/translation.rb +22 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/validations/associated.rb +43 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/validations/uniqueness.rb +180 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/validations.rb +83 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record/version.rb +10 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/active_record.rb +147 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/migration/migration_generator.rb +25 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/migration/templates/migration.rb +31 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/migration.rb +15 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/model/model_generator.rb +43 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/model/templates/migration.rb +15 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/model/templates/model.rb +7 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/model/templates/module.rb +7 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/observer/observer_generator.rb +15 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/observer/templates/observer.rb +4 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/session_migration/session_migration_generator.rb +25 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record/session_migration/templates/migration.rb +12 -0
- data/vendor/bundle/gems/activerecord-3.2.1/lib/rails/generators/active_record.rb +25 -0
- data/vendor/bundle/gems/activeresource-3.2.1/CHANGELOG.md +339 -0
- data/vendor/bundle/gems/activeresource-3.2.1/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/activeresource-3.2.1/README.rdoc +187 -0
- data/vendor/bundle/gems/activeresource-3.2.1/examples/performance.rb +70 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/base.rb +1483 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/connection.rb +287 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/custom_methods.rb +119 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/exceptions.rb +82 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/formats/json_format.rb +25 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/formats/xml_format.rb +25 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/formats.rb +22 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/http_mock.rb +335 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/log_subscriber.rb +15 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/observing.rb +29 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/railtie.rb +14 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/schema.rb +59 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/validations.rb +134 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource/version.rb +10 -0
- data/vendor/bundle/gems/activeresource-3.2.1/lib/active_resource.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.1/CHANGELOG.md +1617 -0
- data/vendor/bundle/gems/activesupport-3.2.1/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/activesupport-3.2.1/README.rdoc +33 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/all.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/backtrace_cleaner.rb +99 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/base64.rb +52 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/basic_object.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/benchmarkable.rb +55 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/buffered_logger.rb +125 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/builder.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/cache/file_store.rb +178 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/cache/mem_cache_store.rb +206 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/cache/memory_store.rb +159 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/cache/null_store.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/cache/strategy/local_cache.rb +169 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/cache.rb +639 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/callbacks.rb +626 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/concern.rb +129 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/configurable.rb +90 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/access.rb +46 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/conversions.rb +164 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/extract_options.rb +29 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/grouping.rb +100 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/prepend_and_append.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/random_access.rb +30 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/uniq_by.rb +16 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/array.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/benchmark.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/big_decimal/conversions.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/big_decimal.rb +1 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/class/attribute.rb +115 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/class/attribute_accessors.rb +80 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/class/subclasses.rb +36 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/acts_like.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/calculations.rb +276 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/conversions.rb +106 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/freeze.rb +33 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date/zones.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date_time/calculations.rb +132 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date_time/conversions.rb +103 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/date_time/zones.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/enumerable.rb +127 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/exception.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/file/atomic.rb +41 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/file/path.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/file.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/float/rounding.rb +19 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/float.rb +1 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/conversions.rb +157 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/deep_dup.rb +11 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/deep_merge.rb +16 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/diff.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/except.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/keys.rb +47 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/reverse_merge.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash/slice.rb +40 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/hash.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/integer/inflections.rb +17 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/integer/multiple.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/integer/time.rb +39 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/integer.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/io.rb +15 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/debugger.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/reporting.rb +93 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/kernel.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/load_error.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/logger.rb +83 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/aliasing.rb +70 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/anonymous.rb +24 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/attr_internal.rb +39 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/attribute_accessors.rb +64 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/delegation.rb +153 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/deprecation.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/introspection.rb +88 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/method_names.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/qualified_const.rb +64 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/reachable.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/remove_method.rb +16 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module/synchronization.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/module.rb +12 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/name_error.rb +18 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/numeric/bytes.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/numeric/time.rb +79 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/numeric.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/acts_like.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/blank.rb +121 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/conversions.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/duplicable.rb +106 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/inclusion.rb +25 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/instance_variables.rb +33 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/to_json.rb +19 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/to_param.rb +55 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/to_query.rb +27 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/try.rb +53 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object/with_options.rb +43 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/object.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/proc.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/process/daemon.rb +23 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/range/blockless_step.rb +29 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/range/conversions.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/range/cover.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/range/include_range.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/range/overlaps.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/range.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/regexp.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/rexml.rb +46 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/access.rb +99 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/behavior.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/conversions.rb +54 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/encoding.rb +11 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/exclude.rb +6 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/filters.rb +49 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/inflections.rb +202 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/inquiry.rb +13 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/interpolation.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/multibyte.rb +72 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/output_safety.rb +183 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/strip.rb +26 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string/xchar.rb +18 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/string.rb +14 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/time/acts_like.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/time/calculations.rb +344 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/time/conversions.rb +85 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/time/marshal.rb +57 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext/uri.rb +30 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/core_ext.rb +3 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/dependencies/autoload.rb +50 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/dependencies.rb +703 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/deprecation/behaviors.rb +49 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/deprecation/method_wrappers.rb +29 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/deprecation/reporting.rb +65 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/deprecation.rb +18 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/descendants_tracker.rb +45 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/duration.rb +110 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/file_update_checker.rb +121 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/file_watcher.rb +36 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/gzip.rb +30 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/hash_with_indifferent_access.rb +168 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/i18n.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/i18n_railtie.rb +102 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/inflections.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/inflector/inflections.rb +172 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/inflector/methods.rb +320 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/inflector/transliterate.rb +98 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/inflector.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/json/decoding.rb +65 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/json/encoding.rb +284 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/json/variable.rb +9 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/json.rb +2 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/lazy_load_hooks.rb +46 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/locale/en.yml +36 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/log_subscriber/test_helper.rb +101 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/log_subscriber.rb +122 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/memoizable.rb +116 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/message_encryptor.rb +103 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/message_verifier.rb +73 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/multibyte/chars.rb +476 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/multibyte/unicode.rb +393 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/multibyte/utils.rb +60 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/multibyte.rb +44 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/notifications/fanout.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/notifications/instrumenter.rb +53 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/notifications.rb +154 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/option_merger.rb +25 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/ordered_hash.rb +222 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/ordered_options.rb +61 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/railtie.rb +59 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/rescuable.rb +115 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/ruby/shim.rb +22 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/tagged_logging.rb +69 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/test_case.rb +34 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/assertions.rb +97 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/declarative.rb +40 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/deprecation.rb +55 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/isolation.rb +157 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/mochaing.rb +7 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/pending.rb +52 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/performance/jruby.rb +115 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/performance/rubinius.rb +113 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/performance/ruby/mri.rb +57 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/performance/ruby/yarv.rb +57 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/performance/ruby.rb +152 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/performance.rb +317 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/testing/setup_and_teardown.rb +111 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/time/autoload.rb +5 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/time.rb +35 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/time_with_zone.rb +354 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/values/time_zone.rb +395 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/version.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/whiny_nil.rb +22 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini/jdom.rb +175 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini/libxml.rb +80 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini/libxmlsax.rb +86 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini/nokogiri.rb +84 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini/nokogirisax.rb +88 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini/rexml.rb +130 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support/xml_mini.rb +168 -0
- data/vendor/bundle/gems/activesupport-3.2.1/lib/active_support.rb +82 -0
- data/vendor/bundle/gems/arel-3.0.0/Gemfile +11 -0
- data/vendor/bundle/gems/arel-3.0.0/History.txt +205 -0
- data/vendor/bundle/gems/arel-3.0.0/MIT-LICENSE.txt +20 -0
- data/vendor/bundle/gems/arel-3.0.0/Manifest.txt +119 -0
- data/vendor/bundle/gems/arel-3.0.0/README.markdown +118 -0
- data/vendor/bundle/gems/arel-3.0.0/Rakefile +19 -0
- data/vendor/bundle/gems/arel-3.0.0/arel.gemspec +36 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/alias_predication.rb +7 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/attributes/attribute.rb +27 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/attributes.rb +20 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/compatibility/wheres.rb +33 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/crud.rb +72 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/delete_manager.rb +18 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/deprecated.rb +4 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/expression.rb +5 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/expressions.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/factory_methods.rb +43 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/insert_manager.rb +38 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/math.rb +19 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/and.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/ascending.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/binary.rb +40 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/count.rb +10 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/delete_statement.rb +19 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/descending.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/equality.rb +9 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/false.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/function.rb +30 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/in.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/infix_operation.rb +44 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/inner_join.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/insert_statement.rb +19 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/join_source.rb +18 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/named_function.rb +12 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/node.rb +46 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/ordering.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/outer_join.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/select_core.rb +40 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/select_statement.rb +24 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/sql_literal.rb +10 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/string_join.rb +9 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/table_alias.rb +17 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/terminal.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/true.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/unary.rb +29 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/unqualified_column.rb +20 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/update_statement.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/values.rb +14 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/with.rb +10 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/nodes.rb +46 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/order_predications.rb +13 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/predications.rb +164 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/relation.rb +6 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/select_manager.rb +309 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/sql/engine.rb +10 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/sql_literal.rb +4 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/table.rb +147 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/tree_manager.rb +39 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/update_manager.rb +57 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/depth_first.rb +166 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/dot.rb +246 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/ibm_db.rb +12 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/informix.rb +33 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/join_sql.rb +19 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/mssql.rb +73 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/mysql.rb +56 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/oracle.rb +128 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/order_clauses.rb +11 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/postgresql.rb +19 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/sqlite.rb +16 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/to_sql.rb +428 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/visitor.rb +31 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors/where_sql.rb +9 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel/visitors.rb +42 -0
- data/vendor/bundle/gems/arel-3.0.0/lib/arel.rb +47 -0
- data/vendor/bundle/gems/arel-3.0.0/test/attributes/test_attribute.rb +664 -0
- data/vendor/bundle/gems/arel-3.0.0/test/helper.rb +13 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_as.rb +22 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_ascending.rb +34 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_bin.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_count.rb +27 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_delete_statement.rb +14 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_descending.rb +34 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_equality.rb +74 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_infix_operation.rb +30 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_insert_statement.rb +18 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_named_function.rb +30 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_node.rb +38 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_not.rb +17 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_or.rb +22 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_select_core.rb +31 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_select_statement.rb +13 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_sql_literal.rb +51 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_sum.rb +12 -0
- data/vendor/bundle/gems/arel-3.0.0/test/nodes/test_update_statement.rb +18 -0
- data/vendor/bundle/gems/arel-3.0.0/test/support/fake_record.rb +119 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_activerecord_compat.rb +18 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_attributes.rb +54 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_crud.rb +63 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_delete_manager.rb +42 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_factory_methods.rb +44 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_insert_manager.rb +144 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_select_manager.rb +998 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_table.rb +184 -0
- data/vendor/bundle/gems/arel-3.0.0/test/test_update_manager.rb +115 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_depth_first.rb +230 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_dot.rb +76 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_ibm_db.rb +27 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_informix.rb +42 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_join_sql.rb +42 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_mssql.rb +66 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_mysql.rb +55 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_oracle.rb +155 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb +48 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_sqlite.rb +23 -0
- data/vendor/bundle/gems/arel-3.0.0/test/visitors/test_to_sql.rb +347 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/Makefile +1 -1
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/bcrypt_ext.bundle +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/lib/bcrypt_ext.bundle +0 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/Appraisals +20 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/CONTRIBUTION_GUIDELINES.md +10 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/Changelog +128 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/GETTING_STARTED.md +672 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/Gemfile +5 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/Gemfile.lock +92 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/LICENSE +19 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/README.md +70 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/Rakefile +50 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/cucumber.yml +1 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/features/factory_girl_steps.feature +221 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/features/find_definitions.feature +75 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/features/step_definitions/database_steps.rb +42 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/features/step_definitions/factory_girl_steps.rb +43 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/features/support/env.rb +8 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/features/support/factories.rb +115 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/2.1.gemfile +8 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/2.1.gemfile.lock +74 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/2.3.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/2.3.gemfile.lock +72 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/3.0.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/3.0.gemfile.lock +82 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/3.1.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/3.1.gemfile.lock +92 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/3.2.gemfile +7 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/gemfiles/3.2.gemfile.lock +90 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/aliases.rb +19 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb +23 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/dynamic.rb +20 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/sequence.rb +17 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/static.rb +15 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute.rb +40 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute_assigner.rb +73 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute_list.rb +54 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/callback.rb +35 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration/association.rb +25 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration/dynamic.rb +25 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration/implicit.rb +32 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration/static.rb +25 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb +27 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration_list.rb +48 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/definition.rb +76 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/definition_proxy.rb +169 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/deprecated.rb +18 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/evaluator.rb +65 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/evaluator_class_definer.rb +34 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/factory.rb +161 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/find_definitions.rb +25 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/null_factory.rb +16 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/null_object.rb +19 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/proxy/attributes_for.rb +9 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/proxy/build.rb +27 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/proxy/create.rb +13 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/proxy/stub.rb +62 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/proxy.rb +64 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/rails2.rb +8 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/registry.rb +46 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/reload.rb +8 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/sequence.rb +28 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/step_definitions.rb +130 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/blueprint.rb +42 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/default.rb +56 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/generate.rb +73 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/make.rb +45 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/methods.rb +152 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/sham.rb +45 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax/vintage.rb +149 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/syntax.rb +16 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/trait.rb +29 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/version.rb +4 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl.rb +85 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/aliases_spec.rb +19 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attribute_aliases_spec.rb +45 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attribute_existing_on_object_spec.rb +68 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_for_spec.rb +89 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_from_instance_spec.rb +53 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb +51 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/build_list_spec.rb +41 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/build_spec.rb +89 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/build_stubbed_spec.rb +104 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/callbacks_spec.rb +47 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/create_list_spec.rb +41 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/create_spec.rb +117 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/default_strategy_spec.rb +24 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/define_child_before_parent_spec.rb +21 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/definition_spec.rb +26 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/definition_without_block_spec.rb +15 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/initialize_with_spec.rb +147 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/modify_factories_spec.rb +184 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/modify_inherited_spec.rb +52 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/overrides_spec.rb +64 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/parent_spec.rb +90 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/sequence_spec.rb +33 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/stub_spec.rb +64 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/syntax/blueprint_spec.rb +31 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/syntax/generate_spec.rb +59 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/syntax/make_spec.rb +52 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/syntax/sham_spec.rb +43 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/syntax/vintage_spec.rb +235 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/traits_spec.rb +362 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/transient_attributes_spec.rb +110 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/aliases_spec.rb +31 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb +29 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/dynamic_spec.rb +52 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/sequence_spec.rb +16 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/static_spec.rb +19 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute_list_spec.rb +78 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute_spec.rb +17 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/callback_spec.rb +41 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/declaration/implicit_spec.rb +26 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/declaration_list_spec.rb +71 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/definition_proxy_spec.rb +197 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/definition_spec.rb +104 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/deprecated_spec.rb +45 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/evaluator_class_definer_spec.rb +54 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/factory_spec.rb +315 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/find_definitions_spec.rb +110 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/null_factory_spec.rb +14 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/null_object_spec.rb +8 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb +18 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/build_spec.rb +7 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/create_spec.rb +13 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/stub_spec.rb +40 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy_spec.rb +19 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/registry_spec.rb +81 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/sequence_spec.rb +48 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl_spec.rb +22 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/spec_helper.rb +25 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/support/macros/define_constant.rb +86 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/support/matchers/callback.rb +9 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/support/matchers/declaration.rb +71 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/support/matchers/delegate.rb +44 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/support/matchers/trait.rb +9 -0
- data/vendor/bundle/gems/factory_girl-2.5.1/spec/support/shared_examples/proxy.rb +90 -0
- data/vendor/bundle/gems/journey-1.0.1/CHANGELOG.rdoc +5 -0
- data/vendor/bundle/gems/journey-1.0.1/Gemfile +14 -0
- data/vendor/bundle/gems/journey-1.0.1/Manifest.txt +51 -0
- data/vendor/bundle/gems/journey-1.0.1/README.rdoc +48 -0
- data/vendor/bundle/gems/journey-1.0.1/Rakefile +32 -0
- data/vendor/bundle/gems/journey-1.0.1/journey.gemspec +48 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/backwards.rb +5 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/core-ext/hash.rb +11 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/formatter.rb +129 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/gtg/builder.rb +159 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/gtg/simulator.rb +44 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/gtg/transition_table.rb +152 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/nfa/builder.rb +74 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/nfa/dot.rb +34 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/nfa/simulator.rb +45 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/nfa/transition_table.rb +164 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/nodes/node.rb +122 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/parser.rb +204 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/parser.y +47 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/parser_extras.rb +21 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/path/pattern.rb +190 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/route.rb +95 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/router/strexp.rb +22 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/router/utils.rb +57 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/router.rb +145 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/routes.rb +75 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/scanner.rb +58 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/visitors.rb +186 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/visualizer/d3.min.js +2 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/visualizer/fsm.css +34 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/visualizer/fsm.js +134 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/visualizer/index.html.erb +50 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey/visualizer/reset.css +48 -0
- data/vendor/bundle/gems/journey-1.0.1/lib/journey.rb +5 -0
- data/vendor/bundle/gems/journey-1.0.1/test/gtg/test_builder.rb +77 -0
- data/vendor/bundle/gems/journey-1.0.1/test/gtg/test_transition_table.rb +113 -0
- data/vendor/bundle/gems/journey-1.0.1/test/helper.rb +4 -0
- data/vendor/bundle/gems/journey-1.0.1/test/nfa/test_simulator.rb +96 -0
- data/vendor/bundle/gems/journey-1.0.1/test/nfa/test_transition_table.rb +70 -0
- data/vendor/bundle/gems/journey-1.0.1/test/nodes/test_symbol.rb +15 -0
- data/vendor/bundle/gems/journey-1.0.1/test/path/test_pattern.rb +282 -0
- data/vendor/bundle/gems/journey-1.0.1/test/route/definition/test_parser.rb +108 -0
- data/vendor/bundle/gems/journey-1.0.1/test/route/definition/test_scanner.rb +52 -0
- data/vendor/bundle/gems/journey-1.0.1/test/router/test_strexp.rb +30 -0
- data/vendor/bundle/gems/journey-1.0.1/test/router/test_utils.rb +19 -0
- data/vendor/bundle/gems/journey-1.0.1/test/test_route.rb +109 -0
- data/vendor/bundle/gems/journey-1.0.1/test/test_router.rb +530 -0
- data/vendor/bundle/gems/journey-1.0.1/test/test_routes.rb +51 -0
- data/vendor/bundle/gems/json-1.6.5/ext/json/ext/generator/Makefile +1 -1
- data/vendor/bundle/gems/json-1.6.5/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.6.5/ext/json/ext/json/ext/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.6.5/ext/json/ext/json/ext/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.6.5/ext/json/ext/parser/Makefile +1 -1
- data/vendor/bundle/gems/json-1.6.5/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/bundle/gems/mocha-0.10.3/COPYING.rdoc +3 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile +3 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.1.3.0 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.1.4.0 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.1.4.1 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.1.4.2 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.2.0.0 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.2.0.1 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.2.3.0 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.minitest.latest +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.test-unit.2.0.0 +8 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.test-unit.2.0.1 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.test-unit.2.0.3 +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/Gemfile.test-unit.latest +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/MIT-LICENSE.rdoc +7 -0
- data/vendor/bundle/gems/mocha-0.10.3/README.rdoc +57 -0
- data/vendor/bundle/gems/mocha-0.10.3/RELEASE.rdoc +367 -0
- data/vendor/bundle/gems/mocha-0.10.3/Rakefile +157 -0
- data/vendor/bundle/gems/mocha-0.10.3/examples/misc.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/examples/mocha.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/examples/stubba.rb +64 -0
- data/vendor/bundle/gems/mocha-0.10.3/init.rb +3 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/any_instance_method.rb +53 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/api.rb +173 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/argument_iterator.rb +21 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/backtrace_filter.rb +17 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/cardinality.rb +95 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/central.rb +33 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/change_state_side_effect.rb +19 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/class_method.rb +91 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/configuration.rb +79 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/deprecation.rb +22 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/exception_raiser.rb +17 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/expectation.rb +509 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/expectation_error.rb +15 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/expectation_list.rb +54 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/in_state_ordering_constraint.rb +19 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/inspect.rb +67 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/instance_method.rb +32 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/assertion_counter.rb +23 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/exception_translation.rb +20 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_13.rb +44 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_140.rb +45 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_141.rb +56 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_142_to_172.rb +56 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_200.rb +57 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_201_to_222.rb +57 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test/version_230_to_262.rb +59 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/mini_test.rb +54 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/assertion_counter.rb +23 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/gem_version_200.rb +52 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +52 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +52 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/gem_version_230_to_240.rb +58 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +51 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +53 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration/test_unit.rb +57 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/integration.rb +38 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/is_a.rb +9 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/logger.rb +15 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/method_matcher.rb +21 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/mock.rb +205 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/mockery.rb +181 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/module_method.rb +16 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/multiple_yields.rb +20 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/names.rb +53 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/no_yields.rb +11 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/object.rb +223 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/options.rb +1 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/all_of.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/any_of.rb +47 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/any_parameters.rb +40 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/anything.rb +33 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/base.rb +63 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/equals.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/has_entries.rb +45 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/has_entry.rb +57 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/has_key.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/has_value.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/includes.rb +41 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/instance_of.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/is_a.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/kind_of.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/not.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/object.rb +15 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/optionally.rb +55 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/query_string.rb +47 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/regexp_matches.rb +44 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/responds_with.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers/yaml_equivalent.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameter_matchers.rb +28 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/parameters_matcher.rb +37 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/pretty_parameters.rb +28 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/return_values.rb +31 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/sequence.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/single_return_value.rb +17 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/single_yield.rb +18 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/standalone.rb +1 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/state_machine.rb +91 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/stubbing_error.rb +16 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/thrower.rb +15 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/unexpected_invocation.rb +18 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/version.rb +3 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha/yield_parameters.rb +31 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha.rb +4 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/mocha_standalone.rb +2 -0
- data/vendor/bundle/gems/mocha-0.10.3/lib/stubba.rb +4 -0
- data/vendor/bundle/gems/mocha-0.10.3/mocha.gemspec +46 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/acceptance_test_helper.rb +41 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/api_test.rb +139 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/bug_18914_test.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/bug_21465_test.rb +34 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/bug_21563_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/exception_rescue_test.rb +55 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/expectations_on_multiple_methods_test.rb +55 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/expected_invocation_count_test.rb +232 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/failure_messages_test.rb +64 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/minitest_test.rb +162 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/mocha_example_test.rb +98 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/mocha_test_result_test.rb +84 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/mock_test.rb +100 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/mock_with_initializer_block_test.rb +51 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/mocked_methods_dispatch_test.rb +78 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/multiple_expectations_failure_message_test.rb +68 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/optional_parameters_test.rb +70 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/parameter_matcher_test.rb +300 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/partial_mocks_test.rb +47 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/raise_exception_test.rb +39 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/return_value_test.rb +52 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/sequence_test.rb +186 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/states_test.rb +70 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_any_instance_method_test.rb +199 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +106 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_class_method_defined_on_class_test.rb +72 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_class_method_defined_on_module_test.rb +75 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_class_method_defined_on_superclass_test.rb +75 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_everything_test.rb +56 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +93 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +69 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_class_test.rb +66 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +75 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_module_test.rb +75 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +75 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +70 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +72 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_module_method_test.rb +163 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stub_test.rb +52 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubba_example_test.rb +102 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubba_test.rb +15 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubba_test_result_test.rb +66 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_error_backtrace_test.rb +64 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_method_unnecessarily_test.rb +65 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +130 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_non_existent_class_method_test.rb +157 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_non_existent_instance_method_test.rb +147 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_non_public_any_instance_method_test.rb +130 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_non_public_class_method_test.rb +163 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_non_public_instance_method_test.rb +143 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/stubbing_on_non_mock_object_test.rb +64 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/throw_test.rb +45 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/acceptance/unstubbing_test.rb +151 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/deprecation_disabler.rb +15 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/execution_point.rb +36 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/method_definer.rb +24 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/mini_test_result.rb +83 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/simple_counter.rb +13 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/test_helper.rb +11 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/test_runner.rb +50 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/any_instance_method_test.rb +130 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/array_inspect_test.rb +16 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/backtrace_filter_test.rb +19 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/cardinality_test.rb +56 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/central_test.rb +95 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/change_state_side_effect_test.rb +41 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/class_method_test.rb +238 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/configuration_test.rb +38 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/date_time_inspect_test.rb +21 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/exception_raiser_test.rb +42 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/expectation_list_test.rb +71 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/expectation_test.rb +480 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/hash_inspect_test.rb +16 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/in_state_ordering_constraint_test.rb +43 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/method_matcher_test.rb +23 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/mock_test.rb +309 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/mockery_test.rb +150 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/multiple_yields_test.rb +18 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/no_yields_test.rb +18 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/object_inspect_test.rb +38 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/object_test.rb +87 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/all_of_test.rb +26 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/any_of_test.rb +26 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/anything_test.rb +21 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/equals_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/has_entries_test.rb +51 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/has_entry_test.rb +82 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/has_key_test.rb +55 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/has_value_test.rb +57 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/includes_test.rb +44 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/instance_of_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/is_a_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/kind_of_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/not_test.rb +26 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/regexp_matches_test.rb +46 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/responds_with_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/stub_matcher.rb +27 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameter_matchers/yaml_equivalent_test.rb +25 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/parameters_matcher_test.rb +121 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/return_values_test.rb +63 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/sequence_test.rb +104 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/single_return_value_test.rb +14 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/single_yield_test.rb +18 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/state_machine_test.rb +98 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/string_inspect_test.rb +11 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/thrower_test.rb +20 -0
- data/vendor/bundle/gems/mocha-0.10.3/test/unit/yield_parameters_test.rb +93 -0
- data/vendor/bundle/gems/multi_json-1.0.4/Gemfile +6 -0
- data/vendor/bundle/gems/multi_json-1.0.4/LICENSE.md +20 -0
- data/vendor/bundle/gems/multi_json-1.0.4/README.md +94 -0
- data/vendor/bundle/gems/multi_json-1.0.4/Rakefile +25 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_common.rb +27 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_gem.rb +12 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_pure.rb +12 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/ok_json.rb +48 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/yajl.rb +18 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/vendor/ok_json.rb +587 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/version.rb +3 -0
- data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json.rb +85 -0
- data/vendor/bundle/gems/multi_json-1.0.4/multi_json.gemspec +22 -0
- data/vendor/bundle/gems/multi_json-1.0.4/spec/helper.rb +35 -0
- data/vendor/bundle/gems/multi_json-1.0.4/spec/multi_json_spec.rb +178 -0
- data/vendor/bundle/gems/rack-cache-1.1/CHANGES +232 -0
- data/vendor/bundle/gems/rack-cache-1.1/COPYING +18 -0
- data/vendor/bundle/gems/rack-cache-1.1/Gemfile +2 -0
- data/vendor/bundle/gems/rack-cache-1.1/Gemfile.lock +22 -0
- data/vendor/bundle/gems/rack-cache-1.1/README +126 -0
- data/vendor/bundle/gems/rack-cache-1.1/Rakefile +139 -0
- data/vendor/bundle/gems/rack-cache-1.1/TODO +27 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/configuration.markdown +127 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/faq.markdown +148 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/index.markdown +121 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/layout.html.erb +34 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/license.markdown +24 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/rack-cache.css +362 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/server.ru +34 -0
- data/vendor/bundle/gems/rack-cache-1.1/doc/storage.markdown +164 -0
- data/vendor/bundle/gems/rack-cache-1.1/example/sinatra/app.rb +21 -0
- data/vendor/bundle/gems/rack-cache-1.1/example/sinatra/views/index.erb +44 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/appengine.rb +52 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/cachecontrol.rb +194 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/context.rb +275 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/entitystore.rb +341 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/key.rb +52 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/metastore.rb +418 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/options.rb +157 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/request.rb +33 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/response.rb +255 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache/storage.rb +62 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack/cache.rb +45 -0
- data/vendor/bundle/gems/rack-cache-1.1/lib/rack-cache.rb +1 -0
- data/vendor/bundle/gems/rack-cache-1.1/rack-cache.gemspec +76 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/cache_test.rb +38 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/cachecontrol_test.rb +145 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/context_test.rb +881 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/entitystore_test.rb +268 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/key_test.rb +50 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/metastore_test.rb +338 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/options_test.rb +77 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/pony.jpg +0 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/request_test.rb +19 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/response_test.rb +184 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/spec_setup.rb +232 -0
- data/vendor/bundle/gems/rack-cache-1.1/test/storage_test.rb +94 -0
- data/vendor/bundle/gems/railties-3.2.1/CHANGELOG.md +2429 -0
- data/vendor/bundle/gems/railties-3.2.1/README.rdoc +35 -0
- data/vendor/bundle/gems/railties-3.2.1/bin/rails +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/belongs_to.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/book_icon.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/bullet.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/challenge.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/chapters_icon.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/check_bullet.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/credits_pic_blank.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/csrf.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/customized_error_messages.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/edge_badge.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/error_messages.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/feature_tile.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/footer_tile.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/fxn.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/grey_bullet.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/habtm.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/has_many.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/has_many_through.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/has_one.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/has_one_through.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/header_backdrop.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/header_tile.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/i18n/demo_html_safe.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/i18n/demo_translated_en.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/i18n/demo_translation_missing.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/i18n/demo_untranslated.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/README +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/1.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/10.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/11.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/12.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/13.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/14.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/15.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/2.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/3.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/4.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/5.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/6.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/7.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/8.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/callouts/9.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/caution.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/example.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/home.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/important.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/next.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/note.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/prev.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/tip.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/up.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/icons/warning.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/jaimeiniesta.jpg +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/nav_arrow.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/polymorphic.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/posts_index.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/radar.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/rails_guides_logo.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/rails_logo_remix.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/rails_welcome.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/session_fixation.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/tab_grey.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/tab_info.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/tab_note.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/tab_red.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/tab_yellow.gif +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/tab_yellow.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/validation_error_messages.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/images/vijaydev.jpg +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/guides.js +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js +59 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js +75 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushBash.js +59 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js +65 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js +100 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js +97 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushCss.js +91 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js +55 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js +41 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js +52 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js +67 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js +52 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushJava.js +57 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js +58 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js +72 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js +88 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js +33 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js +74 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushPython.js +64 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js +55 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushSass.js +94 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushScala.js +51 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushSql.js +66 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushVb.js +56 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shBrushXml.js +69 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/javascripts/syntaxhighlighter/shCore.js +17 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/fixes.css +16 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/kindle.css +11 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/main.css +453 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/print.css +52 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/reset.css +43 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/style.css +13 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCore.css +226 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css +328 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css +331 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css +339 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css +324 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css +328 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css +324 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css +324 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css +324 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css +117 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css +120 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css +128 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css +113 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css +117 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css +113 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css +113 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css +113 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +116 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/Gemfile +38 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/README.rdoc +261 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/Rakefile +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/images/rails.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/javascripts/application.js +15 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/javascripts/home.js.coffee +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/stylesheets/application.css +13 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/stylesheets/home.css.scss +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss +56 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/controllers/application_controller.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/controllers/comments_controller.rb +16 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/controllers/home_controller.rb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/controllers/posts_controller.rb +84 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/helpers/application_helper.rb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/helpers/comments_helper.rb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/helpers/home_helper.rb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/helpers/posts_helper.rb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/models/comment.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/models/post.rb +11 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/models/tag.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/comments/_comment.html.erb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/comments/_form.html.erb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/home/index.html.erb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/layouts/application.html.erb +14 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/posts/_form.html.erb +32 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/posts/edit.html.erb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/posts/index.html.erb +27 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/posts/new.html.erb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/posts/show.html.erb +31 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/app/views/tags/_form.html.erb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/application.rb +59 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/boot.rb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/database.yml +25 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/environment.rb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/environments/development.rb +37 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/environments/production.rb +67 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/environments/test.rb +37 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/initializers/backtrace_silencers.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/initializers/inflections.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/initializers/mime_types.rb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/initializers/secret_token.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/initializers/session_store.rb +8 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/initializers/wrap_parameters.rb +14 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/locales/en.yml +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config/routes.rb +64 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/config.ru +4 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/db/migrate/20110901012504_create_posts.rb +11 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/db/migrate/20110901012815_create_comments.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/db/migrate/20110901013701_create_tags.rb +11 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/db/schema.rb +43 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/db/seeds.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/doc/README_FOR_APP +2 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/public/404.html +26 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/public/422.html +26 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/public/500.html +25 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/public/favicon.ico +0 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/public/robots.txt +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/script/rails +6 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/fixtures/comments.yml +11 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/fixtures/posts.yml +11 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/fixtures/tags.yml +9 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/functional/comments_controller_test.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/functional/home_controller_test.rb +9 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/functional/posts_controller_test.rb +49 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/performance/browsing_test.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/test_helper.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/unit/comment_test.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/unit/helpers/comments_helper_test.rb +4 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/unit/helpers/home_helper_test.rb +4 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/unit/helpers/posts_helper_test.rb +4 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/unit/post_test.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/code/getting_started/test/unit/tag_test.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/rails_guides/generator.rb +310 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/rails_guides/helpers.rb +45 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/rails_guides/indexer.rb +69 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/rails_guides/levenshtein.rb +31 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/rails_guides/textile_extensions.rb +63 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/rails_guides.rb +50 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/2_2_release_notes.textile +422 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/2_3_release_notes.textile +610 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/3_0_release_notes.textile +595 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/3_1_release_notes.textile +431 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/3_2_release_notes.textile +540 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/_license.html.erb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/_welcome.html.erb +19 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/action_controller_overview.textile +819 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/action_mailer_basics.textile +516 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/action_view_overview.textile +1497 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/active_model_basics.textile +205 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/active_record_basics.textile +218 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/active_record_querying.textile +1431 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/active_record_validations_callbacks.textile +1283 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/active_resource_basics.textile +120 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/active_support_core_extensions.textile +3713 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/ajax_on_rails.textile +267 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/api_documentation_guidelines.textile +185 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/asset_pipeline.textile +707 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/association_basics.textile +1860 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/caching_with_rails.textile +435 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/command_line.textile +574 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/configuring.textile +641 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/contributing_to_ruby_on_rails.textile +391 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/credits.html.erb +72 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/debugging_rails_applications.textile +714 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/documents.yaml +157 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/engines.textile +618 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/form_helpers.textile +798 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/generators.textile +621 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/getting_started.textile +1914 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/i18n.textile +931 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/index.html.erb +30 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/initialization.textile +1116 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/KINDLE.md +26 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/copyright.html.erb +1 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/layout.html.erb +27 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/rails_guides.opf.erb +52 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/toc.html.erb +24 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/toc.ncx.erb +64 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/kindle/welcome.html.erb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/layout.html.erb +124 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/layouts_and_rendering.textile +1237 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/migrations.textile +900 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/nested_model_forms.textile +222 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/performance_testing.textile +597 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/plugins.textile +464 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/rails_application_templates.textile +240 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/rails_on_rack.textile +236 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/routing.textile +885 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/ruby_on_rails_guides_guidelines.textile +79 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/security.textile +1004 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/source/testing.textile +947 -0
- data/vendor/bundle/gems/railties-3.2.1/guides/w3c_validator.rb +91 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/all.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application/bootstrap.rb +73 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application/configuration.rb +151 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application/finisher.rb +98 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application/railties.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application/route_inspector.rb +84 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application/routes_reloader.rb +56 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/application.rb +315 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/backtrace_cleaner.rb +42 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/cli.rb +16 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/code_statistics.rb +118 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/application.rb +38 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/benchmarker.rb +34 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/console.rb +55 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/dbconsole.rb +123 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/destroy.rb +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/generate.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/plugin.rb +544 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/plugin_new.rb +11 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/profiler.rb +32 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/runner.rb +54 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/server.rb +100 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands/update.rb +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/commands.rb +100 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/configuration.rb +89 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/console/app.rb +36 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/console/helpers.rb +11 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/engine/commands.rb +39 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/engine/configuration.rb +84 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/engine/railties.rb +33 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/engine.rb +657 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/actions.rb +325 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/active_model.rb +78 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/app_base.rb +281 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/base.rb +376 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/css/assets/assets_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/css/scaffold/scaffold_generator.rb +16 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/controller/controller_generator.rb +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/controller/templates/view.html.erb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/mailer/mailer_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/mailer/templates/view.text.erb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/scaffold/scaffold_generator.rb +29 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/scaffold/templates/_form.html.erb +23 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/scaffold/templates/edit.html.erb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/scaffold/templates/index.html.erb +27 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/scaffold/templates/new.html.erb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb/scaffold/templates/show.html.erb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/erb.rb +21 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/generated_attribute.rb +107 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/js/assets/assets_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/js/assets/templates/javascript.js +2 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/migration.rb +68 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/named_base.rb +198 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/USAGE +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/app_generator.rb +303 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/Gemfile +26 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/README +261 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/Rakefile +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/app/assets/images/rails.png +0 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +17 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb +2 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +14 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/application.rb +71 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/boot.rb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml +31 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml +86 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml +62 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml +33 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +43 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +54 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/oracle.yml +39 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +55 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml +25 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/environment.rb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +41 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +73 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +39 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb +5 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/locales/en.yml +5 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config/routes.rb +58 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/config.ru +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/doc/README_FOR_APP +2 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/gitignore +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/public/404.html +26 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/public/422.html +26 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/public/500.html +25 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/public/index.html +241 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/public/robots.txt +5 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/script/rails +5 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/app/templates/test/test_helper.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/assets/USAGE +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/assets/assets_generator.rb +25 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/assets/templates/javascript.js +2 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/controller/USAGE +18 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/controller/controller_generator.rb +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/controller/templates/controller.rb +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/generator/USAGE +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/generator/generator_generator.rb +25 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/helper/USAGE +17 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/helper/helper_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/helper/templates/helper.rb +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/integration_test/USAGE +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/integration_test/integration_test_generator.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/migration/USAGE +29 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/migration/migration_generator.rb +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/model/USAGE +45 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/model/model_generator.rb +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/observer/USAGE +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/observer/observer_generator.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/performance_test/USAGE +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/performance_test/performance_test_generator.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/USAGE +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb +318 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/%name%.gemspec +27 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/Gemfile +23 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/README.rdoc +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/Rakefile +31 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/app/helpers/%name%/application_helper.rb.tt +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt +14 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/config/routes.rb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/gitignore +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/lib/%name%/version.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/lib/tasks/%name%_tasks.rake +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/rails/application.rb +18 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/rails/boot.rb +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/rails/routes.rb +4 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/script/rails.tt +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/resource/USAGE +23 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/resource/resource_generator.rb +26 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/scaffold/USAGE +35 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/scaffold/scaffold_generator.rb +23 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/scaffold/templates/scaffold.css +56 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/scaffold_controller/USAGE +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +25 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +85 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/session_migration/USAGE +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/session_migration/session_migration_generator.rb +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/task/USAGE +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/task/task_generator.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/rails/task/templates/task.rb +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/resource_helpers.rb +80 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_case.rb +247 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/controller/controller_generator.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/controller/templates/functional_test.rb +19 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/helper/helper_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/helper/templates/helper_test.rb +6 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/integration/integration_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/integration/templates/integration_test.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/mailer/mailer_generator.rb +14 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/mailer/templates/functional_test.rb +21 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/model/model_generator.rb +24 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/model/templates/fixtures.yml +23 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/model/templates/unit_test.rb +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/observer/observer_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/observer/templates/unit_test.rb +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/performance/performance_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/performance/templates/performance_test.rb +12 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/plugin/plugin_generator.rb +13 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +17 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +51 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators/test_unit.rb +8 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/generators.rb +337 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/info.rb +116 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/info_controller.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/initializable.rb +89 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/paths.rb +182 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/performance_test_help.rb +3 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/plugin.rb +92 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/rack/debugger.rb +24 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/rack/log_tailer.rb +30 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/rack/logger.rb +47 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/rack.rb +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/railtie/configurable.rb +35 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/railtie/configuration.rb +90 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/railtie.rb +202 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/ruby_version_check.rb +23 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/rubyprof_ext.rb +35 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/script_rails_loader.rb +29 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/source_annotation_extractor.rb +104 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/annotations.rake +20 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/documentation.rake +155 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/engine.rake +72 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/framework.rake +76 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/log.rake +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/middleware.rake +7 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/misc.rake +67 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/routes.rake +9 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/statistics.rake +16 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks/tmp.rake +37 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/tasks.rb +16 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/test_help.rb +56 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/test_unit/railtie.rb +15 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/test_unit/sub_test_task.rb +36 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/test_unit/testing.rake +132 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails/version.rb +10 -0
- data/vendor/bundle/gems/railties-3.2.1/lib/rails.rb +126 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/Makefile +1 -1
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/mkmf.log +5 -5
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/rdiscount.bundle +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/lib/rdiscount.bundle +0 -0
- data/vendor/bundle/gems/simplecov-0.5.4/CHANGELOG.md +92 -0
- data/vendor/bundle/gems/simplecov-0.5.4/Gemfile +9 -0
- data/vendor/bundle/gems/simplecov-0.5.4/LICENSE +20 -0
- data/vendor/bundle/gems/simplecov-0.5.4/README.md +414 -0
- data/vendor/bundle/gems/simplecov-0.5.4/Rakefile +14 -0
- data/vendor/bundle/gems/simplecov-0.5.4/cucumber.yml +13 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_adapters.feature +44 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_autoload.feature +46 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_command_name.feature +33 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_coverage_dir.feature +20 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_deactivate_merging.feature +42 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_merge_timeout.feature +38 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_nocov_token.feature +79 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_project_name.feature +27 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/config_styles.feature +93 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/cucumber_basic.feature +29 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/merging_test_unit_and_rspec.feature +44 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/rspec_basic.feature +31 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/rspec_fails_on_initialization.feature +14 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/rspec_groups_and_filters_basic.feature +29 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/rspec_groups_and_filters_complex.feature +35 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/rspec_groups_using_filter_class.feature +40 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/rspec_without_simplecov.feature +20 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/skipping_code_blocks_manually.feature +70 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/step_definitions/html_steps.rb +45 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/step_definitions/simplecov_steps.rb +61 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/step_definitions/transformers.rb +13 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/step_definitions/web_steps.rb +64 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/support/env.rb +26 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/test_unit_basic.feature +34 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/test_unit_groups_and_filters_basic.feature +29 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/test_unit_groups_and_filters_complex.feature +35 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/test_unit_groups_using_filter_class.feature +40 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/test_unit_without_simplecov.feature +20 -0
- data/vendor/bundle/gems/simplecov-0.5.4/features/unicode_compatiblity.feature +67 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/adapters.rb +29 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/command_guesser.rb +21 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/configuration.rb +213 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/defaults.rb +53 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/file_list.rb +44 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/filter.rb +44 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/formatter/simple_formatter.rb +19 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/formatter.rb +7 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/merge_helpers.rb +39 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/result.rb +125 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/result_merger.rb +80 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/source_file.rb +173 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov/version.rb +3 -0
- data/vendor/bundle/gems/simplecov-0.5.4/lib/simplecov.rb +120 -0
- data/vendor/bundle/gems/simplecov-0.5.4/simplecov.gemspec +28 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/Gemfile +6 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/Rakefile +8 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/cucumber.yml +13 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/features/step_definitions/my_steps.rb +23 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/features/support/env.rb +12 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/features/test_stuff.feature +6 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/lib/faked_project/framework_specific.rb +18 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/lib/faked_project/meta_magic.rb +24 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/lib/faked_project/some_class.rb +29 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/lib/faked_project.rb +11 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/spec/faked_spec.rb +11 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/spec/meta_magic_spec.rb +10 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/spec/some_class_spec.rb +10 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/spec/spec_helper.rb +15 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/test/faked_test.rb +11 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/test/meta_magic_test.rb +13 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/test/some_class_test.rb +15 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/faked_project/test/test_helper.rb +16 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/app/controllers/sample_controller.rb +10 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/app/models/user.rb +10 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/deleted_source_sample.rb +15 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/frameworks/rspec_bad.rb +9 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/frameworks/rspec_good.rb +9 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/frameworks/testunit_bad.rb +9 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/frameworks/testunit_good.rb +9 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/resultset1.rb +4 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/resultset2.rb +5 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/fixtures/sample.rb +16 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/helper.rb +35 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/shoulda_macros.rb +29 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_1_8_fallbacks.rb +33 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_command_guesser.rb +20 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_deleted_source.rb +16 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_file_list.rb +24 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_filters.rb +80 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_merge_helpers.rb +107 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_result.rb +147 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_return_codes.rb +39 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_source_file.rb +75 -0
- data/vendor/bundle/gems/simplecov-0.5.4/test/test_source_file_line.rb +110 -0
- data/vendor/bundle/gems/sqlite3-1.3.5/ext/sqlite3/Makefile +1 -1
- data/vendor/bundle/gems/sqlite3-1.3.5/ext/sqlite3/mkmf.log +18 -18
- data/vendor/bundle/gems/sqlite3-1.3.5/ext/sqlite3/sqlite3_native.bundle +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.5/lib/sqlite3/sqlite3_native.bundle +0 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/CHANGES +453 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/LICENSE +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/README +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/Rakefile +241 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/country.rb +176 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/country_index_definition.rb +48 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/country_info.rb +80 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/country_timezone.rb +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/data_timezone.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/data_timezone_info.rb +222 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Abidjan.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Accra.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Addis_Ababa.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Algiers.rb +53 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Asmara.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Asmera.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Bamako.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Bangui.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Banjul.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Bissau.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Blantyre.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Brazzaville.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Bujumbura.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Cairo.rb +139 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Casablanca.rb +44 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Ceuta.rb +170 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Conakry.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Dakar.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Dar_es_Salaam.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Djibouti.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Douala.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/El_Aaiun.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Freetown.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Gaborone.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Harare.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Johannesburg.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Juba.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Kampala.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Khartoum.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Kigali.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Kinshasa.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Lagos.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Libreville.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Lome.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Luanda.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Lubumbashi.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Lusaka.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Malabo.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Maputo.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Maseru.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Mbabane.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Mogadishu.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Monrovia.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Nairobi.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Ndjamena.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Niamey.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Nouakchott.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Ouagadougou.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Porto__m__Novo.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Sao_Tome.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Timbuktu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Tripoli.rb +46 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Tunis.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Africa/Windhoek.rb +138 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Adak.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Anchorage.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Anguilla.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Antigua.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Araguaina.rb +65 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +82 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Catamarca.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/ComodRivadavia.rb +13 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Cordoba.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Jujuy.rb +82 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/La_Rioja.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Mendoza.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Rio_Gallegos.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Salta.rb +81 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/San_Juan.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/San_Luis.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Tucuman.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Argentina/Ushuaia.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Aruba.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Asuncion.rb +172 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Atikokan.rb +26 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Atka.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Bahia.rb +153 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Bahia_Banderas.rb +138 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Barbados.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Belem.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Belize.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Blanc__m__Sablon.rb +24 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Boa_Vista.rb +49 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Bogota.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Boise.rb +197 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Buenos_Aires.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Cambridge_Bay.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Campo_Grande.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Cancun.rb +131 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Caracas.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Catamarca.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Cayenne.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Cayman.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Chicago.rb +281 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Chihuahua.rb +134 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Coral_Harbour.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Cordoba.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Costa_Rica.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Cuiaba.rb +167 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Curacao.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Danmarkshavn.rb +51 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Dawson.rb +174 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Dawson_Creek.rb +77 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Denver.rb +202 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Detroit.rb +184 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Dominica.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Edmonton.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Eirunepe.rb +49 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/El_Salvador.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Ensenada.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Fort_Wayne.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Fortaleza.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Glace_Bay.rb +184 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Godthab.rb +159 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Goose_Bay.rb +253 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Grand_Turk.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Grenada.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Guadeloupe.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Guatemala.rb +25 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Guayaquil.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Guyana.rb +22 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Halifax.rb +272 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Havana.rb +199 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Hermosillo.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Indianapolis.rb +147 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Knox.rb +201 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Marengo.rb +151 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Petersburg.rb +164 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Tell_City.rb +149 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Vevay.rb +129 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Vincennes.rb +149 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indiana/Winamac.rb +155 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Indianapolis.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Inuvik.rb +164 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Iqaluit.rb +168 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Jamaica.rb +39 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Jujuy.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Juneau.rb +193 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Kentucky/Louisville.rb +226 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Kentucky/Monticello.rb +196 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Knox_IN.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Kralendijk.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/La_Paz.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Lima.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Los_Angeles.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Louisville.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Lower_Princes.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Maceio.rb +57 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Managua.rb +34 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Manaus.rb +47 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Marigot.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Martinique.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Matamoros.rb +129 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Mazatlan.rb +137 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Mendoza.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Menominee.rb +188 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Merida.rb +130 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Metlakatla.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Mexico_City.rb +142 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Miquelon.rb +147 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Moncton.rb +252 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Monterrey.rb +129 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Montevideo.rb +177 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Montreal.rb +277 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Montserrat.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Nassau.rb +191 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/New_York.rb +280 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Nipigon.rb +179 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Nome.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Noronha.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/North_Dakota/Beulah.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/North_Dakota/Center.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/North_Dakota/New_Salem.rb +198 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Ojinaga.rb +134 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Panama.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Pangnirtung.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Paramaribo.rb +24 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Phoenix.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Port__m__au__m__Prince.rb +53 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Port_of_Spain.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Porto_Acre.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Porto_Velho.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Puerto_Rico.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Rainy_River.rb +179 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Rankin_Inlet.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Recife.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Regina.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Resolute.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Rio_Branco.rb +47 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Rosario.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Santa_Isabel.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Santarem.rb +47 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Santiago.rb +203 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Santo_Domingo.rb +36 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Sao_Paulo.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Scoresbysund.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Shiprock.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Sitka.rb +192 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/St_Barthelemy.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/St_Johns.rb +286 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/St_Kitts.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/St_Lucia.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/St_Thomas.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/St_Vincent.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Swift_Current.rb +42 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Tegucigalpa.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Thule.rb +137 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Thunder_Bay.rb +184 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Tijuana.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Toronto.rb +277 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Tortola.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Vancouver.rb +234 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Virgin.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Whitehorse.rb +174 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Winnipeg.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Yakutat.rb +191 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/America/Yellowknife.rb +167 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Casey.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Davis.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/DumontDUrville.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Macquarie.rb +112 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Mawson.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/McMurdo.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Palmer.rb +170 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Rothera.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/South_Pole.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Syowa.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Antarctica/Vostok.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Arctic/Longyearbyen.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Aden.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Almaty.rb +65 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Amman.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Anadyr.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Aqtau.rb +73 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Aqtobe.rb +69 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Ashgabat.rb +46 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Ashkhabad.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Baghdad.rb +71 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Bahrain.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Baku.rb +159 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Bangkok.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Beirut.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Bishkek.rb +73 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Brunei.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Calcutta.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Choibalsan.rb +66 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Chongqing.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Chungking.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Colombo.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Dacca.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Damascus.rb +193 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Dhaka.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Dili.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Dubai.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Dushanbe.rb +43 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Gaza.rb +111 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Harbin.rb +35 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Hebron.rb +113 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Ho_Chi_Minh.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Hong_Kong.rb +86 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Hovd.rb +63 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Irkutsk.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Istanbul.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Jakarta.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Jayapura.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Jerusalem.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kabul.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kamchatka.rb +82 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kashgar.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kathmandu.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Katmandu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kolkata.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Krasnoyarsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb +29 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kuching.rb +38 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Kuwait.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Macao.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Macau.rb +59 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Magadan.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Makassar.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Manila.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Muscat.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Nicosia.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Novokuznetsk.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Novosibirsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Omsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Oral.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Phnom_Penh.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Pontianak.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Pyongyang.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Qatar.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Qyzylorda.rb +71 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Rangoon.rb +22 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Riyadh.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Riyadh87.rb +590 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Riyadh88.rb +580 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Riyadh89.rb +580 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Saigon.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Sakhalin.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Samarkand.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Seoul.rb +32 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Shanghai.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Singapore.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Taipei.rb +57 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Tashkent.rb +45 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Tbilisi.rb +76 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Tehran.rb +119 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Tel_Aviv.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Thimbu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Thimphu.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Tokyo.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Ujung_Pandang.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Ulaanbaatar.rb +63 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Ulan_Bator.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Urumqi.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Vientiane.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Vladivostok.rb +84 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Yakutsk.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Yekaterinburg.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Asia/Yerevan.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Azores.rb +268 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Bermuda.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Canary.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Cape_Verde.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Faeroe.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Faroe.rb +157 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Jan_Mayen.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Madeira.rb +267 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Reykjavik.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/South_Georgia.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/St_Helena.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Atlantic/Stanley.rb +166 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/ACT.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Adelaide.rb +185 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Brisbane.rb +33 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Broken_Hill.rb +187 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Canberra.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Currie.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Darwin.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Eucla.rb +35 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Hobart.rb +191 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/LHI.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Lindeman.rb +37 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Lord_Howe.rb +158 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Melbourne.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/NSW.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/North.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Perth.rb +35 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Queensland.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/South.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Sydney.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Tasmania.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Victoria.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/West.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Australia/Yancowinna.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Brazil/Acre.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Brazil/DeNoronha.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Brazil/East.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Brazil/West.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/CET.rb +175 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/CST6CDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Atlantic.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Central.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/East__m__Saskatchewan.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Eastern.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Mountain.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Newfoundland.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Pacific.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Saskatchewan.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Canada/Yukon.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Chile/Continental.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Chile/EasterIsland.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Cuba.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/EET.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/EST.rb +12 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/EST5EDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Egypt.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Eire.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT0.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__0.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__1.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__10.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__11.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__12.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__13.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__14.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__2.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__3.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__4.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__5.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__6.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__7.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__8.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__m__9.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__0.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__1.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__10.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__11.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__12.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__2.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__3.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__4.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__5.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__6.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__7.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__8.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/GMT__p__9.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/Greenwich.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/UCT.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/UTC.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/Universal.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Etc/Zulu.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Amsterdam.rb +226 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Andorra.rb +151 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Athens.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Belfast.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Belgrade.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Berlin.rb +186 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Bratislava.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Brussels.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Bucharest.rb +179 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Budapest.rb +195 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Chisinau.rb +187 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Copenhagen.rb +177 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Dublin.rb +274 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Gibraltar.rb +243 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Guernsey.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Helsinki.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Isle_of_Man.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Istanbul.rb +216 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Jersey.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Kaliningrad.rb +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Kiev.rb +166 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Lisbon.rb +266 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Ljubljana.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/London.rb +286 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Luxembourg.rb +229 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Madrid.rb +209 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Malta.rb +211 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Mariehamn.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Minsk.rb +90 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Monaco.rb +231 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Moscow.rb +101 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Nicosia.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Oslo.rb +183 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Paris.rb +230 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Podgorica.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Prague.rb +185 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Riga.rb +174 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Rome.rb +213 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Samara.rb +88 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/San_Marino.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Sarajevo.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Simferopol.rb +168 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Skopje.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Sofia.rb +171 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Stockholm.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Tallinn.rb +170 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Tirane.rb +175 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Tiraspol.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Uzhgorod.rb +166 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Vaduz.rb +157 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Vatican.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Vienna.rb +181 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Vilnius.rb +168 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Volgograd.rb +85 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Warsaw.rb +210 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Zagreb.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Zaporozhye.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Europe/Zurich.rb +163 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/GB.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/GB__m__Eire.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/GMT.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/GMT0.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/GMT__m__0.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/GMT__p__0.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Greenwich.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/HST.rb +12 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Hongkong.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Iceland.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Antananarivo.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Chagos.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Christmas.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Cocos.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Comoro.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Kerguelen.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Mahe.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Maldives.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Mauritius.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Mayotte.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Indian/Reunion.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Iran.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Israel.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Jamaica.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Japan.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Kwajalein.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Libya.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/MET.rb +175 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/MST.rb +12 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/MST7MDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Mexico/BajaNorte.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Mexico/BajaSur.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Mexico/General.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Mideast/Riyadh87.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Mideast/Riyadh88.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Mideast/Riyadh89.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/NZ.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/NZ__m__CHAT.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Navajo.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/PRC.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/PST8PDT.rb +190 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Apia.rb +28 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Auckland.rb +200 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Chatham.rb +169 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Chuuk.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Easter.rb +188 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Efate.rb +37 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Enderbury.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Fakaofo.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Fiji.rb +27 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Funafuti.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Galapagos.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Gambier.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Guadalcanal.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Guam.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Honolulu.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Johnston.rb +14 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Kiritimati.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Kosrae.rb +19 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Kwajalein.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Majuro.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Marquesas.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Midway.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Nauru.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Niue.rb +20 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Norfolk.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Noumea.rb +23 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Pago_Pago.rb +24 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Palau.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Pitcairn.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Pohnpei.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Ponape.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Port_Moresby.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Rarotonga.rb +44 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Saipan.rb +22 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Samoa.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Tahiti.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Tarawa.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Tongatapu.rb +25 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Truk.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Wake.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Wallis.rb +16 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Pacific/Yap.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Poland.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Portugal.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/ROC.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/ROK.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Singapore.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Turkey.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/UCT.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Alaska.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Aleutian.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Arizona.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Central.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/East__m__Indiana.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Eastern.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Hawaii.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Indiana__m__Starke.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Michigan.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Mountain.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Pacific.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Pacific__m__New.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/US/Samoa.rb +11 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/UTC.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Universal.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/WET.rb +161 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/W__m__SU.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/definitions/Zulu.rb +9 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/indexes/countries.rb +918 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/indexes/timezones.rb +588 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/info_timezone.rb +50 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/linked_timezone.rb +49 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/linked_timezone_info.rb +42 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/offset_rationals.rb +97 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/ruby_core_support.rb +80 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/time_or_datetime.rb +291 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone.rb +535 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_definition.rb +53 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_index_definition.rb +70 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_info.rb +40 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_period.rb +195 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_proxy.rb +83 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/timezone_transition_info.rb +128 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo/tzdataparser.rb +1168 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/lib/tzinfo.rb +55 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_country.rb +156 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_country_index_definition.rb +70 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_country_info.rb +72 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_country_timezone.rb +121 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_data_timezone.rb +68 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_data_timezone_info.rb +282 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_info_timezone.rb +36 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_linked_timezone.rb +102 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_linked_timezone_info.rb +18 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb +25 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_ruby_core_support.rb +31 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_time_or_datetime.rb +422 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone.rb +964 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_definition.rb +115 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_index_definition.rb +75 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_info.rb +13 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_london.rb +114 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_melbourne.rb +114 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_new_york.rb +114 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_offset_info.rb +116 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_period.rb +509 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_proxy.rb +87 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_transition_info.rb +194 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/tc_timezone_utc.rb +29 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/test_utils.rb +21 -0
- data/vendor/bundle/gems/tzinfo-0.3.31/test/ts_all.rb +9 -0
- data/vendor/bundle/specifications/actionmailer-3.2.1.gemspec +33 -0
- data/vendor/bundle/specifications/actionmailer-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/actionpack-3.2.1.gemspec +57 -0
- data/vendor/bundle/specifications/actionpack-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/activemodel-3.2.1.gemspec +32 -0
- data/vendor/bundle/specifications/activemodel-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/activerecord-3.2.1.gemspec +41 -0
- data/vendor/bundle/specifications/activerecord-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/activeresource-3.2.1.gemspec +35 -0
- data/vendor/bundle/specifications/activeresource-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/activesupport-3.2.1.gemspec +33 -0
- data/vendor/bundle/specifications/activesupport-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/arel-3.0.0.gemspec +35 -0
- data/vendor/bundle/specifications/arel-3.0.2.gemspec +1 -1
- data/vendor/bundle/specifications/bcrypt-ruby-3.0.1.gemspec +1 -1
- data/vendor/bundle/specifications/builder-3.0.0.gemspec +1 -1
- data/vendor/bundle/specifications/erubis-2.7.0.gemspec +1 -1
- data/vendor/bundle/specifications/factory_girl-2.5.1.gemspec +62 -0
- data/vendor/bundle/specifications/factory_girl-2.6.1.gemspec +1 -1
- data/vendor/bundle/specifications/highline-1.6.11.gemspec +1 -1
- data/vendor/bundle/specifications/hike-1.2.1.gemspec +1 -1
- data/vendor/bundle/specifications/i18n-0.6.0.gemspec +1 -1
- data/vendor/bundle/specifications/journey-1.0.1.gemspec +47 -0
- data/vendor/bundle/specifications/journey-1.0.3.gemspec +1 -1
- data/vendor/bundle/specifications/json-1.6.5.gemspec +1 -1
- data/vendor/bundle/specifications/mail-2.4.1.gemspec +1 -1
- data/vendor/bundle/specifications/metaclass-0.0.1.gemspec +1 -1
- data/vendor/bundle/specifications/mime-types-1.17.2.gemspec +1 -1
- data/vendor/bundle/specifications/mocha-0.10.3.gemspec +44 -0
- data/vendor/bundle/specifications/mocha-0.10.5.gemspec +1 -1
- data/vendor/bundle/specifications/multi_json-1.0.4.gemspec +40 -0
- data/vendor/bundle/specifications/multi_json-1.1.0.gemspec +1 -1
- data/vendor/bundle/specifications/polyglot-0.3.3.gemspec +1 -1
- data/vendor/bundle/specifications/rack-1.4.1.gemspec +1 -1
- data/vendor/bundle/specifications/rack-cache-1.1.gemspec +40 -0
- data/vendor/bundle/specifications/rack-cache-1.2.gemspec +1 -1
- data/vendor/bundle/specifications/rack-ssl-1.3.2.gemspec +1 -1
- data/vendor/bundle/specifications/rack-test-0.6.1.gemspec +1 -1
- data/vendor/bundle/specifications/rails-3.2.1.gemspec +47 -0
- data/vendor/bundle/specifications/rails-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/railties-3.2.1.gemspec +47 -0
- data/vendor/bundle/specifications/railties-3.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/rake-0.9.2.2.gemspec +1 -1
- data/vendor/bundle/specifications/rdiscount-1.6.8.gemspec +1 -1
- data/vendor/bundle/specifications/rdoc-3.12.gemspec +1 -1
- data/vendor/bundle/specifications/shoulda-2.11.3.gemspec +1 -1
- data/vendor/bundle/specifications/shoulda-3.0.1.gemspec +1 -1
- data/vendor/bundle/specifications/shoulda-context-1.0.0.gemspec +1 -1
- data/vendor/bundle/specifications/shoulda-matchers-1.0.0.gemspec +1 -1
- data/vendor/bundle/specifications/simplecov-0.5.4.gemspec +49 -0
- data/vendor/bundle/specifications/simplecov-0.6.1.gemspec +1 -1
- data/vendor/bundle/specifications/simplecov-html-0.5.3.gemspec +1 -1
- data/vendor/bundle/specifications/sprockets-2.1.2.gemspec +1 -1
- data/vendor/bundle/specifications/sqlite3-1.3.5.gemspec +1 -1
- data/vendor/bundle/specifications/thor-0.14.6.gemspec +1 -1
- data/vendor/bundle/specifications/tilt-1.3.3.gemspec +1 -1
- data/vendor/bundle/specifications/treetop-1.4.10.gemspec +1 -1
- data/vendor/bundle/specifications/tzinfo-0.3.31.gemspec +29 -0
- data/vendor/bundle/specifications/tzinfo-0.3.32.gemspec +1 -1
- data/vendor/bundle/specifications/yard-0.7.5.gemspec +1 -1
- metadata +2447 -11
data/vendor/bundle/gems/actionpack-3.2.1/lib/action_controller/vendor/html-scanner/html/selector.rb
ADDED
@@ -0,0 +1,830 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2006 Assaf Arkin (http://labnotes.org)
|
3
|
+
# Under MIT and/or CC By license.
|
4
|
+
#++
|
5
|
+
|
6
|
+
module HTML
|
7
|
+
|
8
|
+
# Selects HTML elements using CSS 2 selectors.
|
9
|
+
#
|
10
|
+
# The +Selector+ class uses CSS selector expressions to match and select
|
11
|
+
# HTML elements.
|
12
|
+
#
|
13
|
+
# For example:
|
14
|
+
# selector = HTML::Selector.new "form.login[action=/login]"
|
15
|
+
# creates a new selector that matches any +form+ element with the class
|
16
|
+
# +login+ and an attribute +action+ with the value <tt>/login</tt>.
|
17
|
+
#
|
18
|
+
# === Matching Elements
|
19
|
+
#
|
20
|
+
# Use the #match method to determine if an element matches the selector.
|
21
|
+
#
|
22
|
+
# For simple selectors, the method returns an array with that element,
|
23
|
+
# or +nil+ if the element does not match. For complex selectors (see below)
|
24
|
+
# the method returns an array with all matched elements, of +nil+ if no
|
25
|
+
# match found.
|
26
|
+
#
|
27
|
+
# For example:
|
28
|
+
# if selector.match(element)
|
29
|
+
# puts "Element is a login form"
|
30
|
+
# end
|
31
|
+
#
|
32
|
+
# === Selecting Elements
|
33
|
+
#
|
34
|
+
# Use the #select method to select all matching elements starting with
|
35
|
+
# one element and going through all children in depth-first order.
|
36
|
+
#
|
37
|
+
# This method returns an array of all matching elements, an empty array
|
38
|
+
# if no match is found
|
39
|
+
#
|
40
|
+
# For example:
|
41
|
+
# selector = HTML::Selector.new "input[type=text]"
|
42
|
+
# matches = selector.select(element)
|
43
|
+
# matches.each do |match|
|
44
|
+
# puts "Found text field with name #{match.attributes['name']}"
|
45
|
+
# end
|
46
|
+
#
|
47
|
+
# === Expressions
|
48
|
+
#
|
49
|
+
# Selectors can match elements using any of the following criteria:
|
50
|
+
# * <tt>name</tt> -- Match an element based on its name (tag name).
|
51
|
+
# For example, <tt>p</tt> to match a paragraph. You can use <tt>*</tt>
|
52
|
+
# to match any element.
|
53
|
+
# * <tt>#</tt><tt>id</tt> -- Match an element based on its identifier (the
|
54
|
+
# <tt>id</tt> attribute). For example, <tt>#</tt><tt>page</tt>.
|
55
|
+
# * <tt>.class</tt> -- Match an element based on its class name, all
|
56
|
+
# class names if more than one specified.
|
57
|
+
# * <tt>[attr]</tt> -- Match an element that has the specified attribute.
|
58
|
+
# * <tt>[attr=value]</tt> -- Match an element that has the specified
|
59
|
+
# attribute and value. (More operators are supported see below)
|
60
|
+
# * <tt>:pseudo-class</tt> -- Match an element based on a pseudo class,
|
61
|
+
# such as <tt>:nth-child</tt> and <tt>:empty</tt>.
|
62
|
+
# * <tt>:not(expr)</tt> -- Match an element that does not match the
|
63
|
+
# negation expression.
|
64
|
+
#
|
65
|
+
# When using a combination of the above, the element name comes first
|
66
|
+
# followed by identifier, class names, attributes, pseudo classes and
|
67
|
+
# negation in any order. Do not separate these parts with spaces!
|
68
|
+
# Space separation is used for descendant selectors.
|
69
|
+
#
|
70
|
+
# For example:
|
71
|
+
# selector = HTML::Selector.new "form.login[action=/login]"
|
72
|
+
# The matched element must be of type +form+ and have the class +login+.
|
73
|
+
# It may have other classes, but the class +login+ is required to match.
|
74
|
+
# It must also have an attribute called +action+ with the value
|
75
|
+
# <tt>/login</tt>.
|
76
|
+
#
|
77
|
+
# This selector will match the following element:
|
78
|
+
# <form class="login form" method="post" action="/login">
|
79
|
+
# but will not match the element:
|
80
|
+
# <form method="post" action="/logout">
|
81
|
+
#
|
82
|
+
# === Attribute Values
|
83
|
+
#
|
84
|
+
# Several operators are supported for matching attributes:
|
85
|
+
# * <tt>name</tt> -- The element must have an attribute with that name.
|
86
|
+
# * <tt>name=value</tt> -- The element must have an attribute with that
|
87
|
+
# name and value.
|
88
|
+
# * <tt>name^=value</tt> -- The attribute value must start with the
|
89
|
+
# specified value.
|
90
|
+
# * <tt>name$=value</tt> -- The attribute value must end with the
|
91
|
+
# specified value.
|
92
|
+
# * <tt>name*=value</tt> -- The attribute value must contain the
|
93
|
+
# specified value.
|
94
|
+
# * <tt>name~=word</tt> -- The attribute value must contain the specified
|
95
|
+
# word (space separated).
|
96
|
+
# * <tt>name|=word</tt> -- The attribute value must start with specified
|
97
|
+
# word.
|
98
|
+
#
|
99
|
+
# For example, the following two selectors match the same element:
|
100
|
+
# #my_id
|
101
|
+
# [id=my_id]
|
102
|
+
# and so do the following two selectors:
|
103
|
+
# .my_class
|
104
|
+
# [class~=my_class]
|
105
|
+
#
|
106
|
+
# === Alternatives, siblings, children
|
107
|
+
#
|
108
|
+
# Complex selectors use a combination of expressions to match elements:
|
109
|
+
# * <tt>expr1 expr2</tt> -- Match any element against the second expression
|
110
|
+
# if it has some parent element that matches the first expression.
|
111
|
+
# * <tt>expr1 > expr2</tt> -- Match any element against the second expression
|
112
|
+
# if it is the child of an element that matches the first expression.
|
113
|
+
# * <tt>expr1 + expr2</tt> -- Match any element against the second expression
|
114
|
+
# if it immediately follows an element that matches the first expression.
|
115
|
+
# * <tt>expr1 ~ expr2</tt> -- Match any element against the second expression
|
116
|
+
# that comes after an element that matches the first expression.
|
117
|
+
# * <tt>expr1, expr2</tt> -- Match any element against the first expression,
|
118
|
+
# or against the second expression.
|
119
|
+
#
|
120
|
+
# Since children and sibling selectors may match more than one element given
|
121
|
+
# the first element, the #match method may return more than one match.
|
122
|
+
#
|
123
|
+
# === Pseudo classes
|
124
|
+
#
|
125
|
+
# Pseudo classes were introduced in CSS 3. They are most often used to select
|
126
|
+
# elements in a given position:
|
127
|
+
# * <tt>:root</tt> -- Match the element only if it is the root element
|
128
|
+
# (no parent element).
|
129
|
+
# * <tt>:empty</tt> -- Match the element only if it has no child elements,
|
130
|
+
# and no text content.
|
131
|
+
# * <tt>:content(string)</tt> -- Match the element only if it has <tt>string</tt>
|
132
|
+
# as its text content (ignoring leading and trailing whitespace).
|
133
|
+
# * <tt>:only-child</tt> -- Match the element if it is the only child (element)
|
134
|
+
# of its parent element.
|
135
|
+
# * <tt>:only-of-type</tt> -- Match the element if it is the only child (element)
|
136
|
+
# of its parent element and its type.
|
137
|
+
# * <tt>:first-child</tt> -- Match the element if it is the first child (element)
|
138
|
+
# of its parent element.
|
139
|
+
# * <tt>:first-of-type</tt> -- Match the element if it is the first child (element)
|
140
|
+
# of its parent element of its type.
|
141
|
+
# * <tt>:last-child</tt> -- Match the element if it is the last child (element)
|
142
|
+
# of its parent element.
|
143
|
+
# * <tt>:last-of-type</tt> -- Match the element if it is the last child (element)
|
144
|
+
# of its parent element of its type.
|
145
|
+
# * <tt>:nth-child(b)</tt> -- Match the element if it is the b-th child (element)
|
146
|
+
# of its parent element. The value <tt>b</tt> specifies its index, starting with 1.
|
147
|
+
# * <tt>:nth-child(an+b)</tt> -- Match the element if it is the b-th child (element)
|
148
|
+
# in each group of <tt>a</tt> child elements of its parent element.
|
149
|
+
# * <tt>:nth-child(-an+b)</tt> -- Match the element if it is the first child (element)
|
150
|
+
# in each group of <tt>a</tt> child elements, up to the first <tt>b</tt> child
|
151
|
+
# elements of its parent element.
|
152
|
+
# * <tt>:nth-child(odd)</tt> -- Match element in the odd position (i.e. first, third).
|
153
|
+
# Same as <tt>:nth-child(2n+1)</tt>.
|
154
|
+
# * <tt>:nth-child(even)</tt> -- Match element in the even position (i.e. second,
|
155
|
+
# fourth). Same as <tt>:nth-child(2n+2)</tt>.
|
156
|
+
# * <tt>:nth-of-type(..)</tt> -- As above, but only counts elements of its type.
|
157
|
+
# * <tt>:nth-last-child(..)</tt> -- As above, but counts from the last child.
|
158
|
+
# * <tt>:nth-last-of-type(..)</tt> -- As above, but counts from the last child and
|
159
|
+
# only elements of its type.
|
160
|
+
# * <tt>:not(selector)</tt> -- Match the element only if the element does not
|
161
|
+
# match the simple selector.
|
162
|
+
#
|
163
|
+
# As you can see, <tt>:nth-child<tt> pseudo class and its variant can get quite
|
164
|
+
# tricky and the CSS specification doesn't do a much better job explaining it.
|
165
|
+
# But after reading the examples and trying a few combinations, it's easy to
|
166
|
+
# figure out.
|
167
|
+
#
|
168
|
+
# For example:
|
169
|
+
# table tr:nth-child(odd)
|
170
|
+
# Selects every second row in the table starting with the first one.
|
171
|
+
#
|
172
|
+
# div p:nth-child(4)
|
173
|
+
# Selects the fourth paragraph in the +div+, but not if the +div+ contains
|
174
|
+
# other elements, since those are also counted.
|
175
|
+
#
|
176
|
+
# div p:nth-of-type(4)
|
177
|
+
# Selects the fourth paragraph in the +div+, counting only paragraphs, and
|
178
|
+
# ignoring all other elements.
|
179
|
+
#
|
180
|
+
# div p:nth-of-type(-n+4)
|
181
|
+
# Selects the first four paragraphs, ignoring all others.
|
182
|
+
#
|
183
|
+
# And you can always select an element that matches one set of rules but
|
184
|
+
# not another using <tt>:not</tt>. For example:
|
185
|
+
# p:not(.post)
|
186
|
+
# Matches all paragraphs that do not have the class <tt>.post</tt>.
|
187
|
+
#
|
188
|
+
# === Substitution Values
|
189
|
+
#
|
190
|
+
# You can use substitution with identifiers, class names and element values.
|
191
|
+
# A substitution takes the form of a question mark (<tt>?</tt>) and uses the
|
192
|
+
# next value in the argument list following the CSS expression.
|
193
|
+
#
|
194
|
+
# The substitution value may be a string or a regular expression. All other
|
195
|
+
# values are converted to strings.
|
196
|
+
#
|
197
|
+
# For example:
|
198
|
+
# selector = HTML::Selector.new "#?", /^\d+$/
|
199
|
+
# matches any element whose identifier consists of one or more digits.
|
200
|
+
#
|
201
|
+
# See http://www.w3.org/TR/css3-selectors/
|
202
|
+
class Selector
|
203
|
+
|
204
|
+
|
205
|
+
# An invalid selector.
|
206
|
+
class InvalidSelectorError < StandardError #:nodoc:
|
207
|
+
end
|
208
|
+
|
209
|
+
|
210
|
+
class << self
|
211
|
+
|
212
|
+
# :call-seq:
|
213
|
+
# Selector.for_class(cls) => selector
|
214
|
+
#
|
215
|
+
# Creates a new selector for the given class name.
|
216
|
+
def for_class(cls)
|
217
|
+
self.new([".?", cls])
|
218
|
+
end
|
219
|
+
|
220
|
+
|
221
|
+
# :call-seq:
|
222
|
+
# Selector.for_id(id) => selector
|
223
|
+
#
|
224
|
+
# Creates a new selector for the given id.
|
225
|
+
def for_id(id)
|
226
|
+
self.new(["#?", id])
|
227
|
+
end
|
228
|
+
|
229
|
+
end
|
230
|
+
|
231
|
+
|
232
|
+
# :call-seq:
|
233
|
+
# Selector.new(string, [values ...]) => selector
|
234
|
+
#
|
235
|
+
# Creates a new selector from a CSS 2 selector expression.
|
236
|
+
#
|
237
|
+
# The first argument is the selector expression. All other arguments
|
238
|
+
# are used for value substitution.
|
239
|
+
#
|
240
|
+
# Throws InvalidSelectorError is the selector expression is invalid.
|
241
|
+
def initialize(selector, *values)
|
242
|
+
raise ArgumentError, "CSS expression cannot be empty" if selector.empty?
|
243
|
+
@source = ""
|
244
|
+
values = values[0] if values.size == 1 && values[0].is_a?(Array)
|
245
|
+
|
246
|
+
# We need a copy to determine if we failed to parse, and also
|
247
|
+
# preserve the original pass by-ref statement.
|
248
|
+
statement = selector.strip.dup
|
249
|
+
|
250
|
+
# Create a simple selector, along with negation.
|
251
|
+
simple_selector(statement, values).each { |name, value| instance_variable_set("@#{name}", value) }
|
252
|
+
|
253
|
+
@alternates = []
|
254
|
+
@depends = nil
|
255
|
+
|
256
|
+
# Alternative selector.
|
257
|
+
if statement.sub!(/^\s*,\s*/, "")
|
258
|
+
second = Selector.new(statement, values)
|
259
|
+
@alternates << second
|
260
|
+
# If there are alternate selectors, we group them in the top selector.
|
261
|
+
if alternates = second.instance_variable_get(:@alternates)
|
262
|
+
second.instance_variable_set(:@alternates, [])
|
263
|
+
@alternates.concat alternates
|
264
|
+
end
|
265
|
+
@source << " , " << second.to_s
|
266
|
+
# Sibling selector: create a dependency into second selector that will
|
267
|
+
# match element immediately following this one.
|
268
|
+
elsif statement.sub!(/^\s*\+\s*/, "")
|
269
|
+
second = next_selector(statement, values)
|
270
|
+
@depends = lambda do |element, first|
|
271
|
+
if element = next_element(element)
|
272
|
+
second.match(element, first)
|
273
|
+
end
|
274
|
+
end
|
275
|
+
@source << " + " << second.to_s
|
276
|
+
# Adjacent selector: create a dependency into second selector that will
|
277
|
+
# match all elements following this one.
|
278
|
+
elsif statement.sub!(/^\s*~\s*/, "")
|
279
|
+
second = next_selector(statement, values)
|
280
|
+
@depends = lambda do |element, first|
|
281
|
+
matches = []
|
282
|
+
while element = next_element(element)
|
283
|
+
if subset = second.match(element, first)
|
284
|
+
if first && !subset.empty?
|
285
|
+
matches << subset.first
|
286
|
+
break
|
287
|
+
else
|
288
|
+
matches.concat subset
|
289
|
+
end
|
290
|
+
end
|
291
|
+
end
|
292
|
+
matches.empty? ? nil : matches
|
293
|
+
end
|
294
|
+
@source << " ~ " << second.to_s
|
295
|
+
# Child selector: create a dependency into second selector that will
|
296
|
+
# match a child element of this one.
|
297
|
+
elsif statement.sub!(/^\s*>\s*/, "")
|
298
|
+
second = next_selector(statement, values)
|
299
|
+
@depends = lambda do |element, first|
|
300
|
+
matches = []
|
301
|
+
element.children.each do |child|
|
302
|
+
if child.tag? && subset = second.match(child, first)
|
303
|
+
if first && !subset.empty?
|
304
|
+
matches << subset.first
|
305
|
+
break
|
306
|
+
else
|
307
|
+
matches.concat subset
|
308
|
+
end
|
309
|
+
end
|
310
|
+
end
|
311
|
+
matches.empty? ? nil : matches
|
312
|
+
end
|
313
|
+
@source << " > " << second.to_s
|
314
|
+
# Descendant selector: create a dependency into second selector that
|
315
|
+
# will match all descendant elements of this one. Note,
|
316
|
+
elsif statement =~ /^\s+\S+/ && statement != selector
|
317
|
+
second = next_selector(statement, values)
|
318
|
+
@depends = lambda do |element, first|
|
319
|
+
matches = []
|
320
|
+
stack = element.children.reverse
|
321
|
+
while node = stack.pop
|
322
|
+
next unless node.tag?
|
323
|
+
if subset = second.match(node, first)
|
324
|
+
if first && !subset.empty?
|
325
|
+
matches << subset.first
|
326
|
+
break
|
327
|
+
else
|
328
|
+
matches.concat subset
|
329
|
+
end
|
330
|
+
elsif children = node.children
|
331
|
+
stack.concat children.reverse
|
332
|
+
end
|
333
|
+
end
|
334
|
+
matches.empty? ? nil : matches
|
335
|
+
end
|
336
|
+
@source << " " << second.to_s
|
337
|
+
else
|
338
|
+
# The last selector is where we check that we parsed
|
339
|
+
# all the parts.
|
340
|
+
unless statement.empty? || statement.strip.empty?
|
341
|
+
raise ArgumentError, "Invalid selector: #{statement}"
|
342
|
+
end
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
|
347
|
+
# :call-seq:
|
348
|
+
# match(element, first?) => array or nil
|
349
|
+
#
|
350
|
+
# Matches an element against the selector.
|
351
|
+
#
|
352
|
+
# For a simple selector this method returns an array with the
|
353
|
+
# element if the element matches, nil otherwise.
|
354
|
+
#
|
355
|
+
# For a complex selector (sibling and descendant) this method
|
356
|
+
# returns an array with all matching elements, nil if no match is
|
357
|
+
# found.
|
358
|
+
#
|
359
|
+
# Use +first_only=true+ if you are only interested in the first element.
|
360
|
+
#
|
361
|
+
# For example:
|
362
|
+
# if selector.match(element)
|
363
|
+
# puts "Element is a login form"
|
364
|
+
# end
|
365
|
+
def match(element, first_only = false)
|
366
|
+
# Match element if no element name or element name same as element name
|
367
|
+
if matched = (!@tag_name || @tag_name == element.name)
|
368
|
+
# No match if one of the attribute matches failed
|
369
|
+
for attr in @attributes
|
370
|
+
if element.attributes[attr[0]] !~ attr[1]
|
371
|
+
matched = false
|
372
|
+
break
|
373
|
+
end
|
374
|
+
end
|
375
|
+
end
|
376
|
+
|
377
|
+
# Pseudo class matches (nth-child, empty, etc).
|
378
|
+
if matched
|
379
|
+
for pseudo in @pseudo
|
380
|
+
unless pseudo.call(element)
|
381
|
+
matched = false
|
382
|
+
break
|
383
|
+
end
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
# Negation. Same rules as above, but we fail if a match is made.
|
388
|
+
if matched && @negation
|
389
|
+
for negation in @negation
|
390
|
+
if negation[:tag_name] == element.name
|
391
|
+
matched = false
|
392
|
+
else
|
393
|
+
for attr in negation[:attributes]
|
394
|
+
if element.attributes[attr[0]] =~ attr[1]
|
395
|
+
matched = false
|
396
|
+
break
|
397
|
+
end
|
398
|
+
end
|
399
|
+
end
|
400
|
+
if matched
|
401
|
+
for pseudo in negation[:pseudo]
|
402
|
+
if pseudo.call(element)
|
403
|
+
matched = false
|
404
|
+
break
|
405
|
+
end
|
406
|
+
end
|
407
|
+
end
|
408
|
+
break unless matched
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
412
|
+
# If element matched but depends on another element (child,
|
413
|
+
# sibling, etc), apply the dependent matches instead.
|
414
|
+
if matched && @depends
|
415
|
+
matches = @depends.call(element, first_only)
|
416
|
+
else
|
417
|
+
matches = matched ? [element] : nil
|
418
|
+
end
|
419
|
+
|
420
|
+
# If this selector is part of the group, try all the alternative
|
421
|
+
# selectors (unless first_only).
|
422
|
+
if !first_only || !matches
|
423
|
+
@alternates.each do |alternate|
|
424
|
+
break if matches && first_only
|
425
|
+
if subset = alternate.match(element, first_only)
|
426
|
+
if matches
|
427
|
+
matches.concat subset
|
428
|
+
else
|
429
|
+
matches = subset
|
430
|
+
end
|
431
|
+
end
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
435
|
+
matches
|
436
|
+
end
|
437
|
+
|
438
|
+
|
439
|
+
# :call-seq:
|
440
|
+
# select(root) => array
|
441
|
+
#
|
442
|
+
# Selects and returns an array with all matching elements, beginning
|
443
|
+
# with one node and traversing through all children depth-first.
|
444
|
+
# Returns an empty array if no match is found.
|
445
|
+
#
|
446
|
+
# The root node may be any element in the document, or the document
|
447
|
+
# itself.
|
448
|
+
#
|
449
|
+
# For example:
|
450
|
+
# selector = HTML::Selector.new "input[type=text]"
|
451
|
+
# matches = selector.select(element)
|
452
|
+
# matches.each do |match|
|
453
|
+
# puts "Found text field with name #{match.attributes['name']}"
|
454
|
+
# end
|
455
|
+
def select(root)
|
456
|
+
matches = []
|
457
|
+
stack = [root]
|
458
|
+
while node = stack.pop
|
459
|
+
if node.tag? && subset = match(node, false)
|
460
|
+
subset.each do |match|
|
461
|
+
matches << match unless matches.any? { |item| item.equal?(match) }
|
462
|
+
end
|
463
|
+
elsif children = node.children
|
464
|
+
stack.concat children.reverse
|
465
|
+
end
|
466
|
+
end
|
467
|
+
matches
|
468
|
+
end
|
469
|
+
|
470
|
+
|
471
|
+
# Similar to #select but returns the first matching element. Returns +nil+
|
472
|
+
# if no element matches the selector.
|
473
|
+
def select_first(root)
|
474
|
+
stack = [root]
|
475
|
+
while node = stack.pop
|
476
|
+
if node.tag? && subset = match(node, true)
|
477
|
+
return subset.first if !subset.empty?
|
478
|
+
elsif children = node.children
|
479
|
+
stack.concat children.reverse
|
480
|
+
end
|
481
|
+
end
|
482
|
+
nil
|
483
|
+
end
|
484
|
+
|
485
|
+
|
486
|
+
def to_s #:nodoc:
|
487
|
+
@source
|
488
|
+
end
|
489
|
+
|
490
|
+
|
491
|
+
# Return the next element after this one. Skips sibling text nodes.
|
492
|
+
#
|
493
|
+
# With the +name+ argument, returns the next element with that name,
|
494
|
+
# skipping other sibling elements.
|
495
|
+
def next_element(element, name = nil)
|
496
|
+
if siblings = element.parent.children
|
497
|
+
found = false
|
498
|
+
siblings.each do |node|
|
499
|
+
if node.equal?(element)
|
500
|
+
found = true
|
501
|
+
elsif found && node.tag?
|
502
|
+
return node if (name.nil? || node.name == name)
|
503
|
+
end
|
504
|
+
end
|
505
|
+
end
|
506
|
+
nil
|
507
|
+
end
|
508
|
+
|
509
|
+
|
510
|
+
protected
|
511
|
+
|
512
|
+
|
513
|
+
# Creates a simple selector given the statement and array of
|
514
|
+
# substitution values.
|
515
|
+
#
|
516
|
+
# Returns a hash with the values +tag_name+, +attributes+,
|
517
|
+
# +pseudo+ (classes) and +negation+.
|
518
|
+
#
|
519
|
+
# Called the first time with +can_negate+ true to allow
|
520
|
+
# negation. Called a second time with false since negation
|
521
|
+
# cannot be negated.
|
522
|
+
def simple_selector(statement, values, can_negate = true)
|
523
|
+
tag_name = nil
|
524
|
+
attributes = []
|
525
|
+
pseudo = []
|
526
|
+
negation = []
|
527
|
+
|
528
|
+
# Element name. (Note that in negation, this can come at
|
529
|
+
# any order, but for simplicity we allow if only first).
|
530
|
+
statement.sub!(/^(\*|[[:alpha:]][\w\-]*)/) do |match|
|
531
|
+
match.strip!
|
532
|
+
tag_name = match.downcase unless match == "*"
|
533
|
+
@source << match
|
534
|
+
"" # Remove
|
535
|
+
end
|
536
|
+
|
537
|
+
# Get identifier, class, attribute name, pseudo or negation.
|
538
|
+
while true
|
539
|
+
# Element identifier.
|
540
|
+
next if statement.sub!(/^#(\?|[\w\-]+)/) do |match|
|
541
|
+
id = $1
|
542
|
+
if id == "?"
|
543
|
+
id = values.shift
|
544
|
+
end
|
545
|
+
@source << "##{id}"
|
546
|
+
id = Regexp.new("^#{Regexp.escape(id.to_s)}$") unless id.is_a?(Regexp)
|
547
|
+
attributes << ["id", id]
|
548
|
+
"" # Remove
|
549
|
+
end
|
550
|
+
|
551
|
+
# Class name.
|
552
|
+
next if statement.sub!(/^\.([\w\-]+)/) do |match|
|
553
|
+
class_name = $1
|
554
|
+
@source << ".#{class_name}"
|
555
|
+
class_name = Regexp.new("(^|\s)#{Regexp.escape(class_name)}($|\s)") unless class_name.is_a?(Regexp)
|
556
|
+
attributes << ["class", class_name]
|
557
|
+
"" # Remove
|
558
|
+
end
|
559
|
+
|
560
|
+
# Attribute value.
|
561
|
+
next if statement.sub!(/^\[\s*([[:alpha:]][\w\-:]*)\s*((?:[~|^$*])?=)?\s*('[^']*'|"[^*]"|[^\]]*)\s*\]/) do |match|
|
562
|
+
name, equality, value = $1, $2, $3
|
563
|
+
if value == "?"
|
564
|
+
value = values.shift
|
565
|
+
else
|
566
|
+
# Handle single and double quotes.
|
567
|
+
value.strip!
|
568
|
+
if (value[0] == ?" || value[0] == ?') && value[0] == value[-1]
|
569
|
+
value = value[1..-2]
|
570
|
+
end
|
571
|
+
end
|
572
|
+
@source << "[#{name}#{equality}'#{value}']"
|
573
|
+
attributes << [name.downcase.strip, attribute_match(equality, value)]
|
574
|
+
"" # Remove
|
575
|
+
end
|
576
|
+
|
577
|
+
# Root element only.
|
578
|
+
next if statement.sub!(/^:root/) do |match|
|
579
|
+
pseudo << lambda do |element|
|
580
|
+
element.parent.nil? || !element.parent.tag?
|
581
|
+
end
|
582
|
+
@source << ":root"
|
583
|
+
"" # Remove
|
584
|
+
end
|
585
|
+
|
586
|
+
# Nth-child including last and of-type.
|
587
|
+
next if statement.sub!(/^:nth-(last-)?(child|of-type)\((odd|even|(\d+|\?)|(-?\d*|\?)?n([+\-]\d+|\?)?)\)/) do |match|
|
588
|
+
reverse = $1 == "last-"
|
589
|
+
of_type = $2 == "of-type"
|
590
|
+
@source << ":nth-#{$1}#{$2}("
|
591
|
+
case $3
|
592
|
+
when "odd"
|
593
|
+
pseudo << nth_child(2, 1, of_type, reverse)
|
594
|
+
@source << "odd)"
|
595
|
+
when "even"
|
596
|
+
pseudo << nth_child(2, 2, of_type, reverse)
|
597
|
+
@source << "even)"
|
598
|
+
when /^(\d+|\?)$/ # b only
|
599
|
+
b = ($1 == "?" ? values.shift : $1).to_i
|
600
|
+
pseudo << nth_child(0, b, of_type, reverse)
|
601
|
+
@source << "#{b})"
|
602
|
+
when /^(-?\d*|\?)?n([+\-]\d+|\?)?$/
|
603
|
+
a = ($1 == "?" ? values.shift :
|
604
|
+
$1 == "" ? 1 : $1 == "-" ? -1 : $1).to_i
|
605
|
+
b = ($2 == "?" ? values.shift : $2).to_i
|
606
|
+
pseudo << nth_child(a, b, of_type, reverse)
|
607
|
+
@source << (b >= 0 ? "#{a}n+#{b})" : "#{a}n#{b})")
|
608
|
+
else
|
609
|
+
raise ArgumentError, "Invalid nth-child #{match}"
|
610
|
+
end
|
611
|
+
"" # Remove
|
612
|
+
end
|
613
|
+
# First/last child (of type).
|
614
|
+
next if statement.sub!(/^:(first|last)-(child|of-type)/) do |match|
|
615
|
+
reverse = $1 == "last"
|
616
|
+
of_type = $2 == "of-type"
|
617
|
+
pseudo << nth_child(0, 1, of_type, reverse)
|
618
|
+
@source << ":#{$1}-#{$2}"
|
619
|
+
"" # Remove
|
620
|
+
end
|
621
|
+
# Only child (of type).
|
622
|
+
next if statement.sub!(/^:only-(child|of-type)/) do |match|
|
623
|
+
of_type = $1 == "of-type"
|
624
|
+
pseudo << only_child(of_type)
|
625
|
+
@source << ":only-#{$1}"
|
626
|
+
"" # Remove
|
627
|
+
end
|
628
|
+
|
629
|
+
# Empty: no child elements or meaningful content (whitespaces
|
630
|
+
# are ignored).
|
631
|
+
next if statement.sub!(/^:empty/) do |match|
|
632
|
+
pseudo << lambda do |element|
|
633
|
+
empty = true
|
634
|
+
for child in element.children
|
635
|
+
if child.tag? || !child.content.strip.empty?
|
636
|
+
empty = false
|
637
|
+
break
|
638
|
+
end
|
639
|
+
end
|
640
|
+
empty
|
641
|
+
end
|
642
|
+
@source << ":empty"
|
643
|
+
"" # Remove
|
644
|
+
end
|
645
|
+
# Content: match the text content of the element, stripping
|
646
|
+
# leading and trailing spaces.
|
647
|
+
next if statement.sub!(/^:content\(\s*(\?|'[^']*'|"[^"]*"|[^)]*)\s*\)/) do |match|
|
648
|
+
content = $1
|
649
|
+
if content == "?"
|
650
|
+
content = values.shift
|
651
|
+
elsif (content[0] == ?" || content[0] == ?') && content[0] == content[-1]
|
652
|
+
content = content[1..-2]
|
653
|
+
end
|
654
|
+
@source << ":content('#{content}')"
|
655
|
+
content = Regexp.new("^#{Regexp.escape(content.to_s)}$") unless content.is_a?(Regexp)
|
656
|
+
pseudo << lambda do |element|
|
657
|
+
text = ""
|
658
|
+
for child in element.children
|
659
|
+
unless child.tag?
|
660
|
+
text << child.content
|
661
|
+
end
|
662
|
+
end
|
663
|
+
text.strip =~ content
|
664
|
+
end
|
665
|
+
"" # Remove
|
666
|
+
end
|
667
|
+
|
668
|
+
# Negation. Create another simple selector to handle it.
|
669
|
+
if statement.sub!(/^:not\(\s*/, "")
|
670
|
+
raise ArgumentError, "Double negatives are not missing feature" unless can_negate
|
671
|
+
@source << ":not("
|
672
|
+
negation << simple_selector(statement, values, false)
|
673
|
+
raise ArgumentError, "Negation not closed" unless statement.sub!(/^\s*\)/, "")
|
674
|
+
@source << ")"
|
675
|
+
next
|
676
|
+
end
|
677
|
+
|
678
|
+
# No match: moving on.
|
679
|
+
break
|
680
|
+
end
|
681
|
+
|
682
|
+
# Return hash. The keys are mapped to instance variables.
|
683
|
+
{:tag_name=>tag_name, :attributes=>attributes, :pseudo=>pseudo, :negation=>negation}
|
684
|
+
end
|
685
|
+
|
686
|
+
|
687
|
+
# Create a regular expression to match an attribute value based
|
688
|
+
# on the equality operator (=, ^=, |=, etc).
|
689
|
+
def attribute_match(equality, value)
|
690
|
+
regexp = value.is_a?(Regexp) ? value : Regexp.escape(value.to_s)
|
691
|
+
case equality
|
692
|
+
when "=" then
|
693
|
+
# Match the attribute value in full
|
694
|
+
Regexp.new("^#{regexp}$")
|
695
|
+
when "~=" then
|
696
|
+
# Match a space-separated word within the attribute value
|
697
|
+
Regexp.new("(^|\s)#{regexp}($|\s)")
|
698
|
+
when "^="
|
699
|
+
# Match the beginning of the attribute value
|
700
|
+
Regexp.new("^#{regexp}")
|
701
|
+
when "$="
|
702
|
+
# Match the end of the attribute value
|
703
|
+
Regexp.new("#{regexp}$")
|
704
|
+
when "*="
|
705
|
+
# Match substring of the attribute value
|
706
|
+
regexp.is_a?(Regexp) ? regexp : Regexp.new(regexp)
|
707
|
+
when "|=" then
|
708
|
+
# Match the first space-separated item of the attribute value
|
709
|
+
Regexp.new("^#{regexp}($|\s)")
|
710
|
+
else
|
711
|
+
raise InvalidSelectorError, "Invalid operation/value" unless value.empty?
|
712
|
+
# Match all attributes values (existence check)
|
713
|
+
//
|
714
|
+
end
|
715
|
+
end
|
716
|
+
|
717
|
+
|
718
|
+
# Returns a lambda that can match an element against the nth-child
|
719
|
+
# pseudo class, given the following arguments:
|
720
|
+
# * +a+ -- Value of a part.
|
721
|
+
# * +b+ -- Value of b part.
|
722
|
+
# * +of_type+ -- True to test only elements of this type (of-type).
|
723
|
+
# * +reverse+ -- True to count in reverse order (last-).
|
724
|
+
def nth_child(a, b, of_type, reverse)
|
725
|
+
# a = 0 means select at index b, if b = 0 nothing selected
|
726
|
+
return lambda { |element| false } if a == 0 && b == 0
|
727
|
+
# a < 0 and b < 0 will never match against an index
|
728
|
+
return lambda { |element| false } if a < 0 && b < 0
|
729
|
+
b = a + b + 1 if b < 0 # b < 0 just picks last element from each group
|
730
|
+
b -= 1 unless b == 0 # b == 0 is same as b == 1, otherwise zero based
|
731
|
+
lambda do |element|
|
732
|
+
# Element must be inside parent element.
|
733
|
+
return false unless element.parent && element.parent.tag?
|
734
|
+
index = 0
|
735
|
+
# Get siblings, reverse if counting from last.
|
736
|
+
siblings = element.parent.children
|
737
|
+
siblings = siblings.reverse if reverse
|
738
|
+
# Match element name if of-type, otherwise ignore name.
|
739
|
+
name = of_type ? element.name : nil
|
740
|
+
found = false
|
741
|
+
for child in siblings
|
742
|
+
# Skip text nodes/comments.
|
743
|
+
if child.tag? && (name == nil || child.name == name)
|
744
|
+
if a == 0
|
745
|
+
# Shortcut when a == 0 no need to go past count
|
746
|
+
if index == b
|
747
|
+
found = child.equal?(element)
|
748
|
+
break
|
749
|
+
end
|
750
|
+
elsif a < 0
|
751
|
+
# Only look for first b elements
|
752
|
+
break if index > b
|
753
|
+
if child.equal?(element)
|
754
|
+
found = (index % a) == 0
|
755
|
+
break
|
756
|
+
end
|
757
|
+
else
|
758
|
+
# Otherwise, break if child found and count == an+b
|
759
|
+
if child.equal?(element)
|
760
|
+
found = (index % a) == b
|
761
|
+
break
|
762
|
+
end
|
763
|
+
end
|
764
|
+
index += 1
|
765
|
+
end
|
766
|
+
end
|
767
|
+
found
|
768
|
+
end
|
769
|
+
end
|
770
|
+
|
771
|
+
|
772
|
+
# Creates a only child lambda. Pass +of-type+ to only look at
|
773
|
+
# elements of its type.
|
774
|
+
def only_child(of_type)
|
775
|
+
lambda do |element|
|
776
|
+
# Element must be inside parent element.
|
777
|
+
return false unless element.parent && element.parent.tag?
|
778
|
+
name = of_type ? element.name : nil
|
779
|
+
other = false
|
780
|
+
for child in element.parent.children
|
781
|
+
# Skip text nodes/comments.
|
782
|
+
if child.tag? && (name == nil || child.name == name)
|
783
|
+
unless child.equal?(element)
|
784
|
+
other = true
|
785
|
+
break
|
786
|
+
end
|
787
|
+
end
|
788
|
+
end
|
789
|
+
!other
|
790
|
+
end
|
791
|
+
end
|
792
|
+
|
793
|
+
|
794
|
+
# Called to create a dependent selector (sibling, descendant, etc).
|
795
|
+
# Passes the remainder of the statement that will be reduced to zero
|
796
|
+
# eventually, and array of substitution values.
|
797
|
+
#
|
798
|
+
# This method is called from four places, so it helps to put it here
|
799
|
+
# for reuse. The only logic deals with the need to detect comma
|
800
|
+
# separators (alternate) and apply them to the selector group of the
|
801
|
+
# top selector.
|
802
|
+
def next_selector(statement, values)
|
803
|
+
second = Selector.new(statement, values)
|
804
|
+
# If there are alternate selectors, we group them in the top selector.
|
805
|
+
if alternates = second.instance_variable_get(:@alternates)
|
806
|
+
second.instance_variable_set(:@alternates, [])
|
807
|
+
@alternates.concat alternates
|
808
|
+
end
|
809
|
+
second
|
810
|
+
end
|
811
|
+
|
812
|
+
end
|
813
|
+
|
814
|
+
|
815
|
+
# See HTML::Selector.new
|
816
|
+
def self.selector(statement, *values)
|
817
|
+
Selector.new(statement, *values)
|
818
|
+
end
|
819
|
+
|
820
|
+
|
821
|
+
class Tag
|
822
|
+
|
823
|
+
def select(selector, *values)
|
824
|
+
selector = HTML::Selector.new(selector, values)
|
825
|
+
selector.select(self)
|
826
|
+
end
|
827
|
+
|
828
|
+
end
|
829
|
+
|
830
|
+
end
|