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/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## Challah 0.5.2
|
2
|
+
|
3
|
+
* Created `SimpleCookieStore` and use it as the default storage method for Session. This varies from `CookieStore` only because the user agent and remote IP address are not used in the cookie.
|
4
|
+
|
1
5
|
## Challah 0.5.1
|
2
6
|
|
3
7
|
* Dependency updates for Shoulda 3.0 and Rails 3.2.2.
|
data/README.md
CHANGED
@@ -199,10 +199,6 @@ If you'd prefer to set up your own login/logout actions, you can skip the inclus
|
|
199
199
|
|
200
200
|
Documentation is available at: [http://rubydoc.info/gems/challah](http://rubydoc.info/gems/challah/frames)
|
201
201
|
|
202
|
-
## Contributing to Challah
|
203
|
-
|
204
|
-
Contributions and pull requests are welcome.
|
205
|
-
|
206
202
|
### Issues
|
207
203
|
|
208
204
|
If you have any issues or find bugs running Challah, please [report them on Github](https://github.com/jdtornow/challah/issues). While most functions should be stable, Challah is still in its infancy and certain issues may be present.
|
data/lib/challah/cookie_store.rb
CHANGED
@@ -1,124 +1,22 @@
|
|
1
1
|
module Challah
|
2
|
-
#
|
2
|
+
# Store session data in a cookie, but use the user's user_agent and ip address
|
3
|
+
# in the cookie verification, for additional security.
|
4
|
+
#
|
5
|
+
# This method will force the user to log in slightly more often, as user agents
|
6
|
+
# and IP addresses change.
|
3
7
|
#
|
4
8
|
# To use a different storage method for persisting a session, just create
|
5
9
|
# a new class that responds to +read+, +save+ and +destroy+
|
6
|
-
|
7
|
-
|
8
|
-
@session = session
|
9
|
-
end
|
10
|
-
|
11
|
-
def destroy
|
12
|
-
clear
|
13
|
-
end
|
14
|
-
|
10
|
+
#
|
11
|
+
class CookieStore < SimpleCookieStore
|
15
12
|
def inspect
|
16
13
|
"#<CookieStore:0x#{object_id.to_s(16)} valid=#{existing?}>"
|
17
14
|
end
|
18
15
|
|
19
|
-
|
20
|
-
existing? ? cookie_values : nil
|
21
|
-
end
|
22
|
-
|
23
|
-
def save(token, user_id)
|
24
|
-
@token = token
|
25
|
-
@user_id = user_id
|
26
|
-
|
27
|
-
write_cookies!
|
28
|
-
end
|
29
|
-
|
30
|
-
private
|
31
|
-
def clear
|
32
|
-
cookies.delete(session_cookie_name, :domain => domain)
|
33
|
-
cookies.delete(validation_cookie_name, :domain => domain)
|
34
|
-
end
|
35
|
-
|
36
|
-
def cookie_values
|
37
|
-
session_cookie && session_cookie.to_s.split(joiner)
|
38
|
-
end
|
39
|
-
|
40
|
-
def cookies
|
41
|
-
request.cookie_jar
|
42
|
-
end
|
43
|
-
|
44
|
-
def domain
|
45
|
-
request.session_options[:domain]
|
46
|
-
end
|
47
|
-
|
48
|
-
# Do the cookies exist, and are they valid?
|
49
|
-
def existing?
|
50
|
-
exists = false
|
51
|
-
|
52
|
-
if session_cookie and validation_cookie
|
53
|
-
session_tmp = session_cookie.to_s
|
54
|
-
validation_tmp = validation_cookie.to_s
|
55
|
-
|
56
|
-
if validation_tmp == validation_cookie_value(session_tmp)
|
57
|
-
exists = true
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
exists
|
62
|
-
end
|
63
|
-
|
64
|
-
def expiration
|
65
|
-
@expiration ||= 1.month.from_now
|
66
|
-
end
|
67
|
-
|
68
|
-
def joiner
|
69
|
-
'@'
|
70
|
-
end
|
71
|
-
|
72
|
-
def prefix
|
73
|
-
@prefix ||= Challah.options[:cookie_prefix]
|
74
|
-
end
|
75
|
-
|
76
|
-
def request
|
77
|
-
raise "No Request Provided" unless @session and @session.request
|
78
|
-
@session.request
|
79
|
-
end
|
80
|
-
|
81
|
-
def session_cookie
|
82
|
-
cookies[session_cookie_name]
|
83
|
-
end
|
84
|
-
|
85
|
-
def session_cookie_name
|
86
|
-
"#{prefix}-s"
|
87
|
-
end
|
88
|
-
|
89
|
-
def session_cookie_value
|
90
|
-
"#@token#{joiner}#@user_id"
|
91
|
-
end
|
92
|
-
|
93
|
-
def validation_cookie
|
94
|
-
cookies[validation_cookie_name]
|
95
|
-
end
|
96
|
-
|
97
|
-
def validation_cookie_name
|
98
|
-
"#{prefix}-v"
|
99
|
-
end
|
100
|
-
|
16
|
+
protected
|
101
17
|
def validation_cookie_value(value = nil)
|
102
18
|
value = session_cookie_value unless value
|
103
19
|
Encrypter.md5(value, request.user_agent, request.remote_ip)
|
104
20
|
end
|
105
|
-
|
106
|
-
def write_cookies!
|
107
|
-
cookies[session_cookie_name] = {
|
108
|
-
:value => session_cookie_value,
|
109
|
-
:expires => expiration,
|
110
|
-
:secure => false,
|
111
|
-
:httponly => true,
|
112
|
-
:domain => domain
|
113
|
-
}
|
114
|
-
|
115
|
-
cookies[validation_cookie_name] = {
|
116
|
-
:value => validation_cookie_value,
|
117
|
-
:expires => expiration,
|
118
|
-
:secure => false,
|
119
|
-
:httponly => true,
|
120
|
-
:domain => domain
|
121
|
-
}
|
122
|
-
end
|
123
21
|
end
|
124
22
|
end
|
@@ -0,0 +1,124 @@
|
|
1
|
+
module Challah
|
2
|
+
# A base class for storing session data in a browser cookie.
|
3
|
+
#
|
4
|
+
# To use a different storage method for persisting a session, just create
|
5
|
+
# a new class that responds to +read+, +save+ and +destroy+
|
6
|
+
class SimpleCookieStore
|
7
|
+
def initialize(session)
|
8
|
+
@session = session
|
9
|
+
end
|
10
|
+
|
11
|
+
def destroy
|
12
|
+
clear
|
13
|
+
end
|
14
|
+
|
15
|
+
def inspect
|
16
|
+
"#<SimpleCookieStore:0x#{object_id.to_s(16)} valid=#{existing?}>"
|
17
|
+
end
|
18
|
+
|
19
|
+
def read
|
20
|
+
existing? ? cookie_values : nil
|
21
|
+
end
|
22
|
+
|
23
|
+
def save(token, user_id)
|
24
|
+
@token = token
|
25
|
+
@user_id = user_id
|
26
|
+
|
27
|
+
write_cookies!
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
def clear
|
32
|
+
cookies.delete(session_cookie_name, :domain => domain)
|
33
|
+
cookies.delete(validation_cookie_name, :domain => domain)
|
34
|
+
end
|
35
|
+
|
36
|
+
def cookie_values
|
37
|
+
session_cookie && session_cookie.to_s.split(joiner)
|
38
|
+
end
|
39
|
+
|
40
|
+
def cookies
|
41
|
+
request.cookie_jar
|
42
|
+
end
|
43
|
+
|
44
|
+
def domain
|
45
|
+
request.session_options[:domain]
|
46
|
+
end
|
47
|
+
|
48
|
+
# Do the cookies exist, and are they valid?
|
49
|
+
def existing?
|
50
|
+
exists = false
|
51
|
+
|
52
|
+
if session_cookie and validation_cookie
|
53
|
+
session_tmp = session_cookie.to_s
|
54
|
+
validation_tmp = validation_cookie.to_s
|
55
|
+
|
56
|
+
if validation_tmp == validation_cookie_value(session_tmp)
|
57
|
+
exists = true
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
exists
|
62
|
+
end
|
63
|
+
|
64
|
+
def expiration
|
65
|
+
@expiration ||= 1.month.from_now
|
66
|
+
end
|
67
|
+
|
68
|
+
def joiner
|
69
|
+
'@'
|
70
|
+
end
|
71
|
+
|
72
|
+
def prefix
|
73
|
+
@prefix ||= Challah.options[:cookie_prefix]
|
74
|
+
end
|
75
|
+
|
76
|
+
def request
|
77
|
+
raise "No Request Provided" unless @session and @session.request
|
78
|
+
@session.request
|
79
|
+
end
|
80
|
+
|
81
|
+
def session_cookie
|
82
|
+
cookies[session_cookie_name]
|
83
|
+
end
|
84
|
+
|
85
|
+
def session_cookie_name
|
86
|
+
"#{prefix}-s"
|
87
|
+
end
|
88
|
+
|
89
|
+
def session_cookie_value
|
90
|
+
"#@token#{joiner}#@user_id"
|
91
|
+
end
|
92
|
+
|
93
|
+
def validation_cookie
|
94
|
+
cookies[validation_cookie_name]
|
95
|
+
end
|
96
|
+
|
97
|
+
def validation_cookie_name
|
98
|
+
"#{prefix}-v"
|
99
|
+
end
|
100
|
+
|
101
|
+
def validation_cookie_value(value = nil)
|
102
|
+
value = session_cookie_value unless value
|
103
|
+
Encrypter.md5(value)
|
104
|
+
end
|
105
|
+
|
106
|
+
def write_cookies!
|
107
|
+
cookies[session_cookie_name] = {
|
108
|
+
:value => session_cookie_value,
|
109
|
+
:expires => expiration,
|
110
|
+
:secure => false,
|
111
|
+
:httponly => true,
|
112
|
+
:domain => domain
|
113
|
+
}
|
114
|
+
|
115
|
+
cookies[validation_cookie_name] = {
|
116
|
+
:value => validation_cookie_value,
|
117
|
+
:expires => expiration,
|
118
|
+
:secure => false,
|
119
|
+
:httponly => true,
|
120
|
+
:domain => domain
|
121
|
+
}
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
data/lib/challah/version.rb
CHANGED
data/lib/challah.rb
CHANGED
@@ -4,8 +4,11 @@ require 'challah/authable/permission_role'
|
|
4
4
|
require 'challah/authable/permission_user'
|
5
5
|
require 'challah/authable/role'
|
6
6
|
require 'challah/authable/user'
|
7
|
-
|
7
|
+
|
8
|
+
require 'challah/simple_cookie_store'
|
8
9
|
require 'challah/cookie_store'
|
10
|
+
|
11
|
+
require 'challah/controller'
|
9
12
|
require 'challah/encrypter'
|
10
13
|
require 'challah/random'
|
11
14
|
require 'challah/session'
|
@@ -29,7 +32,7 @@ module Challah
|
|
29
32
|
extend AuthablePermissionRole
|
30
33
|
extend AuthablePermissionUser
|
31
34
|
extend AuthableRole
|
32
|
-
extend AuthableUser
|
35
|
+
extend AuthableUser
|
33
36
|
end
|
34
37
|
end
|
35
38
|
|
@@ -37,12 +40,11 @@ module Challah
|
|
37
40
|
# @private
|
38
41
|
class ::ActionController::Base
|
39
42
|
include Controller
|
40
|
-
|
41
43
|
helper_method :logged_in?, :current_user, :current_user_session, :current_user?, :has
|
42
44
|
end
|
43
45
|
end
|
44
46
|
|
45
|
-
# Configuration options
|
47
|
+
# Configuration options
|
46
48
|
class << self
|
47
49
|
# Get or set options for the current Challah instance. In most cases these should be
|
48
50
|
# changed within a config/initializers/ file in your app.
|
@@ -50,13 +52,13 @@ module Challah
|
|
50
52
|
# @param [Hash] options The options to get or set
|
51
53
|
# @option options [String] :cookie_prefix ('challah') A prefix to put in the names of the cookies that will be set.
|
52
54
|
# @option options [String] :access_denied_view ('challah/sessions/access_denied')Relative path to the view that will be used to show access denied method.
|
53
|
-
# @option options [Class] :storage_class (
|
55
|
+
# @option options [Class] :storage_class (SimpleCookieStore) The class to use for persistence of sessions.
|
54
56
|
def options
|
55
57
|
@options ||= {
|
56
58
|
:api_key_enabled => false,
|
57
59
|
:cookie_prefix => 'challah',
|
58
60
|
:access_denied_view => 'sessions/access_denied',
|
59
|
-
:storage_class =>
|
61
|
+
:storage_class => SimpleCookieStore,
|
60
62
|
:skip_routes => false
|
61
63
|
}
|
62
64
|
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
class SimpleCookieStoreTest < ActiveSupport::TestCase
|
4
|
+
include Challah
|
5
|
+
|
6
|
+
context "The SimpleCookieStore class" do
|
7
|
+
setup do
|
8
|
+
@user = Factory(:user)
|
9
|
+
@request = MockRequest.new
|
10
|
+
end
|
11
|
+
|
12
|
+
should "save session in a request cookie store" do
|
13
|
+
assert_equal [], @request.cookies.keys
|
14
|
+
|
15
|
+
session = Session.new(@request)
|
16
|
+
session.store = SimpleCookieStore.new(session)
|
17
|
+
session.persist = true
|
18
|
+
session.user = @user
|
19
|
+
session.save
|
20
|
+
|
21
|
+
assert_equal %w( challah-s challah-v ), @request.cookies.keys.sort
|
22
|
+
assert_equal "#{@user.persistence_token}@#{@user.id}", @request.cookies['challah-s'][:value]
|
23
|
+
assert_equal "test.dev", @request.cookies['challah-s'][:domain]
|
24
|
+
|
25
|
+
assert_equal Encrypter.md5("#{@user.persistence_token}@#{@user.id}"), @request.cookies['challah-v'][:value]
|
26
|
+
assert_equal "test.dev", @request.cookies['challah-v'][:domain]
|
27
|
+
end
|
28
|
+
|
29
|
+
should "be able to inspect the store" do
|
30
|
+
session = Session.new(@request)
|
31
|
+
session.store = SimpleCookieStore.new(session)
|
32
|
+
session.persist = true
|
33
|
+
session.user = @user
|
34
|
+
session.save
|
35
|
+
|
36
|
+
assert session.store.inspect =~ /<SimpleCookieStore:(.*?)>/, 'Does not match'
|
37
|
+
end
|
38
|
+
|
39
|
+
should "read cookies and detect tampered verification cookies" do
|
40
|
+
assert_equal [], @request.cookies.keys
|
41
|
+
|
42
|
+
session = Session.new(@request)
|
43
|
+
session.store = SimpleCookieStore.new(session)
|
44
|
+
session.persist = true
|
45
|
+
session.user = @user
|
46
|
+
session.save
|
47
|
+
|
48
|
+
validation_cookie_val = Encrypter.md5("#{@user.persistence_token}@#{@user.id}")
|
49
|
+
session_cookie_val = "#{@user.persistence_token}@#{@user.id}"
|
50
|
+
|
51
|
+
assert_equal session_cookie_val, @request.cookies['challah-s'][:value]
|
52
|
+
assert_equal session_cookie_val, session.store.send(:session_cookie)[:value]
|
53
|
+
assert_equal validation_cookie_val, @request.cookies['challah-v'][:value]
|
54
|
+
assert_equal validation_cookie_val, session.store.send(:validation_cookie)[:value]
|
55
|
+
|
56
|
+
session.store.stubs(:validation_cookie).returns(validation_cookie_val)
|
57
|
+
session.store.stubs(:session_cookie).returns(session_cookie_val)
|
58
|
+
|
59
|
+
session2 = Session.new(@request)
|
60
|
+
session2.persist = true
|
61
|
+
session2.store = session.store
|
62
|
+
session2.read
|
63
|
+
|
64
|
+
assert_equal true, session2.store.send(:existing?)
|
65
|
+
assert_equal true, session2.valid?
|
66
|
+
assert_equal @user.id, session2.user_id
|
67
|
+
|
68
|
+
session.store.stubs(:validation_cookie).returns('bad-value')
|
69
|
+
|
70
|
+
session3 = Session.new(@request)
|
71
|
+
session3.store = session.store
|
72
|
+
session3.read
|
73
|
+
|
74
|
+
assert_equal false, session3.store.send(:existing?)
|
75
|
+
assert_equal false, session3.valid?
|
76
|
+
end
|
77
|
+
|
78
|
+
should "delete sessions from cookies" do
|
79
|
+
session = Session.new(@request)
|
80
|
+
session.store = SimpleCookieStore.new(session)
|
81
|
+
session.user = @user
|
82
|
+
session.persist = true
|
83
|
+
|
84
|
+
session.save
|
85
|
+
|
86
|
+
assert_equal true, session.valid?
|
87
|
+
assert_equal @user, session.user
|
88
|
+
assert_equal %w( challah-s challah-v ), @request.cookies.keys.sort
|
89
|
+
|
90
|
+
session.destroy
|
91
|
+
|
92
|
+
assert_equal false, session.valid?
|
93
|
+
assert_equal nil, session.user
|
94
|
+
assert_equal [], @request.cookies.keys.sort
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|