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
@@ -0,0 +1,765 @@
|
|
1
|
+
require "active_support/core_ext/module/delegation"
|
2
|
+
require "active_support/core_ext/class/attribute_accessors"
|
3
|
+
require "active_support/core_ext/array/wrap"
|
4
|
+
require 'active_support/deprecation'
|
5
|
+
|
6
|
+
module ActiveRecord
|
7
|
+
# Exception that can be raised to stop migrations from going backwards.
|
8
|
+
class IrreversibleMigration < ActiveRecordError
|
9
|
+
end
|
10
|
+
|
11
|
+
class DuplicateMigrationVersionError < ActiveRecordError#:nodoc:
|
12
|
+
def initialize(version)
|
13
|
+
super("Multiple migrations have the version number #{version}")
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
class DuplicateMigrationNameError < ActiveRecordError#:nodoc:
|
18
|
+
def initialize(name)
|
19
|
+
super("Multiple migrations have the name #{name}")
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
class UnknownMigrationVersionError < ActiveRecordError #:nodoc:
|
24
|
+
def initialize(version)
|
25
|
+
super("No migration with version number #{version}")
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class IllegalMigrationNameError < ActiveRecordError#:nodoc:
|
30
|
+
def initialize(name)
|
31
|
+
super("Illegal name for migration file: #{name}\n\t(only lower case letters, numbers, and '_' allowed)")
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# = Active Record Migrations
|
36
|
+
#
|
37
|
+
# Migrations can manage the evolution of a schema used by several physical
|
38
|
+
# databases. It's a solution to the common problem of adding a field to make
|
39
|
+
# a new feature work in your local database, but being unsure of how to
|
40
|
+
# push that change to other developers and to the production server. With
|
41
|
+
# migrations, you can describe the transformations in self-contained classes
|
42
|
+
# that can be checked into version control systems and executed against
|
43
|
+
# another database that might be one, two, or five versions behind.
|
44
|
+
#
|
45
|
+
# Example of a simple migration:
|
46
|
+
#
|
47
|
+
# class AddSsl < ActiveRecord::Migration
|
48
|
+
# def up
|
49
|
+
# add_column :accounts, :ssl_enabled, :boolean, :default => 1
|
50
|
+
# end
|
51
|
+
#
|
52
|
+
# def down
|
53
|
+
# remove_column :accounts, :ssl_enabled
|
54
|
+
# end
|
55
|
+
# end
|
56
|
+
#
|
57
|
+
# This migration will add a boolean flag to the accounts table and remove it
|
58
|
+
# if you're backing out of the migration. It shows how all migrations have
|
59
|
+
# two methods +up+ and +down+ that describes the transformations
|
60
|
+
# required to implement or remove the migration. These methods can consist
|
61
|
+
# of both the migration specific methods like add_column and remove_column,
|
62
|
+
# but may also contain regular Ruby code for generating data needed for the
|
63
|
+
# transformations.
|
64
|
+
#
|
65
|
+
# Example of a more complex migration that also needs to initialize data:
|
66
|
+
#
|
67
|
+
# class AddSystemSettings < ActiveRecord::Migration
|
68
|
+
# def up
|
69
|
+
# create_table :system_settings do |t|
|
70
|
+
# t.string :name
|
71
|
+
# t.string :label
|
72
|
+
# t.text :value
|
73
|
+
# t.string :type
|
74
|
+
# t.integer :position
|
75
|
+
# end
|
76
|
+
#
|
77
|
+
# SystemSetting.create :name => "notice",
|
78
|
+
# :label => "Use notice?",
|
79
|
+
# :value => 1
|
80
|
+
# end
|
81
|
+
#
|
82
|
+
# def down
|
83
|
+
# drop_table :system_settings
|
84
|
+
# end
|
85
|
+
# end
|
86
|
+
#
|
87
|
+
# This migration first adds the system_settings table, then creates the very
|
88
|
+
# first row in it using the Active Record model that relies on the table. It
|
89
|
+
# also uses the more advanced create_table syntax where you can specify a
|
90
|
+
# complete table schema in one block call.
|
91
|
+
#
|
92
|
+
# == Available transformations
|
93
|
+
#
|
94
|
+
# * <tt>create_table(name, options)</tt> Creates a table called +name+ and
|
95
|
+
# makes the table object available to a block that can then add columns to it,
|
96
|
+
# following the same format as add_column. See example above. The options hash
|
97
|
+
# is for fragments like "DEFAULT CHARSET=UTF-8" that are appended to the create
|
98
|
+
# table definition.
|
99
|
+
# * <tt>drop_table(name)</tt>: Drops the table called +name+.
|
100
|
+
# * <tt>rename_table(old_name, new_name)</tt>: Renames the table called +old_name+
|
101
|
+
# to +new_name+.
|
102
|
+
# * <tt>add_column(table_name, column_name, type, options)</tt>: Adds a new column
|
103
|
+
# to the table called +table_name+
|
104
|
+
# named +column_name+ specified to be one of the following types:
|
105
|
+
# <tt>:string</tt>, <tt>:text</tt>, <tt>:integer</tt>, <tt>:float</tt>,
|
106
|
+
# <tt>:decimal</tt>, <tt>:datetime</tt>, <tt>:timestamp</tt>, <tt>:time</tt>,
|
107
|
+
# <tt>:date</tt>, <tt>:binary</tt>, <tt>:boolean</tt>. A default value can be
|
108
|
+
# specified by passing an +options+ hash like <tt>{ :default => 11 }</tt>.
|
109
|
+
# Other options include <tt>:limit</tt> and <tt>:null</tt> (e.g.
|
110
|
+
# <tt>{ :limit => 50, :null => false }</tt>) -- see
|
111
|
+
# ActiveRecord::ConnectionAdapters::TableDefinition#column for details.
|
112
|
+
# * <tt>rename_column(table_name, column_name, new_column_name)</tt>: Renames
|
113
|
+
# a column but keeps the type and content.
|
114
|
+
# * <tt>change_column(table_name, column_name, type, options)</tt>: Changes
|
115
|
+
# the column to a different type using the same parameters as add_column.
|
116
|
+
# * <tt>remove_column(table_name, column_names)</tt>: Removes the column listed in
|
117
|
+
# +column_names+ from the table called +table_name+.
|
118
|
+
# * <tt>add_index(table_name, column_names, options)</tt>: Adds a new index
|
119
|
+
# with the name of the column. Other options include
|
120
|
+
# <tt>:name</tt>, <tt>:unique</tt> (e.g.
|
121
|
+
# <tt>{ :name => "users_name_index", :unique => true }</tt>) and <tt>:order</tt>
|
122
|
+
# (e.g. { :order => {:name => :desc} }</tt>).
|
123
|
+
# * <tt>remove_index(table_name, :column => column_name)</tt>: Removes the index
|
124
|
+
# specified by +column_name+.
|
125
|
+
# * <tt>remove_index(table_name, :name => index_name)</tt>: Removes the index
|
126
|
+
# specified by +index_name+.
|
127
|
+
#
|
128
|
+
# == Irreversible transformations
|
129
|
+
#
|
130
|
+
# Some transformations are destructive in a manner that cannot be reversed.
|
131
|
+
# Migrations of that kind should raise an <tt>ActiveRecord::IrreversibleMigration</tt>
|
132
|
+
# exception in their +down+ method.
|
133
|
+
#
|
134
|
+
# == Running migrations from within Rails
|
135
|
+
#
|
136
|
+
# The Rails package has several tools to help create and apply migrations.
|
137
|
+
#
|
138
|
+
# To generate a new migration, you can use
|
139
|
+
# rails generate migration MyNewMigration
|
140
|
+
#
|
141
|
+
# where MyNewMigration is the name of your migration. The generator will
|
142
|
+
# create an empty migration file <tt>timestamp_my_new_migration.rb</tt>
|
143
|
+
# in the <tt>db/migrate/</tt> directory where <tt>timestamp</tt> is the
|
144
|
+
# UTC formatted date and time that the migration was generated.
|
145
|
+
#
|
146
|
+
# You may then edit the <tt>up</tt> and <tt>down</tt> methods of
|
147
|
+
# MyNewMigration.
|
148
|
+
#
|
149
|
+
# There is a special syntactic shortcut to generate migrations that add fields to a table.
|
150
|
+
#
|
151
|
+
# rails generate migration add_fieldname_to_tablename fieldname:string
|
152
|
+
#
|
153
|
+
# This will generate the file <tt>timestamp_add_fieldname_to_tablename</tt>, which will look like this:
|
154
|
+
# class AddFieldnameToTablename < ActiveRecord::Migration
|
155
|
+
# def up
|
156
|
+
# add_column :tablenames, :fieldname, :string
|
157
|
+
# end
|
158
|
+
#
|
159
|
+
# def down
|
160
|
+
# remove_column :tablenames, :fieldname
|
161
|
+
# end
|
162
|
+
# end
|
163
|
+
#
|
164
|
+
# To run migrations against the currently configured database, use
|
165
|
+
# <tt>rake db:migrate</tt>. This will update the database by running all of the
|
166
|
+
# pending migrations, creating the <tt>schema_migrations</tt> table
|
167
|
+
# (see "About the schema_migrations table" section below) if missing. It will also
|
168
|
+
# invoke the db:schema:dump task, which will update your db/schema.rb file
|
169
|
+
# to match the structure of your database.
|
170
|
+
#
|
171
|
+
# To roll the database back to a previous migration version, use
|
172
|
+
# <tt>rake db:migrate VERSION=X</tt> where <tt>X</tt> is the version to which
|
173
|
+
# you wish to downgrade. If any of the migrations throw an
|
174
|
+
# <tt>ActiveRecord::IrreversibleMigration</tt> exception, that step will fail and you'll
|
175
|
+
# have some manual work to do.
|
176
|
+
#
|
177
|
+
# == Database support
|
178
|
+
#
|
179
|
+
# Migrations are currently supported in MySQL, PostgreSQL, SQLite,
|
180
|
+
# SQL Server, Sybase, and Oracle (all supported databases except DB2).
|
181
|
+
#
|
182
|
+
# == More examples
|
183
|
+
#
|
184
|
+
# Not all migrations change the schema. Some just fix the data:
|
185
|
+
#
|
186
|
+
# class RemoveEmptyTags < ActiveRecord::Migration
|
187
|
+
# def up
|
188
|
+
# Tag.all.each { |tag| tag.destroy if tag.pages.empty? }
|
189
|
+
# end
|
190
|
+
#
|
191
|
+
# def down
|
192
|
+
# # not much we can do to restore deleted data
|
193
|
+
# raise ActiveRecord::IrreversibleMigration, "Can't recover the deleted tags"
|
194
|
+
# end
|
195
|
+
# end
|
196
|
+
#
|
197
|
+
# Others remove columns when they migrate up instead of down:
|
198
|
+
#
|
199
|
+
# class RemoveUnnecessaryItemAttributes < ActiveRecord::Migration
|
200
|
+
# def up
|
201
|
+
# remove_column :items, :incomplete_items_count
|
202
|
+
# remove_column :items, :completed_items_count
|
203
|
+
# end
|
204
|
+
#
|
205
|
+
# def down
|
206
|
+
# add_column :items, :incomplete_items_count
|
207
|
+
# add_column :items, :completed_items_count
|
208
|
+
# end
|
209
|
+
# end
|
210
|
+
#
|
211
|
+
# And sometimes you need to do something in SQL not abstracted directly by migrations:
|
212
|
+
#
|
213
|
+
# class MakeJoinUnique < ActiveRecord::Migration
|
214
|
+
# def up
|
215
|
+
# execute "ALTER TABLE `pages_linked_pages` ADD UNIQUE `page_id_linked_page_id` (`page_id`,`linked_page_id`)"
|
216
|
+
# end
|
217
|
+
#
|
218
|
+
# def down
|
219
|
+
# execute "ALTER TABLE `pages_linked_pages` DROP INDEX `page_id_linked_page_id`"
|
220
|
+
# end
|
221
|
+
# end
|
222
|
+
#
|
223
|
+
# == Using a model after changing its table
|
224
|
+
#
|
225
|
+
# Sometimes you'll want to add a column in a migration and populate it
|
226
|
+
# immediately after. In that case, you'll need to make a call to
|
227
|
+
# <tt>Base#reset_column_information</tt> in order to ensure that the model has the
|
228
|
+
# latest column data from after the new column was added. Example:
|
229
|
+
#
|
230
|
+
# class AddPeopleSalary < ActiveRecord::Migration
|
231
|
+
# def up
|
232
|
+
# add_column :people, :salary, :integer
|
233
|
+
# Person.reset_column_information
|
234
|
+
# Person.all.each do |p|
|
235
|
+
# p.update_attribute :salary, SalaryCalculator.compute(p)
|
236
|
+
# end
|
237
|
+
# end
|
238
|
+
# end
|
239
|
+
#
|
240
|
+
# == Controlling verbosity
|
241
|
+
#
|
242
|
+
# By default, migrations will describe the actions they are taking, writing
|
243
|
+
# them to the console as they happen, along with benchmarks describing how
|
244
|
+
# long each step took.
|
245
|
+
#
|
246
|
+
# You can quiet them down by setting ActiveRecord::Migration.verbose = false.
|
247
|
+
#
|
248
|
+
# You can also insert your own messages and benchmarks by using the +say_with_time+
|
249
|
+
# method:
|
250
|
+
#
|
251
|
+
# def up
|
252
|
+
# ...
|
253
|
+
# say_with_time "Updating salaries..." do
|
254
|
+
# Person.all.each do |p|
|
255
|
+
# p.update_attribute :salary, SalaryCalculator.compute(p)
|
256
|
+
# end
|
257
|
+
# end
|
258
|
+
# ...
|
259
|
+
# end
|
260
|
+
#
|
261
|
+
# The phrase "Updating salaries..." would then be printed, along with the
|
262
|
+
# benchmark for the block when the block completes.
|
263
|
+
#
|
264
|
+
# == About the schema_migrations table
|
265
|
+
#
|
266
|
+
# Rails versions 2.0 and prior used to create a table called
|
267
|
+
# <tt>schema_info</tt> when using migrations. This table contained the
|
268
|
+
# version of the schema as of the last applied migration.
|
269
|
+
#
|
270
|
+
# Starting with Rails 2.1, the <tt>schema_info</tt> table is
|
271
|
+
# (automatically) replaced by the <tt>schema_migrations</tt> table, which
|
272
|
+
# contains the version numbers of all the migrations applied.
|
273
|
+
#
|
274
|
+
# As a result, it is now possible to add migration files that are numbered
|
275
|
+
# lower than the current schema version: when migrating up, those
|
276
|
+
# never-applied "interleaved" migrations will be automatically applied, and
|
277
|
+
# when migrating down, never-applied "interleaved" migrations will be skipped.
|
278
|
+
#
|
279
|
+
# == Timestamped Migrations
|
280
|
+
#
|
281
|
+
# By default, Rails generates migrations that look like:
|
282
|
+
#
|
283
|
+
# 20080717013526_your_migration_name.rb
|
284
|
+
#
|
285
|
+
# The prefix is a generation timestamp (in UTC).
|
286
|
+
#
|
287
|
+
# If you'd prefer to use numeric prefixes, you can turn timestamped migrations
|
288
|
+
# off by setting:
|
289
|
+
#
|
290
|
+
# config.active_record.timestamped_migrations = false
|
291
|
+
#
|
292
|
+
# In application.rb.
|
293
|
+
#
|
294
|
+
# == Reversible Migrations
|
295
|
+
#
|
296
|
+
# Starting with Rails 3.1, you will be able to define reversible migrations.
|
297
|
+
# Reversible migrations are migrations that know how to go +down+ for you.
|
298
|
+
# You simply supply the +up+ logic, and the Migration system will figure out
|
299
|
+
# how to execute the down commands for you.
|
300
|
+
#
|
301
|
+
# To define a reversible migration, define the +change+ method in your
|
302
|
+
# migration like this:
|
303
|
+
#
|
304
|
+
# class TenderloveMigration < ActiveRecord::Migration
|
305
|
+
# def change
|
306
|
+
# create_table(:horses) do |t|
|
307
|
+
# t.column :content, :text
|
308
|
+
# t.column :remind_at, :datetime
|
309
|
+
# end
|
310
|
+
# end
|
311
|
+
# end
|
312
|
+
#
|
313
|
+
# This migration will create the horses table for you on the way up, and
|
314
|
+
# automatically figure out how to drop the table on the way down.
|
315
|
+
#
|
316
|
+
# Some commands like +remove_column+ cannot be reversed. If you care to
|
317
|
+
# define how to move up and down in these cases, you should define the +up+
|
318
|
+
# and +down+ methods as before.
|
319
|
+
#
|
320
|
+
# If a command cannot be reversed, an
|
321
|
+
# <tt>ActiveRecord::IrreversibleMigration</tt> exception will be raised when
|
322
|
+
# the migration is moving down.
|
323
|
+
#
|
324
|
+
# For a list of commands that are reversible, please see
|
325
|
+
# <tt>ActiveRecord::Migration::CommandRecorder</tt>.
|
326
|
+
class Migration
|
327
|
+
autoload :CommandRecorder, 'active_record/migration/command_recorder'
|
328
|
+
|
329
|
+
class << self
|
330
|
+
attr_accessor :delegate # :nodoc:
|
331
|
+
end
|
332
|
+
|
333
|
+
def self.method_missing(name, *args, &block) # :nodoc:
|
334
|
+
(delegate || superclass.delegate).send(name, *args, &block)
|
335
|
+
end
|
336
|
+
|
337
|
+
def self.migrate(direction)
|
338
|
+
new.migrate direction
|
339
|
+
end
|
340
|
+
|
341
|
+
cattr_accessor :verbose
|
342
|
+
|
343
|
+
attr_accessor :name, :version
|
344
|
+
|
345
|
+
def initialize
|
346
|
+
@name = self.class.name
|
347
|
+
@version = nil
|
348
|
+
@connection = nil
|
349
|
+
end
|
350
|
+
|
351
|
+
# instantiate the delegate object after initialize is defined
|
352
|
+
self.verbose = true
|
353
|
+
self.delegate = new
|
354
|
+
|
355
|
+
def up
|
356
|
+
self.class.delegate = self
|
357
|
+
return unless self.class.respond_to?(:up)
|
358
|
+
self.class.up
|
359
|
+
end
|
360
|
+
|
361
|
+
def down
|
362
|
+
self.class.delegate = self
|
363
|
+
return unless self.class.respond_to?(:down)
|
364
|
+
self.class.down
|
365
|
+
end
|
366
|
+
|
367
|
+
# Execute this migration in the named direction
|
368
|
+
def migrate(direction)
|
369
|
+
return unless respond_to?(direction)
|
370
|
+
|
371
|
+
case direction
|
372
|
+
when :up then announce "migrating"
|
373
|
+
when :down then announce "reverting"
|
374
|
+
end
|
375
|
+
|
376
|
+
time = nil
|
377
|
+
ActiveRecord::Base.connection_pool.with_connection do |conn|
|
378
|
+
@connection = conn
|
379
|
+
if respond_to?(:change)
|
380
|
+
if direction == :down
|
381
|
+
recorder = CommandRecorder.new(@connection)
|
382
|
+
suppress_messages do
|
383
|
+
@connection = recorder
|
384
|
+
change
|
385
|
+
end
|
386
|
+
@connection = conn
|
387
|
+
time = Benchmark.measure {
|
388
|
+
recorder.inverse.each do |cmd, args|
|
389
|
+
send(cmd, *args)
|
390
|
+
end
|
391
|
+
}
|
392
|
+
else
|
393
|
+
time = Benchmark.measure { change }
|
394
|
+
end
|
395
|
+
else
|
396
|
+
time = Benchmark.measure { send(direction) }
|
397
|
+
end
|
398
|
+
@connection = nil
|
399
|
+
end
|
400
|
+
|
401
|
+
case direction
|
402
|
+
when :up then announce "migrated (%.4fs)" % time.real; write
|
403
|
+
when :down then announce "reverted (%.4fs)" % time.real; write
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
def write(text="")
|
408
|
+
puts(text) if verbose
|
409
|
+
end
|
410
|
+
|
411
|
+
def announce(message)
|
412
|
+
text = "#{version} #{name}: #{message}"
|
413
|
+
length = [0, 75 - text.length].max
|
414
|
+
write "== %s %s" % [text, "=" * length]
|
415
|
+
end
|
416
|
+
|
417
|
+
def say(message, subitem=false)
|
418
|
+
write "#{subitem ? " ->" : "--"} #{message}"
|
419
|
+
end
|
420
|
+
|
421
|
+
def say_with_time(message)
|
422
|
+
say(message)
|
423
|
+
result = nil
|
424
|
+
time = Benchmark.measure { result = yield }
|
425
|
+
say "%.4fs" % time.real, :subitem
|
426
|
+
say("#{result} rows", :subitem) if result.is_a?(Integer)
|
427
|
+
result
|
428
|
+
end
|
429
|
+
|
430
|
+
def suppress_messages
|
431
|
+
save, self.verbose = verbose, false
|
432
|
+
yield
|
433
|
+
ensure
|
434
|
+
self.verbose = save
|
435
|
+
end
|
436
|
+
|
437
|
+
def connection
|
438
|
+
@connection || ActiveRecord::Base.connection
|
439
|
+
end
|
440
|
+
|
441
|
+
def method_missing(method, *arguments, &block)
|
442
|
+
arg_list = arguments.map{ |a| a.inspect } * ', '
|
443
|
+
|
444
|
+
say_with_time "#{method}(#{arg_list})" do
|
445
|
+
unless arguments.empty? || method == :execute
|
446
|
+
arguments[0] = Migrator.proper_table_name(arguments.first)
|
447
|
+
arguments[1] = Migrator.proper_table_name(arguments.second) if method == :rename_table
|
448
|
+
end
|
449
|
+
return super unless connection.respond_to?(method)
|
450
|
+
connection.send(method, *arguments, &block)
|
451
|
+
end
|
452
|
+
end
|
453
|
+
|
454
|
+
def copy(destination, sources, options = {})
|
455
|
+
copied = []
|
456
|
+
|
457
|
+
FileUtils.mkdir_p(destination) unless File.exists?(destination)
|
458
|
+
|
459
|
+
destination_migrations = ActiveRecord::Migrator.migrations(destination)
|
460
|
+
last = destination_migrations.last
|
461
|
+
sources.each do |scope, path|
|
462
|
+
source_migrations = ActiveRecord::Migrator.migrations(path)
|
463
|
+
|
464
|
+
source_migrations.each do |migration|
|
465
|
+
source = File.read(migration.filename)
|
466
|
+
source = "# This migration comes from #{scope} (originally #{migration.version})\n#{source}"
|
467
|
+
|
468
|
+
if duplicate = destination_migrations.detect { |m| m.name == migration.name }
|
469
|
+
if options[:on_skip] && duplicate.scope != scope.to_s
|
470
|
+
options[:on_skip].call(scope, migration)
|
471
|
+
end
|
472
|
+
next
|
473
|
+
end
|
474
|
+
|
475
|
+
migration.version = next_migration_number(last ? last.version + 1 : 0).to_i
|
476
|
+
new_path = File.join(destination, "#{migration.version}_#{migration.name.underscore}.#{scope}.rb")
|
477
|
+
old_path, migration.filename = migration.filename, new_path
|
478
|
+
last = migration
|
479
|
+
|
480
|
+
File.open(migration.filename, "w") { |f| f.write source }
|
481
|
+
copied << migration
|
482
|
+
options[:on_copy].call(scope, migration, old_path) if options[:on_copy]
|
483
|
+
destination_migrations << migration
|
484
|
+
end
|
485
|
+
end
|
486
|
+
|
487
|
+
copied
|
488
|
+
end
|
489
|
+
|
490
|
+
def next_migration_number(number)
|
491
|
+
if ActiveRecord::Base.timestamped_migrations
|
492
|
+
[Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % number].max
|
493
|
+
else
|
494
|
+
"%.3d" % number
|
495
|
+
end
|
496
|
+
end
|
497
|
+
end
|
498
|
+
|
499
|
+
# MigrationProxy is used to defer loading of the actual migration classes
|
500
|
+
# until they are needed
|
501
|
+
class MigrationProxy < Struct.new(:name, :version, :filename, :scope)
|
502
|
+
|
503
|
+
def initialize(name, version, filename, scope)
|
504
|
+
super
|
505
|
+
@migration = nil
|
506
|
+
end
|
507
|
+
|
508
|
+
def basename
|
509
|
+
File.basename(filename)
|
510
|
+
end
|
511
|
+
|
512
|
+
delegate :migrate, :announce, :write, :to => :migration
|
513
|
+
|
514
|
+
private
|
515
|
+
|
516
|
+
def migration
|
517
|
+
@migration ||= load_migration
|
518
|
+
end
|
519
|
+
|
520
|
+
def load_migration
|
521
|
+
require(File.expand_path(filename))
|
522
|
+
name.constantize.new
|
523
|
+
end
|
524
|
+
|
525
|
+
end
|
526
|
+
|
527
|
+
class Migrator#:nodoc:
|
528
|
+
class << self
|
529
|
+
attr_writer :migrations_paths
|
530
|
+
alias :migrations_path= :migrations_paths=
|
531
|
+
|
532
|
+
def migrate(migrations_paths, target_version = nil, &block)
|
533
|
+
case
|
534
|
+
when target_version.nil?
|
535
|
+
up(migrations_paths, target_version, &block)
|
536
|
+
when current_version == 0 && target_version == 0
|
537
|
+
[]
|
538
|
+
when current_version > target_version
|
539
|
+
down(migrations_paths, target_version, &block)
|
540
|
+
else
|
541
|
+
up(migrations_paths, target_version, &block)
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
545
|
+
def rollback(migrations_paths, steps=1)
|
546
|
+
move(:down, migrations_paths, steps)
|
547
|
+
end
|
548
|
+
|
549
|
+
def forward(migrations_paths, steps=1)
|
550
|
+
move(:up, migrations_paths, steps)
|
551
|
+
end
|
552
|
+
|
553
|
+
def up(migrations_paths, target_version = nil, &block)
|
554
|
+
self.new(:up, migrations_paths, target_version).migrate(&block)
|
555
|
+
end
|
556
|
+
|
557
|
+
def down(migrations_paths, target_version = nil, &block)
|
558
|
+
self.new(:down, migrations_paths, target_version).migrate(&block)
|
559
|
+
end
|
560
|
+
|
561
|
+
def run(direction, migrations_paths, target_version)
|
562
|
+
self.new(direction, migrations_paths, target_version).run
|
563
|
+
end
|
564
|
+
|
565
|
+
def schema_migrations_table_name
|
566
|
+
Base.table_name_prefix + 'schema_migrations' + Base.table_name_suffix
|
567
|
+
end
|
568
|
+
|
569
|
+
def get_all_versions
|
570
|
+
table = Arel::Table.new(schema_migrations_table_name)
|
571
|
+
Base.connection.select_values(table.project(table['version'])).map{ |v| v.to_i }.sort
|
572
|
+
end
|
573
|
+
|
574
|
+
def current_version
|
575
|
+
sm_table = schema_migrations_table_name
|
576
|
+
if Base.connection.table_exists?(sm_table)
|
577
|
+
get_all_versions.max || 0
|
578
|
+
else
|
579
|
+
0
|
580
|
+
end
|
581
|
+
end
|
582
|
+
|
583
|
+
def proper_table_name(name)
|
584
|
+
# Use the Active Record objects own table_name, or pre/suffix from ActiveRecord::Base if name is a symbol/string
|
585
|
+
name.table_name rescue "#{ActiveRecord::Base.table_name_prefix}#{name}#{ActiveRecord::Base.table_name_suffix}"
|
586
|
+
end
|
587
|
+
|
588
|
+
def migrations_paths
|
589
|
+
@migrations_paths ||= ['db/migrate']
|
590
|
+
# just to not break things if someone uses: migration_path = some_string
|
591
|
+
Array.wrap(@migrations_paths)
|
592
|
+
end
|
593
|
+
|
594
|
+
def migrations_path
|
595
|
+
migrations_paths.first
|
596
|
+
end
|
597
|
+
|
598
|
+
def migrations(paths, *args)
|
599
|
+
if args.empty?
|
600
|
+
subdirectories = true
|
601
|
+
else
|
602
|
+
subdirectories = args.first
|
603
|
+
ActiveSupport::Deprecation.warn "The `subdirectories` argument to `migrations` is deprecated"
|
604
|
+
end
|
605
|
+
|
606
|
+
paths = Array.wrap(paths)
|
607
|
+
|
608
|
+
glob = subdirectories ? "**/" : ""
|
609
|
+
files = Dir[*paths.map { |p| "#{p}/#{glob}[0-9]*_*.rb" }]
|
610
|
+
|
611
|
+
seen = Hash.new false
|
612
|
+
|
613
|
+
migrations = files.map do |file|
|
614
|
+
version, name, scope = file.scan(/([0-9]+)_([_a-z0-9]*)\.?([_a-z0-9]*)?.rb/).first
|
615
|
+
|
616
|
+
raise IllegalMigrationNameError.new(file) unless version
|
617
|
+
version = version.to_i
|
618
|
+
name = name.camelize
|
619
|
+
|
620
|
+
raise DuplicateMigrationVersionError.new(version) if seen[version]
|
621
|
+
raise DuplicateMigrationNameError.new(name) if seen[name]
|
622
|
+
|
623
|
+
seen[version] = seen[name] = true
|
624
|
+
|
625
|
+
MigrationProxy.new(name, version, file, scope)
|
626
|
+
end
|
627
|
+
|
628
|
+
migrations.sort_by(&:version)
|
629
|
+
end
|
630
|
+
|
631
|
+
private
|
632
|
+
|
633
|
+
def move(direction, migrations_paths, steps)
|
634
|
+
migrator = self.new(direction, migrations_paths)
|
635
|
+
start_index = migrator.migrations.index(migrator.current_migration)
|
636
|
+
|
637
|
+
if start_index
|
638
|
+
finish = migrator.migrations[start_index + steps]
|
639
|
+
version = finish ? finish.version : 0
|
640
|
+
send(direction, migrations_paths, version)
|
641
|
+
end
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
645
|
+
def initialize(direction, migrations_paths, target_version = nil)
|
646
|
+
raise StandardError.new("This database does not yet support migrations") unless Base.connection.supports_migrations?
|
647
|
+
Base.connection.initialize_schema_migrations_table
|
648
|
+
@direction, @migrations_paths, @target_version = direction, migrations_paths, target_version
|
649
|
+
end
|
650
|
+
|
651
|
+
def current_version
|
652
|
+
migrated.last || 0
|
653
|
+
end
|
654
|
+
|
655
|
+
def current_migration
|
656
|
+
migrations.detect { |m| m.version == current_version }
|
657
|
+
end
|
658
|
+
|
659
|
+
def run
|
660
|
+
target = migrations.detect { |m| m.version == @target_version }
|
661
|
+
raise UnknownMigrationVersionError.new(@target_version) if target.nil?
|
662
|
+
unless (up? && migrated.include?(target.version.to_i)) || (down? && !migrated.include?(target.version.to_i))
|
663
|
+
target.migrate(@direction)
|
664
|
+
record_version_state_after_migrating(target.version)
|
665
|
+
end
|
666
|
+
end
|
667
|
+
|
668
|
+
def migrate(&block)
|
669
|
+
current = migrations.detect { |m| m.version == current_version }
|
670
|
+
target = migrations.detect { |m| m.version == @target_version }
|
671
|
+
|
672
|
+
if target.nil? && @target_version && @target_version > 0
|
673
|
+
raise UnknownMigrationVersionError.new(@target_version)
|
674
|
+
end
|
675
|
+
|
676
|
+
start = up? ? 0 : (migrations.index(current) || 0)
|
677
|
+
finish = migrations.index(target) || migrations.size - 1
|
678
|
+
runnable = migrations[start..finish]
|
679
|
+
|
680
|
+
# skip the last migration if we're headed down, but not ALL the way down
|
681
|
+
runnable.pop if down? && target
|
682
|
+
|
683
|
+
ran = []
|
684
|
+
runnable.each do |migration|
|
685
|
+
if block && !block.call(migration)
|
686
|
+
next
|
687
|
+
end
|
688
|
+
|
689
|
+
Base.logger.info "Migrating to #{migration.name} (#{migration.version})" if Base.logger
|
690
|
+
|
691
|
+
seen = migrated.include?(migration.version.to_i)
|
692
|
+
|
693
|
+
# On our way up, we skip migrating the ones we've already migrated
|
694
|
+
next if up? && seen
|
695
|
+
|
696
|
+
# On our way down, we skip reverting the ones we've never migrated
|
697
|
+
if down? && !seen
|
698
|
+
migration.announce 'never migrated, skipping'; migration.write
|
699
|
+
next
|
700
|
+
end
|
701
|
+
|
702
|
+
begin
|
703
|
+
ddl_transaction do
|
704
|
+
migration.migrate(@direction)
|
705
|
+
record_version_state_after_migrating(migration.version)
|
706
|
+
end
|
707
|
+
ran << migration
|
708
|
+
rescue => e
|
709
|
+
canceled_msg = Base.connection.supports_ddl_transactions? ? "this and " : ""
|
710
|
+
raise StandardError, "An error has occurred, #{canceled_msg}all later migrations canceled:\n\n#{e}", e.backtrace
|
711
|
+
end
|
712
|
+
end
|
713
|
+
ran
|
714
|
+
end
|
715
|
+
|
716
|
+
def migrations
|
717
|
+
@migrations ||= begin
|
718
|
+
migrations = self.class.migrations(@migrations_paths)
|
719
|
+
down? ? migrations.reverse : migrations
|
720
|
+
end
|
721
|
+
end
|
722
|
+
|
723
|
+
def pending_migrations
|
724
|
+
already_migrated = migrated
|
725
|
+
migrations.reject { |m| already_migrated.include?(m.version.to_i) }
|
726
|
+
end
|
727
|
+
|
728
|
+
def migrated
|
729
|
+
@migrated_versions ||= self.class.get_all_versions
|
730
|
+
end
|
731
|
+
|
732
|
+
private
|
733
|
+
def record_version_state_after_migrating(version)
|
734
|
+
table = Arel::Table.new(self.class.schema_migrations_table_name)
|
735
|
+
|
736
|
+
@migrated_versions ||= []
|
737
|
+
if down?
|
738
|
+
@migrated_versions.delete(version)
|
739
|
+
stmt = table.where(table["version"].eq(version.to_s)).compile_delete
|
740
|
+
Base.connection.delete stmt
|
741
|
+
else
|
742
|
+
@migrated_versions.push(version).sort!
|
743
|
+
stmt = table.compile_insert table["version"] => version.to_s
|
744
|
+
Base.connection.insert stmt
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
748
|
+
def up?
|
749
|
+
@direction == :up
|
750
|
+
end
|
751
|
+
|
752
|
+
def down?
|
753
|
+
@direction == :down
|
754
|
+
end
|
755
|
+
|
756
|
+
# Wrap the migration in a transaction only if supported by the adapter.
|
757
|
+
def ddl_transaction(&block)
|
758
|
+
if Base.connection.supports_ddl_transactions?
|
759
|
+
Base.transaction { block.call }
|
760
|
+
else
|
761
|
+
block.call
|
762
|
+
end
|
763
|
+
end
|
764
|
+
end
|
765
|
+
end
|