ruby-on-quails 0.1.0
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.
- checksums.yaml +7 -0
- data/.codeclimate.yml +13 -0
- data/.gitattributes +2 -0
- data/.github/issue_template.md +15 -0
- data/.github/pull_request_template.md +21 -0
- data/.github/stale.yml +28 -0
- data/.gitignore +24 -0
- data/.rubocop.yml +137 -0
- data/.travis.yml +123 -0
- data/.yardopts +4 -0
- data/CODE_OF_CONDUCT.md +12 -0
- data/CONTRIBUTING.md +49 -0
- data/Gemfile +168 -0
- data/Gemfile.lock +547 -0
- data/MIT-LICENSE +20 -0
- data/RAILS_VERSION +1 -0
- data/README.md +97 -0
- data/RELEASING_RAILS.md +225 -0
- data/Rakefile +72 -0
- data/actioncable/.gitignore +2 -0
- data/actioncable/CHANGELOG.md +26 -0
- data/actioncable/MIT-LICENSE +20 -0
- data/actioncable/README.md +567 -0
- data/actioncable/Rakefile +76 -0
- data/actioncable/actioncable.gemspec +32 -0
- data/actioncable/app/assets/javascripts/action_cable.coffee.erb +38 -0
- data/actioncable/app/assets/javascripts/action_cable/connection.coffee +116 -0
- data/actioncable/app/assets/javascripts/action_cable/connection_monitor.coffee +95 -0
- data/actioncable/app/assets/javascripts/action_cable/consumer.coffee +46 -0
- data/actioncable/app/assets/javascripts/action_cable/subscription.coffee +72 -0
- data/actioncable/app/assets/javascripts/action_cable/subscriptions.coffee +66 -0
- data/actioncable/bin/test +5 -0
- data/actioncable/blade.yml +34 -0
- data/actioncable/lib/action_cable.rb +54 -0
- data/actioncable/lib/action_cable/channel.rb +16 -0
- data/actioncable/lib/action_cable/channel/base.rb +305 -0
- data/actioncable/lib/action_cable/channel/broadcasting.rb +31 -0
- data/actioncable/lib/action_cable/channel/callbacks.rb +37 -0
- data/actioncable/lib/action_cable/channel/naming.rb +25 -0
- data/actioncable/lib/action_cable/channel/periodic_timers.rb +78 -0
- data/actioncable/lib/action_cable/channel/streams.rb +176 -0
- data/actioncable/lib/action_cable/connection.rb +21 -0
- data/actioncable/lib/action_cable/connection/authorization.rb +15 -0
- data/actioncable/lib/action_cable/connection/base.rb +260 -0
- data/actioncable/lib/action_cable/connection/client_socket.rb +157 -0
- data/actioncable/lib/action_cable/connection/identification.rb +47 -0
- data/actioncable/lib/action_cable/connection/internal_channel.rb +45 -0
- data/actioncable/lib/action_cable/connection/message_buffer.rb +57 -0
- data/actioncable/lib/action_cable/connection/stream.rb +115 -0
- data/actioncable/lib/action_cable/connection/stream_event_loop.rb +136 -0
- data/actioncable/lib/action_cable/connection/subscriptions.rb +83 -0
- data/actioncable/lib/action_cable/connection/tagged_logger_proxy.rb +42 -0
- data/actioncable/lib/action_cable/connection/web_socket.rb +43 -0
- data/actioncable/lib/action_cable/engine.rb +79 -0
- data/actioncable/lib/action_cable/gem_version.rb +17 -0
- data/actioncable/lib/action_cable/helpers/action_cable_helper.rb +42 -0
- data/actioncable/lib/action_cable/remote_connections.rb +69 -0
- data/actioncable/lib/action_cable/server.rb +17 -0
- data/actioncable/lib/action_cable/server/base.rb +89 -0
- data/actioncable/lib/action_cable/server/broadcasting.rb +54 -0
- data/actioncable/lib/action_cable/server/configuration.rb +43 -0
- data/actioncable/lib/action_cable/server/connections.rb +36 -0
- data/actioncable/lib/action_cable/server/worker.rb +77 -0
- data/actioncable/lib/action_cable/server/worker/active_record_connection_management.rb +21 -0
- data/actioncable/lib/action_cable/subscription_adapter.rb +11 -0
- data/actioncable/lib/action_cable/subscription_adapter/async.rb +29 -0
- data/actioncable/lib/action_cable/subscription_adapter/base.rb +30 -0
- data/actioncable/lib/action_cable/subscription_adapter/channel_prefix.rb +28 -0
- data/actioncable/lib/action_cable/subscription_adapter/evented_redis.rb +89 -0
- data/actioncable/lib/action_cable/subscription_adapter/inline.rb +37 -0
- data/actioncable/lib/action_cable/subscription_adapter/postgresql.rb +114 -0
- data/actioncable/lib/action_cable/subscription_adapter/redis.rb +178 -0
- data/actioncable/lib/action_cable/subscription_adapter/subscriber_map.rb +59 -0
- data/actioncable/lib/action_cable/version.rb +10 -0
- data/actioncable/lib/rails/generators/channel/USAGE +14 -0
- data/actioncable/lib/rails/generators/channel/channel_generator.rb +49 -0
- data/actioncable/lib/rails/generators/channel/templates/application_cable/channel.rb +4 -0
- data/actioncable/lib/rails/generators/channel/templates/application_cable/connection.rb +4 -0
- data/actioncable/lib/rails/generators/channel/templates/assets/cable.js +13 -0
- data/actioncable/lib/rails/generators/channel/templates/assets/channel.coffee +14 -0
- data/actioncable/lib/rails/generators/channel/templates/assets/channel.js +18 -0
- data/actioncable/lib/rails/generators/channel/templates/channel.rb +16 -0
- data/actioncable/package.json +24 -0
- data/actioncable/test/channel/base_test.rb +272 -0
- data/actioncable/test/channel/broadcasting_test.rb +31 -0
- data/actioncable/test/channel/naming_test.rb +12 -0
- data/actioncable/test/channel/periodic_timers_test.rb +74 -0
- data/actioncable/test/channel/rejection_test.rb +43 -0
- data/actioncable/test/channel/stream_test.rb +208 -0
- data/actioncable/test/client_test.rb +313 -0
- data/actioncable/test/connection/authorization_test.rb +33 -0
- data/actioncable/test/connection/base_test.rb +141 -0
- data/actioncable/test/connection/client_socket_test.rb +84 -0
- data/actioncable/test/connection/cross_site_forgery_test.rb +92 -0
- data/actioncable/test/connection/identifier_test.rb +77 -0
- data/actioncable/test/connection/multiple_identifiers_test.rb +39 -0
- data/actioncable/test/connection/stream_test.rb +66 -0
- data/actioncable/test/connection/string_identifier_test.rb +41 -0
- data/actioncable/test/connection/subscriptions_test.rb +116 -0
- data/actioncable/test/javascript/src/test.coffee +3 -0
- data/actioncable/test/javascript/src/test_helpers/consumer_test_helper.coffee +47 -0
- data/actioncable/test/javascript/src/test_helpers/index.coffee +11 -0
- data/actioncable/test/javascript/src/unit/action_cable_test.coffee +41 -0
- data/actioncable/test/javascript/src/unit/consumer_test.coffee +14 -0
- data/actioncable/test/javascript/src/unit/subscription_test.coffee +40 -0
- data/actioncable/test/javascript/src/unit/subscriptions_test.coffee +25 -0
- data/actioncable/test/javascript/vendor/mock-socket.js +4533 -0
- data/actioncable/test/server/base_test.rb +35 -0
- data/actioncable/test/server/broadcasting_test.rb +62 -0
- data/actioncable/test/stubs/global_id.rb +10 -0
- data/actioncable/test/stubs/room.rb +18 -0
- data/actioncable/test/stubs/test_adapter.rb +12 -0
- data/actioncable/test/stubs/test_connection.rb +35 -0
- data/actioncable/test/stubs/test_server.rb +32 -0
- data/actioncable/test/stubs/user.rb +17 -0
- data/actioncable/test/subscription_adapter/async_test.rb +19 -0
- data/actioncable/test/subscription_adapter/base_test.rb +65 -0
- data/actioncable/test/subscription_adapter/channel_prefix.rb +38 -0
- data/actioncable/test/subscription_adapter/common.rb +131 -0
- data/actioncable/test/subscription_adapter/evented_redis_test.rb +61 -0
- data/actioncable/test/subscription_adapter/inline_test.rb +19 -0
- data/actioncable/test/subscription_adapter/postgresql_test.rb +42 -0
- data/actioncable/test/subscription_adapter/redis_test.rb +28 -0
- data/actioncable/test/subscription_adapter/subscriber_map_test.rb +19 -0
- data/actioncable/test/test_helper.rb +37 -0
- data/actioncable/test/worker_test.rb +46 -0
- data/actionmailer/CHANGELOG.md +12 -0
- data/actionmailer/MIT-LICENSE +21 -0
- data/actionmailer/README.rdoc +175 -0
- data/actionmailer/Rakefile +25 -0
- data/actionmailer/actionmailer.gemspec +35 -0
- data/actionmailer/bin/test +5 -0
- data/actionmailer/lib/action_mailer.rb +62 -0
- data/actionmailer/lib/action_mailer/base.rb +981 -0
- data/actionmailer/lib/action_mailer/collector.rb +32 -0
- data/actionmailer/lib/action_mailer/delivery_job.rb +36 -0
- data/actionmailer/lib/action_mailer/delivery_methods.rb +82 -0
- data/actionmailer/lib/action_mailer/gem_version.rb +17 -0
- data/actionmailer/lib/action_mailer/inline_preview_interceptor.rb +59 -0
- data/actionmailer/lib/action_mailer/log_subscriber.rb +41 -0
- data/actionmailer/lib/action_mailer/mail_helper.rb +72 -0
- data/actionmailer/lib/action_mailer/message_delivery.rb +144 -0
- data/actionmailer/lib/action_mailer/parameterized.rb +154 -0
- data/actionmailer/lib/action_mailer/preview.rb +126 -0
- data/actionmailer/lib/action_mailer/railtie.rb +82 -0
- data/actionmailer/lib/action_mailer/rescuable.rb +29 -0
- data/actionmailer/lib/action_mailer/test_case.rb +123 -0
- data/actionmailer/lib/action_mailer/test_helper.rb +115 -0
- data/actionmailer/lib/action_mailer/version.rb +11 -0
- data/actionmailer/lib/rails/generators/mailer/USAGE +17 -0
- data/actionmailer/lib/rails/generators/mailer/mailer_generator.rb +38 -0
- data/actionmailer/lib/rails/generators/mailer/templates/application_mailer.rb +6 -0
- data/actionmailer/lib/rails/generators/mailer/templates/mailer.rb +17 -0
- data/actionmailer/test/abstract_unit.rb +47 -0
- data/actionmailer/test/assert_select_email_test.rb +49 -0
- data/actionmailer/test/asset_host_test.rb +39 -0
- data/actionmailer/test/base_test.rb +987 -0
- data/actionmailer/test/caching_test.rb +271 -0
- data/actionmailer/test/delivery_methods_test.rb +248 -0
- data/actionmailer/test/fixtures/anonymous/welcome.erb +1 -0
- data/actionmailer/test/fixtures/another.path/base_mailer/welcome.erb +1 -0
- data/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/actionmailer/test/fixtures/asset_mailer/welcome.html.erb +1 -0
- data/actionmailer/test/fixtures/attachments/foo.jpg +0 -0
- data/actionmailer/test/fixtures/attachments/test.jpg +0 -0
- data/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/actionmailer/test/fixtures/auto_layout_mailer/multipart.html.erb +1 -0
- data/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/attachment_with_content.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/attachment_with_hash.html.erb +0 -0
- data/actionmailer/test/fixtures/base_mailer/attachment_with_hash_default_encoding.html.erb +0 -0
- data/actionmailer/test/fixtures/base_mailer/different_layout.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/different_layout.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/email_with_translations.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/explicit_multipart_templates.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/explicit_multipart_with_one_template.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/html_only.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_multipart.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_multipart.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.de-AT.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.de.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.en.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.html.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.pl.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/implicit_with_locale.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/inline_attachment.html.erb +5 -0
- data/actionmailer/test/fixtures/base_mailer/inline_attachment.text.erb +4 -0
- data/actionmailer/test/fixtures/base_mailer/plain_text_only.text.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/welcome.erb +1 -0
- data/actionmailer/test/fixtures/base_mailer/welcome_with_headers.html.erb +0 -0
- data/actionmailer/test/fixtures/base_mailer/without_mail_call.erb +1 -0
- data/actionmailer/test/fixtures/base_test/after_action_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/base_test/before_action_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/base_test/default_inline_attachment_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/base_test/late_inline_attachment_mailer/on_render.erb +7 -0
- data/actionmailer/test/fixtures/caching_mailer/_partial.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/fragment_cache.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/fragment_cache_in_partials.html.erb +1 -0
- data/actionmailer/test/fixtures/caching_mailer/fragment_caching_options.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/multipart_cache.html.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/multipart_cache.text.erb +3 -0
- data/actionmailer/test/fixtures/caching_mailer/skip_fragment_cache_digesting.html.erb +3 -0
- data/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/actionmailer/test/fixtures/i18n_test_mailer/mail_with_i18n_subject.erb +4 -0
- data/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/actionmailer/test/fixtures/layouts/different_layout.html.erb +1 -0
- data/actionmailer/test/fixtures/layouts/different_layout.text.erb +1 -0
- data/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
- data/actionmailer/test/fixtures/mail_delivery_test/delivery_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb +1 -0
- data/actionmailer/test/fixtures/proc_mailer/welcome.html.erb +0 -0
- data/actionmailer/test/fixtures/raw_email +14 -0
- data/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/actionmailer/test/fixtures/test_helper_mailer/welcome +1 -0
- data/actionmailer/test/fixtures/url_test_mailer/exercise_url_for.erb +1 -0
- data/actionmailer/test/fixtures/url_test_mailer/signed_up_with_url.erb +5 -0
- data/actionmailer/test/i18n_with_controller_test.rb +77 -0
- data/actionmailer/test/log_subscriber_test.rb +49 -0
- data/actionmailer/test/mail_helper_test.rb +125 -0
- data/actionmailer/test/mail_layout_test.rb +97 -0
- data/actionmailer/test/mailers/asset_mailer.rb +9 -0
- data/actionmailer/test/mailers/base_mailer.rb +138 -0
- data/actionmailer/test/mailers/caching_mailer.rb +25 -0
- data/actionmailer/test/mailers/delayed_mailer.rb +28 -0
- data/actionmailer/test/mailers/params_mailer.rb +13 -0
- data/actionmailer/test/mailers/proc_mailer.rb +18 -0
- data/actionmailer/test/message_delivery_test.rb +167 -0
- data/actionmailer/test/parameterized_test.rb +56 -0
- data/actionmailer/test/test_case_test.rb +68 -0
- data/actionmailer/test/test_helper_test.rb +223 -0
- data/actionmailer/test/url_test.rb +144 -0
- data/actionpack/CHANGELOG.md +75 -0
- data/actionpack/MIT-LICENSE +21 -0
- data/actionpack/README.rdoc +57 -0
- data/actionpack/Rakefile +40 -0
- data/actionpack/actionpack.gemspec +38 -0
- data/actionpack/bin/test +5 -0
- data/actionpack/lib/abstract_controller.rb +26 -0
- data/actionpack/lib/abstract_controller/asset_paths.rb +12 -0
- data/actionpack/lib/abstract_controller/base.rb +267 -0
- data/actionpack/lib/abstract_controller/caching.rb +66 -0
- data/actionpack/lib/abstract_controller/caching/fragments.rb +166 -0
- data/actionpack/lib/abstract_controller/callbacks.rb +212 -0
- data/actionpack/lib/abstract_controller/collector.rb +43 -0
- data/actionpack/lib/abstract_controller/error.rb +6 -0
- data/actionpack/lib/abstract_controller/helpers.rb +194 -0
- data/actionpack/lib/abstract_controller/logger.rb +14 -0
- data/actionpack/lib/abstract_controller/railties/routes_helpers.rb +20 -0
- data/actionpack/lib/abstract_controller/rendering.rb +136 -0
- data/actionpack/lib/abstract_controller/translation.rb +31 -0
- data/actionpack/lib/abstract_controller/url_for.rb +35 -0
- data/actionpack/lib/action_controller.rb +65 -0
- data/actionpack/lib/action_controller/api.rb +149 -0
- data/actionpack/lib/action_controller/api/api_rendering.rb +16 -0
- data/actionpack/lib/action_controller/base.rb +275 -0
- data/actionpack/lib/action_controller/caching.rb +46 -0
- data/actionpack/lib/action_controller/form_builder.rb +50 -0
- data/actionpack/lib/action_controller/log_subscriber.rb +78 -0
- data/actionpack/lib/action_controller/metal.rb +258 -0
- data/actionpack/lib/action_controller/metal/basic_implicit_render.rb +13 -0
- data/actionpack/lib/action_controller/metal/conditional_get.rb +274 -0
- data/actionpack/lib/action_controller/metal/cookies.rb +16 -0
- data/actionpack/lib/action_controller/metal/data_streaming.rb +152 -0
- data/actionpack/lib/action_controller/metal/etag_with_flash.rb +18 -0
- data/actionpack/lib/action_controller/metal/etag_with_template_digest.rb +57 -0
- data/actionpack/lib/action_controller/metal/exceptions.rb +56 -0
- data/actionpack/lib/action_controller/metal/flash.rb +61 -0
- data/actionpack/lib/action_controller/metal/force_ssl.rb +99 -0
- data/actionpack/lib/action_controller/metal/head.rb +60 -0
- data/actionpack/lib/action_controller/metal/helpers.rb +123 -0
- data/actionpack/lib/action_controller/metal/http_authentication.rb +522 -0
- data/actionpack/lib/action_controller/metal/implicit_render.rb +73 -0
- data/actionpack/lib/action_controller/metal/instrumentation.rb +111 -0
- data/actionpack/lib/action_controller/metal/live.rb +312 -0
- data/actionpack/lib/action_controller/metal/mime_responds.rb +313 -0
- data/actionpack/lib/action_controller/metal/parameter_encoding.rb +51 -0
- data/actionpack/lib/action_controller/metal/params_wrapper.rb +285 -0
- data/actionpack/lib/action_controller/metal/redirecting.rb +124 -0
- data/actionpack/lib/action_controller/metal/renderers.rb +181 -0
- data/actionpack/lib/action_controller/metal/rendering.rb +124 -0
- data/actionpack/lib/action_controller/metal/request_forgery_protection.rb +433 -0
- data/actionpack/lib/action_controller/metal/rescue.rb +28 -0
- data/actionpack/lib/action_controller/metal/streaming.rb +223 -0
- data/actionpack/lib/action_controller/metal/strong_parameters.rb +1085 -0
- data/actionpack/lib/action_controller/metal/testing.rb +22 -0
- data/actionpack/lib/action_controller/metal/url_for.rb +58 -0
- data/actionpack/lib/action_controller/railtie.rb +89 -0
- data/actionpack/lib/action_controller/railties/helpers.rb +24 -0
- data/actionpack/lib/action_controller/renderer.rb +117 -0
- data/actionpack/lib/action_controller/template_assertions.rb +11 -0
- data/actionpack/lib/action_controller/test_case.rb +626 -0
- data/actionpack/lib/action_dispatch.rb +111 -0
- data/actionpack/lib/action_dispatch/http/cache.rb +216 -0
- data/actionpack/lib/action_dispatch/http/filter_parameters.rb +84 -0
- data/actionpack/lib/action_dispatch/http/filter_redirect.rb +37 -0
- data/actionpack/lib/action_dispatch/http/headers.rb +132 -0
- data/actionpack/lib/action_dispatch/http/mime_negotiation.rb +173 -0
- data/actionpack/lib/action_dispatch/http/mime_type.rb +342 -0
- data/actionpack/lib/action_dispatch/http/mime_types.rb +37 -0
- data/actionpack/lib/action_dispatch/http/parameter_filter.rb +86 -0
- data/actionpack/lib/action_dispatch/http/parameters.rb +131 -0
- data/actionpack/lib/action_dispatch/http/rack_cache.rb +63 -0
- data/actionpack/lib/action_dispatch/http/request.rb +412 -0
- data/actionpack/lib/action_dispatch/http/response.rb +519 -0
- data/actionpack/lib/action_dispatch/http/upload.rb +84 -0
- data/actionpack/lib/action_dispatch/http/url.rb +350 -0
- data/actionpack/lib/action_dispatch/journey.rb +7 -0
- data/actionpack/lib/action_dispatch/journey/formatter.rb +189 -0
- data/actionpack/lib/action_dispatch/journey/gtg/builder.rb +164 -0
- data/actionpack/lib/action_dispatch/journey/gtg/simulator.rb +41 -0
- data/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb +158 -0
- data/actionpack/lib/action_dispatch/journey/nfa/builder.rb +78 -0
- data/actionpack/lib/action_dispatch/journey/nfa/dot.rb +36 -0
- data/actionpack/lib/action_dispatch/journey/nfa/simulator.rb +49 -0
- data/actionpack/lib/action_dispatch/journey/nfa/transition_table.rb +120 -0
- data/actionpack/lib/action_dispatch/journey/nodes/node.rb +140 -0
- data/actionpack/lib/action_dispatch/journey/parser.rb +199 -0
- data/actionpack/lib/action_dispatch/journey/parser.y +50 -0
- data/actionpack/lib/action_dispatch/journey/parser_extras.rb +31 -0
- data/actionpack/lib/action_dispatch/journey/path/pattern.rb +198 -0
- data/actionpack/lib/action_dispatch/journey/route.rb +203 -0
- data/actionpack/lib/action_dispatch/journey/router.rb +156 -0
- data/actionpack/lib/action_dispatch/journey/router/utils.rb +102 -0
- data/actionpack/lib/action_dispatch/journey/routes.rb +81 -0
- data/actionpack/lib/action_dispatch/journey/scanner.rb +64 -0
- data/actionpack/lib/action_dispatch/journey/visitors.rb +268 -0
- data/actionpack/lib/action_dispatch/journey/visualizer/fsm.css +30 -0
- data/actionpack/lib/action_dispatch/journey/visualizer/fsm.js +134 -0
- data/actionpack/lib/action_dispatch/journey/visualizer/index.html.erb +52 -0
- data/actionpack/lib/action_dispatch/middleware/callbacks.rb +36 -0
- data/actionpack/lib/action_dispatch/middleware/cookies.rb +686 -0
- data/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb +205 -0
- data/actionpack/lib/action_dispatch/middleware/debug_locks.rb +124 -0
- data/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb +146 -0
- data/actionpack/lib/action_dispatch/middleware/executor.rb +21 -0
- data/actionpack/lib/action_dispatch/middleware/flash.rb +300 -0
- data/actionpack/lib/action_dispatch/middleware/public_exceptions.rb +57 -0
- data/actionpack/lib/action_dispatch/middleware/reloader.rb +12 -0
- data/actionpack/lib/action_dispatch/middleware/remote_ip.rb +183 -0
- data/actionpack/lib/action_dispatch/middleware/request_id.rb +43 -0
- data/actionpack/lib/action_dispatch/middleware/session/abstract_store.rb +92 -0
- data/actionpack/lib/action_dispatch/middleware/session/cache_store.rb +54 -0
- data/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb +131 -0
- data/actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb +28 -0
- data/actionpack/lib/action_dispatch/middleware/show_exceptions.rb +62 -0
- data/actionpack/lib/action_dispatch/middleware/ssl.rb +144 -0
- data/actionpack/lib/action_dispatch/middleware/stack.rb +116 -0
- data/actionpack/lib/action_dispatch/middleware/static.rb +130 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +22 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +23 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +27 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.text.erb +8 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +52 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +9 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +16 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +9 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/layout.erb +160 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +11 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +3 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +32 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +11 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +20 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +7 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +6 -0
- data/actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +3 -0
- data/actionpack/lib/action_dispatch/middleware/templates/routes/_route.html.erb +16 -0
- data/actionpack/lib/action_dispatch/middleware/templates/routes/_table.html.erb +200 -0
- data/actionpack/lib/action_dispatch/railtie.rb +50 -0
- data/actionpack/lib/action_dispatch/request/session.rb +233 -0
- data/actionpack/lib/action_dispatch/request/utils.rb +76 -0
- data/actionpack/lib/action_dispatch/routing.rb +260 -0
- data/actionpack/lib/action_dispatch/routing/endpoint.rb +12 -0
- data/actionpack/lib/action_dispatch/routing/inspector.rb +225 -0
- data/actionpack/lib/action_dispatch/routing/mapper.rb +2256 -0
- data/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb +352 -0
- data/actionpack/lib/action_dispatch/routing/redirection.rb +201 -0
- data/actionpack/lib/action_dispatch/routing/route_set.rb +870 -0
- data/actionpack/lib/action_dispatch/routing/routes_proxy.rb +69 -0
- data/actionpack/lib/action_dispatch/routing/url_for.rb +218 -0
- data/actionpack/lib/action_dispatch/system_test_case.rb +133 -0
- data/actionpack/lib/action_dispatch/system_testing/driver.rb +55 -0
- data/actionpack/lib/action_dispatch/system_testing/server.rb +45 -0
- data/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +100 -0
- data/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +27 -0
- data/actionpack/lib/action_dispatch/system_testing/test_helpers/undef_methods.rb +26 -0
- data/actionpack/lib/action_dispatch/testing/assertion_response.rb +47 -0
- data/actionpack/lib/action_dispatch/testing/assertions.rb +24 -0
- data/actionpack/lib/action_dispatch/testing/assertions/response.rb +107 -0
- data/actionpack/lib/action_dispatch/testing/assertions/routing.rb +222 -0
- data/actionpack/lib/action_dispatch/testing/integration.rb +652 -0
- data/actionpack/lib/action_dispatch/testing/request_encoder.rb +55 -0
- data/actionpack/lib/action_dispatch/testing/test_process.rb +50 -0
- data/actionpack/lib/action_dispatch/testing/test_request.rb +71 -0
- data/actionpack/lib/action_dispatch/testing/test_response.rb +53 -0
- data/actionpack/lib/action_pack.rb +26 -0
- data/actionpack/lib/action_pack/gem_version.rb +17 -0
- data/actionpack/lib/action_pack/version.rb +10 -0
- data/actionpack/test/abstract/callbacks_test.rb +270 -0
- data/actionpack/test/abstract/collector_test.rb +65 -0
- data/actionpack/test/abstract/translation_test.rb +79 -0
- data/actionpack/test/abstract_unit.rb +451 -0
- data/actionpack/test/assertions/response_assertions_test.rb +141 -0
- data/actionpack/test/controller/action_pack_assertions_test.rb +493 -0
- data/actionpack/test/controller/api/conditional_get_test.rb +59 -0
- data/actionpack/test/controller/api/data_streaming_test.rb +28 -0
- data/actionpack/test/controller/api/force_ssl_test.rb +22 -0
- data/actionpack/test/controller/api/implicit_render_test.rb +17 -0
- data/actionpack/test/controller/api/params_wrapper_test.rb +28 -0
- data/actionpack/test/controller/api/redirect_to_test.rb +21 -0
- data/actionpack/test/controller/api/renderers_test.rb +50 -0
- data/actionpack/test/controller/api/url_for_test.rb +22 -0
- data/actionpack/test/controller/api/with_cookies_test.rb +23 -0
- data/actionpack/test/controller/api/with_helpers_test.rb +44 -0
- data/actionpack/test/controller/base_test.rb +323 -0
- data/actionpack/test/controller/caching_test.rb +503 -0
- data/actionpack/test/controller/content_type_test.rb +169 -0
- data/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/actionpack/test/controller/default_url_options_with_before_action_test.rb +28 -0
- data/actionpack/test/controller/filters_test.rb +1050 -0
- data/actionpack/test/controller/flash_hash_test.rb +216 -0
- data/actionpack/test/controller/flash_test.rb +371 -0
- data/actionpack/test/controller/force_ssl_test.rb +333 -0
- data/actionpack/test/controller/form_builder_test.rb +19 -0
- data/actionpack/test/controller/helper_test.rb +295 -0
- data/actionpack/test/controller/http_basic_authentication_test.rb +179 -0
- data/actionpack/test/controller/http_digest_authentication_test.rb +282 -0
- data/actionpack/test/controller/http_token_authentication_test.rb +216 -0
- data/actionpack/test/controller/integration_test.rb +1122 -0
- data/actionpack/test/controller/live_stream_test.rb +518 -0
- data/actionpack/test/controller/localized_templates_test.rb +48 -0
- data/actionpack/test/controller/log_subscriber_test.rb +371 -0
- data/actionpack/test/controller/metal/renderers_test.rb +50 -0
- data/actionpack/test/controller/metal_test.rb +32 -0
- data/actionpack/test/controller/mime/accept_format_test.rb +94 -0
- data/actionpack/test/controller/mime/respond_to_test.rb +843 -0
- data/actionpack/test/controller/new_base/bare_metal_test.rb +184 -0
- data/actionpack/test/controller/new_base/base_test.rb +134 -0
- data/actionpack/test/controller/new_base/content_negotiation_test.rb +28 -0
- data/actionpack/test/controller/new_base/content_type_test.rb +116 -0
- data/actionpack/test/controller/new_base/middleware_test.rb +112 -0
- data/actionpack/test/controller/new_base/render_action_test.rb +314 -0
- data/actionpack/test/controller/new_base/render_body_test.rb +172 -0
- data/actionpack/test/controller/new_base/render_context_test.rb +54 -0
- data/actionpack/test/controller/new_base/render_file_test.rb +72 -0
- data/actionpack/test/controller/new_base/render_html_test.rb +192 -0
- data/actionpack/test/controller/new_base/render_implicit_action_test.rb +59 -0
- data/actionpack/test/controller/new_base/render_layout_test.rb +128 -0
- data/actionpack/test/controller/new_base/render_partial_test.rb +62 -0
- data/actionpack/test/controller/new_base/render_plain_test.rb +170 -0
- data/actionpack/test/controller/new_base/render_streaming_test.rb +116 -0
- data/actionpack/test/controller/new_base/render_template_test.rb +240 -0
- data/actionpack/test/controller/new_base/render_test.rb +142 -0
- data/actionpack/test/controller/new_base/render_xml_test.rb +12 -0
- data/actionpack/test/controller/output_escaping_test.rb +17 -0
- data/actionpack/test/controller/parameter_encoding_test.rb +52 -0
- data/actionpack/test/controller/parameters/accessors_test.rb +279 -0
- data/actionpack/test/controller/parameters/always_permitted_parameters_test.rb +30 -0
- data/actionpack/test/controller/parameters/dup_test.rb +67 -0
- data/actionpack/test/controller/parameters/log_on_unpermitted_params_test.rb +70 -0
- data/actionpack/test/controller/parameters/multi_parameter_attributes_test.rb +39 -0
- data/actionpack/test/controller/parameters/mutators_test.rb +122 -0
- data/actionpack/test/controller/parameters/nested_parameters_permit_test.rb +184 -0
- data/actionpack/test/controller/parameters/parameters_permit_test.rb +513 -0
- data/actionpack/test/controller/parameters/raise_on_unpermitted_params_test.rb +33 -0
- data/actionpack/test/controller/parameters/serialization_test.rb +55 -0
- data/actionpack/test/controller/params_wrapper_test.rb +408 -0
- data/actionpack/test/controller/permitted_params_test.rb +27 -0
- data/actionpack/test/controller/redirect_test.rb +358 -0
- data/actionpack/test/controller/render_js_test.rb +36 -0
- data/actionpack/test/controller/render_json_test.rb +137 -0
- data/actionpack/test/controller/render_test.rb +810 -0
- data/actionpack/test/controller/render_xml_test.rb +102 -0
- data/actionpack/test/controller/renderer_test.rb +136 -0
- data/actionpack/test/controller/renderers_test.rb +91 -0
- data/actionpack/test/controller/request/test_request_test.rb +42 -0
- data/actionpack/test/controller/request_forgery_protection_test.rb +998 -0
- data/actionpack/test/controller/required_params_test.rb +100 -0
- data/actionpack/test/controller/rescue_test.rb +364 -0
- data/actionpack/test/controller/resources_test.rb +1369 -0
- data/actionpack/test/controller/routing_test.rb +2108 -0
- data/actionpack/test/controller/runner_test.rb +24 -0
- data/actionpack/test/controller/send_file_test.rb +259 -0
- data/actionpack/test/controller/show_exceptions_test.rb +114 -0
- data/actionpack/test/controller/streaming_test.rb +28 -0
- data/actionpack/test/controller/test_case_test.rb +1120 -0
- data/actionpack/test/controller/url_for_integration_test.rb +193 -0
- data/actionpack/test/controller/url_for_test.rb +519 -0
- data/actionpack/test/controller/url_rewriter_test.rb +92 -0
- data/actionpack/test/controller/webservice_test.rb +135 -0
- data/actionpack/test/dispatch/callbacks_test.rb +47 -0
- data/actionpack/test/dispatch/cookies_test.rb +1288 -0
- data/actionpack/test/dispatch/debug_exceptions_test.rb +502 -0
- data/actionpack/test/dispatch/debug_locks_test.rb +38 -0
- data/actionpack/test/dispatch/exception_wrapper_test.rb +120 -0
- data/actionpack/test/dispatch/executor_test.rb +136 -0
- data/actionpack/test/dispatch/header_test.rb +169 -0
- data/actionpack/test/dispatch/live_response_test.rb +98 -0
- data/actionpack/test/dispatch/mapper_test.rb +210 -0
- data/actionpack/test/dispatch/middleware_stack_test.rb +115 -0
- data/actionpack/test/dispatch/mime_type_test.rb +187 -0
- data/actionpack/test/dispatch/mount_test.rb +95 -0
- data/actionpack/test/dispatch/prefix_generation_test.rb +463 -0
- data/actionpack/test/dispatch/rack_cache_test.rb +23 -0
- data/actionpack/test/dispatch/reloader_test.rb +167 -0
- data/actionpack/test/dispatch/request/json_params_parsing_test.rb +207 -0
- data/actionpack/test/dispatch/request/multipart_params_parsing_test.rb +202 -0
- data/actionpack/test/dispatch/request/query_string_parsing_test.rb +176 -0
- data/actionpack/test/dispatch/request/session_test.rb +164 -0
- data/actionpack/test/dispatch/request/url_encoded_params_parsing_test.rb +181 -0
- data/actionpack/test/dispatch/request_id_test.rb +70 -0
- data/actionpack/test/dispatch/request_test.rb +1306 -0
- data/actionpack/test/dispatch/response_test.rb +536 -0
- data/actionpack/test/dispatch/routing/concerns_test.rb +124 -0
- data/actionpack/test/dispatch/routing/custom_url_helpers_test.rb +333 -0
- data/actionpack/test/dispatch/routing/inspector_test.rb +425 -0
- data/actionpack/test/dispatch/routing/ipv6_redirect_test.rb +46 -0
- data/actionpack/test/dispatch/routing/route_set_test.rb +166 -0
- data/actionpack/test/dispatch/routing_assertions_test.rb +132 -0
- data/actionpack/test/dispatch/routing_test.rb +5055 -0
- data/actionpack/test/dispatch/runner_test.rb +19 -0
- data/actionpack/test/dispatch/session/abstract_store_test.rb +58 -0
- data/actionpack/test/dispatch/session/cache_store_test.rb +183 -0
- data/actionpack/test/dispatch/session/cookie_store_test.rb +370 -0
- data/actionpack/test/dispatch/session/mem_cache_store_test.rb +205 -0
- data/actionpack/test/dispatch/session/test_session_test.rb +65 -0
- data/actionpack/test/dispatch/show_exceptions_test.rb +138 -0
- data/actionpack/test/dispatch/ssl_test.rb +220 -0
- data/actionpack/test/dispatch/static_test.rb +309 -0
- data/actionpack/test/dispatch/system_testing/driver_test.rb +37 -0
- data/actionpack/test/dispatch/system_testing/screenshot_helper_test.rb +74 -0
- data/actionpack/test/dispatch/system_testing/server_test.rb +19 -0
- data/actionpack/test/dispatch/system_testing/system_test_case_test.rb +67 -0
- data/actionpack/test/dispatch/test_request_test.rb +131 -0
- data/actionpack/test/dispatch/test_response_test.rb +37 -0
- data/actionpack/test/dispatch/uploaded_file_test.rb +113 -0
- data/actionpack/test/dispatch/url_generation_test.rb +141 -0
- data/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
- data/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +5 -0
- data/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/actionpack/test/fixtures/collection_cache/index.html.erb +1 -0
- data/actionpack/test/fixtures/company.rb +11 -0
- data/actionpack/test/fixtures/customers/_commented_customer.html.erb +5 -0
- data/actionpack/test/fixtures/customers/_customer.html.erb +4 -0
- data/actionpack/test/fixtures/filter_test/implicit_actions/edit.html.erb +1 -0
- data/actionpack/test/fixtures/filter_test/implicit_actions/show.html.erb +1 -0
- data/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
- data/actionpack/test/fixtures/functional_caching/formatted_fragment_cached_with_variant.html+phone.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/fragment_cached_without_digest.html.erb +3 -0
- data/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
- data/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
- data/actionpack/test/fixtures/helpers/fun/games_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers/just_me_helper.rb +5 -0
- data/actionpack/test/fixtures/helpers/me_too_helper.rb +5 -0
- data/actionpack/test/fixtures/helpers1_pack/pack1_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers2_pack/pack2_helper.rb +7 -0
- data/actionpack/test/fixtures/helpers_typo/admin/users_helper.rb +6 -0
- data/actionpack/test/fixtures/implicit_render_test/empty_action_with_mobile_variant.html+mobile.erb +1 -0
- data/actionpack/test/fixtures/implicit_render_test/empty_action_with_template.html.erb +1 -0
- data/actionpack/test/fixtures/layouts/_customers.erb +1 -0
- data/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/actionpack/test/fixtures/layouts/builder.builder +3 -0
- data/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/actionpack/test/fixtures/layouts/standard.html.erb +1 -0
- data/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/actionpack/test/fixtures/layouts/with_html_partial.html.erb +1 -0
- data/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
- data/actionpack/test/fixtures/layouts/yield.erb +2 -0
- data/actionpack/test/fixtures/load_me.rb +4 -0
- data/actionpack/test/fixtures/localized/hello_world.de.html +1 -0
- data/actionpack/test/fixtures/localized/hello_world.en.html +1 -0
- data/actionpack/test/fixtures/localized/hello_world.it.erb +1 -0
- data/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
- data/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/actionpack/test/fixtures/multipart/bracketed_utf8_param +5 -0
- data/actionpack/test/fixtures/multipart/empty +10 -0
- data/actionpack/test/fixtures/multipart/hello.txt +1 -0
- data/actionpack/test/fixtures/multipart/large_text_file +10 -0
- data/actionpack/test/fixtures/multipart/mixed_files +0 -0
- data/actionpack/test/fixtures/multipart/none +9 -0
- data/actionpack/test/fixtures/multipart/ruby_on_rails.jpg +0 -0
- data/actionpack/test/fixtures/multipart/single_parameter +5 -0
- data/actionpack/test/fixtures/multipart/single_utf8_param +5 -0
- data/actionpack/test/fixtures/multipart/text_file +10 -0
- data/actionpack/test/fixtures/multipart/utf8_filename +10 -0
- data/actionpack/test/fixtures/namespaced/implicit_render_test/hello_world.erb +1 -0
- data/actionpack/test/fixtures/old_content_type/render_default_content_types_for_respond_to.xml.erb +1 -0
- data/actionpack/test/fixtures/old_content_type/render_default_for_builder.builder +1 -0
- data/actionpack/test/fixtures/old_content_type/render_default_for_erb.erb +1 -0
- data/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
- data/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/actionpack/test/fixtures/public/400.html +1 -0
- data/actionpack/test/fixtures/public/404.html +1 -0
- data/actionpack/test/fixtures/public/500.da.html +1 -0
- data/actionpack/test/fixtures/public/500.html +1 -0
- data/actionpack/test/fixtures/public/bar.html +1 -0
- data/actionpack/test/fixtures/public/bar/index.html +1 -0
- data/actionpack/test/fixtures/public/foo/bar.html +1 -0
- data/actionpack/test/fixtures/public/foo/baz.css +3 -0
- data/actionpack/test/fixtures/public/foo/index.html +1 -0
- data/actionpack/test/fixtures/public/foo/other-index.html +1 -0
- data/actionpack/test/fixtures/public/foo//343/201/223/343/202/223/343/201/253/343/201/241/343/201/257.html +1 -0
- data/actionpack/test/fixtures/public/gzip/application-a71b3024f80aea3181c09774ca17e712.js +4 -0
- data/actionpack/test/fixtures/public/gzip/application-a71b3024f80aea3181c09774ca17e712.js.gz +0 -0
- data/actionpack/test/fixtures/public/gzip/foo.zoo +4 -0
- data/actionpack/test/fixtures/public/gzip/foo.zoo.gz +0 -0
- data/actionpack/test/fixtures/public/index.html +1 -0
- data/actionpack/test/fixtures/public/other-index.html +1 -0
- data/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults_with_all.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+phablet.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_any_implicit_render.html+tablet.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_inline_syntax_without_block.html+phone.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_plus_none_for_format.html.erb +1 -0
- data/actionpack/test/fixtures/respond_to/variant_with_implicit_template_rendering.html+mobile.erb +1 -0
- data/actionpack/test/fixtures/ruby_template.ruby +2 -0
- data/actionpack/test/fixtures/session_autoload_test/session_autoload_test/foo.rb +12 -0
- data/actionpack/test/fixtures/shared.html.erb +1 -0
- data/actionpack/test/fixtures/star_star_mime/index.js.erb +1 -0
- data/actionpack/test/fixtures/test/_partial.erb +1 -0
- data/actionpack/test/fixtures/test/_partial.html.erb +1 -0
- data/actionpack/test/fixtures/test/_partial.js.erb +1 -0
- data/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/actionpack/test/fixtures/test/hello/hello.erb +1 -0
- data/actionpack/test/fixtures/test/hello_world.erb +1 -0
- data/actionpack/test/fixtures/test/hello_world_with_partial.html.erb +2 -0
- data/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
- data/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
- data/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/actionpack/test/fixtures/test/with_implicit_template.erb +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/bar.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/bar/index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/bar.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/baz.css +3 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo/other-index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/foo//343/201/223/343/202/223/343/201/253/343/201/241/343/201/257.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/application-a71b3024f80aea3181c09774ca17e712.js +4 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/application-a71b3024f80aea3181c09774ca17e712.js.gz +0 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/foo.zoo +4 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/gzip/foo.zoo.gz +0 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/index.html +1 -0
- data/actionpack/test/fixtures//345/205/254/345/205/261/other-index.html +1 -0
- data/actionpack/test/journey/gtg/builder_test.rb +81 -0
- data/actionpack/test/journey/gtg/transition_table_test.rb +125 -0
- data/actionpack/test/journey/nfa/simulator_test.rb +100 -0
- data/actionpack/test/journey/nfa/transition_table_test.rb +74 -0
- data/actionpack/test/journey/nodes/symbol_test.rb +19 -0
- data/actionpack/test/journey/path/pattern_test.rb +286 -0
- data/actionpack/test/journey/route/definition/parser_test.rb +112 -0
- data/actionpack/test/journey/route/definition/scanner_test.rb +71 -0
- data/actionpack/test/journey/route_test.rb +113 -0
- data/actionpack/test/journey/router/utils_test.rb +48 -0
- data/actionpack/test/journey/router_test.rb +535 -0
- data/actionpack/test/journey/routes_test.rb +62 -0
- data/actionpack/test/lib/controller/fake_controllers.rb +37 -0
- data/actionpack/test/lib/controller/fake_models.rb +79 -0
- data/actionpack/test/routing/helper_test.rb +33 -0
- data/actionview/.gitignore +2 -0
- data/actionview/CHANGELOG.md +35 -0
- data/actionview/MIT-LICENSE +21 -0
- data/actionview/README.rdoc +38 -0
- data/actionview/RUNNING_UJS_TESTS.rdoc +7 -0
- data/actionview/RUNNING_UNIT_TESTS.rdoc +27 -0
- data/actionview/Rakefile +136 -0
- data/actionview/actionview.gemspec +38 -0
- data/actionview/app/assets/javascripts/MIT-LICENSE +20 -0
- data/actionview/app/assets/javascripts/README.md +60 -0
- data/actionview/app/assets/javascripts/rails-ujs.coffee +39 -0
- data/actionview/app/assets/javascripts/rails-ujs/BANNER.js +5 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/confirm.coffee +26 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/disable.coffee +82 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/method.coffee +34 -0
- data/actionview/app/assets/javascripts/rails-ujs/features/remote.coffee +90 -0
- data/actionview/app/assets/javascripts/rails-ujs/start.coffee +70 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/ajax.coffee +96 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/csrf.coffee +25 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/dom.coffee +28 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/event.coffee +40 -0
- data/actionview/app/assets/javascripts/rails-ujs/utils/form.coffee +36 -0
- data/actionview/bin/test +5 -0
- data/actionview/blade.yml +11 -0
- data/actionview/coffeelint.json +135 -0
- data/actionview/lib/action_view.rb +98 -0
- data/actionview/lib/action_view/base.rb +215 -0
- data/actionview/lib/action_view/buffers.rb +52 -0
- data/actionview/lib/action_view/context.rb +38 -0
- data/actionview/lib/action_view/dependency_tracker.rb +175 -0
- data/actionview/lib/action_view/digestor.rb +128 -0
- data/actionview/lib/action_view/flows.rb +76 -0
- data/actionview/lib/action_view/gem_version.rb +17 -0
- data/actionview/lib/action_view/helpers.rb +66 -0
- data/actionview/lib/action_view/helpers/active_model_helper.rb +51 -0
- data/actionview/lib/action_view/helpers/asset_tag_helper.rb +400 -0
- data/actionview/lib/action_view/helpers/asset_url_helper.rb +469 -0
- data/actionview/lib/action_view/helpers/atom_feed_helper.rb +205 -0
- data/actionview/lib/action_view/helpers/cache_helper.rb +263 -0
- data/actionview/lib/action_view/helpers/capture_helper.rb +212 -0
- data/actionview/lib/action_view/helpers/controller_helper.rb +36 -0
- data/actionview/lib/action_view/helpers/csrf_helper.rb +35 -0
- data/actionview/lib/action_view/helpers/date_helper.rb +1156 -0
- data/actionview/lib/action_view/helpers/debug_helper.rb +36 -0
- data/actionview/lib/action_view/helpers/form_helper.rb +2355 -0
- data/actionview/lib/action_view/helpers/form_options_helper.rb +883 -0
- data/actionview/lib/action_view/helpers/form_tag_helper.rb +916 -0
- data/actionview/lib/action_view/helpers/javascript_helper.rb +83 -0
- data/actionview/lib/action_view/helpers/number_helper.rb +451 -0
- data/actionview/lib/action_view/helpers/output_safety_helper.rb +70 -0
- data/actionview/lib/action_view/helpers/record_tag_helper.rb +23 -0
- data/actionview/lib/action_view/helpers/rendering_helper.rb +100 -0
- data/actionview/lib/action_view/helpers/sanitize_helper.rb +177 -0
- data/actionview/lib/action_view/helpers/tag_helper.rb +313 -0
- data/actionview/lib/action_view/helpers/tags.rb +44 -0
- data/actionview/lib/action_view/helpers/tags/base.rb +192 -0
- data/actionview/lib/action_view/helpers/tags/check_box.rb +66 -0
- data/actionview/lib/action_view/helpers/tags/checkable.rb +18 -0
- data/actionview/lib/action_view/helpers/tags/collection_check_boxes.rb +36 -0
- data/actionview/lib/action_view/helpers/tags/collection_helpers.rb +119 -0
- data/actionview/lib/action_view/helpers/tags/collection_radio_buttons.rb +31 -0
- data/actionview/lib/action_view/helpers/tags/collection_select.rb +30 -0
- data/actionview/lib/action_view/helpers/tags/color_field.rb +27 -0
- data/actionview/lib/action_view/helpers/tags/date_field.rb +15 -0
- data/actionview/lib/action_view/helpers/tags/date_select.rb +74 -0
- data/actionview/lib/action_view/helpers/tags/datetime_field.rb +32 -0
- data/actionview/lib/action_view/helpers/tags/datetime_local_field.rb +21 -0
- data/actionview/lib/action_view/helpers/tags/datetime_select.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/email_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/file_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/grouped_collection_select.rb +31 -0
- data/actionview/lib/action_view/helpers/tags/hidden_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/label.rb +85 -0
- data/actionview/lib/action_view/helpers/tags/month_field.rb +15 -0
- data/actionview/lib/action_view/helpers/tags/number_field.rb +20 -0
- data/actionview/lib/action_view/helpers/tags/password_field.rb +14 -0
- data/actionview/lib/action_view/helpers/tags/placeholderable.rb +24 -0
- data/actionview/lib/action_view/helpers/tags/radio_button.rb +33 -0
- data/actionview/lib/action_view/helpers/tags/range_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/search_field.rb +27 -0
- data/actionview/lib/action_view/helpers/tags/select.rb +43 -0
- data/actionview/lib/action_view/helpers/tags/tel_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/text_area.rb +24 -0
- data/actionview/lib/action_view/helpers/tags/text_field.rb +34 -0
- data/actionview/lib/action_view/helpers/tags/time_field.rb +15 -0
- data/actionview/lib/action_view/helpers/tags/time_select.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/time_zone_select.rb +22 -0
- data/actionview/lib/action_view/helpers/tags/translator.rb +44 -0
- data/actionview/lib/action_view/helpers/tags/url_field.rb +10 -0
- data/actionview/lib/action_view/helpers/tags/week_field.rb +15 -0
- data/actionview/lib/action_view/helpers/text_helper.rb +486 -0
- data/actionview/lib/action_view/helpers/translation_helper.rb +141 -0
- data/actionview/lib/action_view/helpers/url_helper.rb +654 -0
- data/actionview/lib/action_view/layouts.rb +433 -0
- data/actionview/lib/action_view/locale/en.yml +56 -0
- data/actionview/lib/action_view/log_subscriber.rb +96 -0
- data/actionview/lib/action_view/lookup_context.rb +274 -0
- data/actionview/lib/action_view/model_naming.rb +14 -0
- data/actionview/lib/action_view/path_set.rb +100 -0
- data/actionview/lib/action_view/railtie.rb +75 -0
- data/actionview/lib/action_view/record_identifier.rb +112 -0
- data/actionview/lib/action_view/renderer/abstract_renderer.rb +55 -0
- data/actionview/lib/action_view/renderer/partial_renderer.rb +552 -0
- data/actionview/lib/action_view/renderer/partial_renderer/collection_caching.rb +57 -0
- data/actionview/lib/action_view/renderer/renderer.rb +56 -0
- data/actionview/lib/action_view/renderer/streaming_template_renderer.rb +103 -0
- data/actionview/lib/action_view/renderer/template_renderer.rb +102 -0
- data/actionview/lib/action_view/rendering.rb +155 -0
- data/actionview/lib/action_view/routing_url_for.rb +145 -0
- data/actionview/lib/action_view/tasks/cache_digests.rake +25 -0
- data/actionview/lib/action_view/template.rb +361 -0
- data/actionview/lib/action_view/template/error.rb +144 -0
- data/actionview/lib/action_view/template/handlers.rb +66 -0
- data/actionview/lib/action_view/template/handlers/builder.rb +25 -0
- data/actionview/lib/action_view/template/handlers/erb.rb +77 -0
- data/actionview/lib/action_view/template/handlers/erb/deprecated_erubis.rb +11 -0
- data/actionview/lib/action_view/template/handlers/erb/erubi.rb +83 -0
- data/actionview/lib/action_view/template/handlers/erb/erubis.rb +83 -0
- data/actionview/lib/action_view/template/handlers/html.rb +11 -0
- data/actionview/lib/action_view/template/handlers/raw.rb +11 -0
- data/actionview/lib/action_view/template/html.rb +34 -0
- data/actionview/lib/action_view/template/resolver.rb +391 -0
- data/actionview/lib/action_view/template/text.rb +33 -0
- data/actionview/lib/action_view/template/types.rb +57 -0
- data/actionview/lib/action_view/test_case.rb +300 -0
- data/actionview/lib/action_view/testing/resolvers.rb +54 -0
- data/actionview/lib/action_view/version.rb +10 -0
- data/actionview/lib/action_view/view_paths.rb +105 -0
- data/actionview/package.json +36 -0
- data/actionview/test/abstract_unit.rb +287 -0
- data/actionview/test/actionpack/abstract/abstract_controller_test.rb +292 -0
- data/actionview/test/actionpack/abstract/helper_test.rb +128 -0
- data/actionview/test/actionpack/abstract/layouts_test.rb +568 -0
- data/actionview/test/actionpack/abstract/render_test.rb +103 -0
- data/actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/formatted.html.erb +1 -0
- data/actionview/test/actionpack/abstract/views/abstract_controller/testing/me3/index.erb +1 -0
- data/actionview/test/actionpack/abstract/views/abstract_controller/testing/me4/index.erb +1 -0
- data/actionview/test/actionpack/abstract/views/action_with_ivars.erb +1 -0
- data/actionview/test/actionpack/abstract/views/helper_test.erb +1 -0
- data/actionview/test/actionpack/abstract/views/index.erb +1 -0
- data/actionview/test/actionpack/abstract/views/layouts/abstract_controller/testing/me4.erb +1 -0
- data/actionview/test/actionpack/abstract/views/layouts/application.erb +1 -0
- data/actionview/test/actionpack/abstract/views/naked_render.erb +1 -0
- data/actionview/test/actionpack/controller/capture_test.rb +83 -0
- data/actionview/test/actionpack/controller/layout_test.rb +270 -0
- data/actionview/test/actionpack/controller/render_test.rb +1294 -0
- data/actionview/test/actionpack/controller/view_paths_test.rb +174 -0
- data/actionview/test/active_record_unit.rb +92 -0
- data/actionview/test/activerecord/controller_runtime_test.rb +95 -0
- data/actionview/test/activerecord/debug_helper_test.rb +19 -0
- data/actionview/test/activerecord/form_helper_activerecord_test.rb +90 -0
- data/actionview/test/activerecord/polymorphic_routes_test.rb +780 -0
- data/actionview/test/activerecord/relation_cache_test.rb +23 -0
- data/actionview/test/activerecord/render_partial_with_record_identification_test.rb +198 -0
- data/actionview/test/fixtures/_top_level_partial.html.erb +1 -0
- data/actionview/test/fixtures/_top_level_partial_only.erb +1 -0
- data/actionview/test/fixtures/actionpack/bad_customers/_bad_customer.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/customers/_customer.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/fun/games/_form.erb +1 -0
- data/actionview/test/fixtures/actionpack/fun/games/hello_world.erb +1 -0
- data/actionview/test/fixtures/actionpack/good_customers/_good_customer.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/hello.html +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/alt/layouts/alt.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/controller_name_space/nested.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/item.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/layout_test.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/symlinked/symlinked_layout.erb +5 -0
- data/actionview/test/fixtures/actionpack/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/views/goodbye.erb +1 -0
- data/actionview/test/fixtures/actionpack/layout_tests/views/hello.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/_column.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/_customers.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/_partial_and_yield.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/_yield_only.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/_yield_with_params.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb +3 -0
- data/actionview/test/fixtures/actionpack/layouts/builder.builder +3 -0
- data/actionview/test/fixtures/actionpack/layouts/partial_with_layout.erb +3 -0
- data/actionview/test/fixtures/actionpack/layouts/standard.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/standard.text.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/streaming.erb +4 -0
- data/actionview/test/fixtures/actionpack/layouts/talk_from_action.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/with_html_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/layouts/xhr.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/yield.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/yield_with_render_inline_inside.erb +2 -0
- data/actionview/test/fixtures/actionpack/layouts/yield_with_render_partial_inside.erb +2 -0
- data/actionview/test/fixtures/actionpack/quiz/questions/_question.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/shared.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_changing_priority.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_changing_priority.json.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_counter.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_counter.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_counter_with_as.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_greeting.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_iteration.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_iteration_with_as.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_customer_with_var.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_directory/_partial_with_locales.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_first_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_form.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_hash_greeting.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_hash_object.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/_hello.builder +1 -0
- data/actionview/test/fixtures/actionpack/test/_json_change_priority.json.erb +0 -0
- data/actionview/test/fixtures/actionpack/test/_labelling_form.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_layout_for_partial.html.erb +3 -0
- data/actionview/test/fixtures/actionpack/test/_partial.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial.js.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_for_use_in_layout.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_html_erb.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_name_local_variable.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_only.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_only_html.html +1 -0
- data/actionview/test/fixtures/actionpack/test/_partial_with_partial.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/_person.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/_raise_indentation.html.erb +13 -0
- data/actionview/test/fixtures/actionpack/test/_second_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/action_talk_to_layout.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/calling_partial_with_layout.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/capturing.erb +4 -0
- data/actionview/test/fixtures/actionpack/test/change_priority.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/content_for.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/content_for_concatenated.erb +3 -0
- data/actionview/test/fixtures/actionpack/test/content_for_with_parameter.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_html_erb.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_xml_erb.builder +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_xml_erb.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/formatted_xml_erb.xml.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/greeting.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/greeting.xml.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello,world.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello.builder +4 -0
- data/actionview/test/fixtures/actionpack/test/hello/hello.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello_world.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_container.builder +3 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_from_rxml.builder +3 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_with_layout_false.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hello_world_with_partial.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/hello_xml_world.builder +11 -0
- data/actionview/test/fixtures/actionpack/test/html_template.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/hyphen-ated.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/implicit_content_type.atom.builder +2 -0
- data/actionview/test/fixtures/actionpack/test/list.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/non_erb_block_content_for.builder +4 -0
- data/actionview/test/fixtures/actionpack/test/potential_conflicts.erb +4 -0
- data/actionview/test/fixtures/actionpack/test/proper_block_detection.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_from_template.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_with_locals.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_file_with_locals_and_default.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_implicit_js_template_without_layout.js.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_partial_inside_directory.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_to_string_test.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/render_two_partials.html.erb +2 -0
- data/actionview/test/fixtures/actionpack/test/using_layout_around_block.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_html_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_partial.html.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_partial.text.erb +1 -0
- data/actionview/test/fixtures/actionpack/test/with_xml_template.html.erb +1 -0
- data/actionview/test/fixtures/comments/empty.de.html.erb +1 -0
- data/actionview/test/fixtures/comments/empty.html+grid.erb +1 -0
- data/actionview/test/fixtures/comments/empty.html.builder +1 -0
- data/actionview/test/fixtures/comments/empty.html.erb +1 -0
- data/actionview/test/fixtures/comments/empty.xml.erb +1 -0
- data/actionview/test/fixtures/companies.yml +24 -0
- data/actionview/test/fixtures/company.rb +11 -0
- data/actionview/test/fixtures/custom_pattern/another.html.erb +1 -0
- data/actionview/test/fixtures/custom_pattern/html/another.erb +1 -0
- data/actionview/test/fixtures/custom_pattern/html/path.erb +1 -0
- data/actionview/test/fixtures/customers/_customer.html.erb +1 -0
- data/actionview/test/fixtures/customers/_customer.xml.erb +1 -0
- data/actionview/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/actionview/test/fixtures/developer.rb +8 -0
- data/actionview/test/fixtures/developers.yml +21 -0
- data/actionview/test/fixtures/developers/_developer.erb +1 -0
- data/actionview/test/fixtures/developers_projects.yml +13 -0
- data/actionview/test/fixtures/digestor/api/comments/_comment.json.erb +1 -0
- data/actionview/test/fixtures/digestor/api/comments/_comments.json.erb +1 -0
- data/actionview/test/fixtures/digestor/comments/_comment.html.erb +1 -0
- data/actionview/test/fixtures/digestor/comments/_comments.html.erb +1 -0
- data/actionview/test/fixtures/digestor/events/_completed.html.erb +0 -0
- data/actionview/test/fixtures/digestor/events/_event.html.erb +0 -0
- data/actionview/test/fixtures/digestor/events/index.html.erb +1 -0
- data/actionview/test/fixtures/digestor/level/_recursion.html.erb +1 -0
- data/actionview/test/fixtures/digestor/level/below/_header.html.erb +0 -0
- data/actionview/test/fixtures/digestor/level/below/index.html.erb +1 -0
- data/actionview/test/fixtures/digestor/level/recursion.html.erb +1 -0
- data/actionview/test/fixtures/digestor/messages/_form.html.erb +0 -0
- data/actionview/test/fixtures/digestor/messages/_header.html.erb +0 -0
- data/actionview/test/fixtures/digestor/messages/_message.html.erb +1 -0
- data/actionview/test/fixtures/digestor/messages/actions/_move.html.erb +0 -0
- data/actionview/test/fixtures/digestor/messages/edit.html.erb +5 -0
- data/actionview/test/fixtures/digestor/messages/index.html.erb +2 -0
- data/actionview/test/fixtures/digestor/messages/new.html+iphone.erb +15 -0
- data/actionview/test/fixtures/digestor/messages/peek.html.erb +2 -0
- data/actionview/test/fixtures/digestor/messages/show.html.erb +14 -0
- data/actionview/test/fixtures/digestor/messages/thread.json.erb +1 -0
- data/actionview/test/fixtures/fun/games/_game.erb +1 -0
- data/actionview/test/fixtures/fun/games/hello_world.erb +1 -0
- data/actionview/test/fixtures/fun/serious/games/_game.erb +1 -0
- data/actionview/test/fixtures/games/_game.erb +1 -0
- data/actionview/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/actionview/test/fixtures/helpers/abc_helper.rb +5 -0
- data/actionview/test/fixtures/helpers/helpery_test_helper.rb +7 -0
- data/actionview/test/fixtures/helpers_missing/invalid_require_helper.rb +6 -0
- data/actionview/test/fixtures/layout_tests/alt/hello.erb +1 -0
- data/actionview/test/fixtures/layouts/_column.html.erb +2 -0
- data/actionview/test/fixtures/layouts/_customers.erb +1 -0
- data/actionview/test/fixtures/layouts/_partial_and_yield.erb +2 -0
- data/actionview/test/fixtures/layouts/_yield_only.erb +1 -0
- data/actionview/test/fixtures/layouts/_yield_with_params.erb +1 -0
- data/actionview/test/fixtures/layouts/render_partial_html.erb +2 -0
- data/actionview/test/fixtures/layouts/streaming.erb +4 -0
- data/actionview/test/fixtures/layouts/streaming_with_capture.erb +6 -0
- data/actionview/test/fixtures/layouts/yield.erb +2 -0
- data/actionview/test/fixtures/layouts/yield_with_render_inline_inside.erb +2 -0
- data/actionview/test/fixtures/layouts/yield_with_render_partial_inside.erb +2 -0
- data/actionview/test/fixtures/mascot.rb +5 -0
- data/actionview/test/fixtures/mascots.yml +4 -0
- data/actionview/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/actionview/test/fixtures/override/test/hello_world.erb +1 -0
- data/actionview/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/actionview/test/fixtures/plain_text.raw +1 -0
- data/actionview/test/fixtures/plain_text_with_characters.raw +1 -0
- data/actionview/test/fixtures/project.rb +9 -0
- data/actionview/test/fixtures/projects.yml +7 -0
- data/actionview/test/fixtures/projects/_project.erb +1 -0
- data/actionview/test/fixtures/public/.gitignore +1 -0
- data/actionview/test/fixtures/public/elsewhere/cools.js +1 -0
- data/actionview/test/fixtures/public/elsewhere/file.css +1 -0
- data/actionview/test/fixtures/public/foo/baz.css +3 -0
- data/actionview/test/fixtures/public/javascripts/application.js +1 -0
- data/actionview/test/fixtures/public/javascripts/bank.js +1 -0
- data/actionview/test/fixtures/public/javascripts/common.javascript +1 -0
- data/actionview/test/fixtures/public/javascripts/controls.js +1 -0
- data/actionview/test/fixtures/public/javascripts/dragdrop.js +1 -0
- data/actionview/test/fixtures/public/javascripts/effects.js +1 -0
- data/actionview/test/fixtures/public/javascripts/prototype.js +1 -0
- data/actionview/test/fixtures/public/javascripts/robber.js +1 -0
- data/actionview/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
- data/actionview/test/fixtures/public/javascripts/version.1.0.js +1 -0
- data/actionview/test/fixtures/public/stylesheets/bank.css +1 -0
- data/actionview/test/fixtures/public/stylesheets/random.styles +1 -0
- data/actionview/test/fixtures/public/stylesheets/robber.css +1 -0
- data/actionview/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
- data/actionview/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/actionview/test/fixtures/replies.yml +15 -0
- data/actionview/test/fixtures/replies/_reply.erb +1 -0
- data/actionview/test/fixtures/reply.rb +9 -0
- data/actionview/test/fixtures/respond_to/using_defaults_with_all.html.erb +1 -0
- data/actionview/test/fixtures/ruby_template.ruby +2 -0
- data/actionview/test/fixtures/shared.html.erb +1 -0
- data/actionview/test/fixtures/test/_200.html.erb +1 -0
- data/actionview/test/fixtures/test/_FooBar.html.erb +1 -0
- data/actionview/test/fixtures/test/_a-in.html.erb +0 -0
- data/actionview/test/fixtures/test/_b_layout_for_partial.html.erb +1 -0
- data/actionview/test/fixtures/test/_b_layout_for_partial_with_object.html.erb +1 -0
- data/actionview/test/fixtures/test/_b_layout_for_partial_with_object_counter.html.erb +1 -0
- data/actionview/test/fixtures/test/_builder_tag_nested_in_content_tag.erb +3 -0
- data/actionview/test/fixtures/test/_cached_customer.erb +3 -0
- data/actionview/test/fixtures/test/_cached_customer_as.erb +3 -0
- data/actionview/test/fixtures/test/_cached_nested_cached_customer.erb +3 -0
- data/actionview/test/fixtures/test/_changing_priority.html.erb +1 -0
- data/actionview/test/fixtures/test/_changing_priority.json.erb +1 -0
- data/actionview/test/fixtures/test/_content_tag_nested_in_content_tag.erb +3 -0
- data/actionview/test/fixtures/test/_counter.html.erb +1 -0
- data/actionview/test/fixtures/test/_customer.erb +1 -0
- data/actionview/test/fixtures/test/_customer.mobile.erb +1 -0
- data/actionview/test/fixtures/test/_customer_greeting.erb +1 -0
- data/actionview/test/fixtures/test/_customer_with_var.erb +1 -0
- data/actionview/test/fixtures/test/_directory/_partial_with_locales.html.erb +1 -0
- data/actionview/test/fixtures/test/_first_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/test/_from_helper.erb +1 -0
- data/actionview/test/fixtures/test/_json_change_priority.json.erb +0 -0
- data/actionview/test/fixtures/test/_klass.erb +1 -0
- data/actionview/test/fixtures/test/_label_with_block.erb +4 -0
- data/actionview/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
- data/actionview/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/actionview/test/fixtures/test/_layout_with_partial_and_yield.html.erb +4 -0
- data/actionview/test/fixtures/test/_local_inspector.html.erb +1 -0
- data/actionview/test/fixtures/test/_nested_cached_customer.erb +1 -0
- data/actionview/test/fixtures/test/_object_inspector.erb +1 -0
- data/actionview/test/fixtures/test/_one.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial.erb +1 -0
- data/actionview/test/fixtures/test/_partial.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial.js.erb +1 -0
- data/actionview/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial_iteration_1.erb +1 -0
- data/actionview/test/fixtures/test/_partial_iteration_2.erb +1 -0
- data/actionview/test/fixtures/test/_partial_name_in_local_assigns.erb +1 -0
- data/actionview/test/fixtures/test/_partial_name_local_variable.erb +1 -0
- data/actionview/test/fixtures/test/_partial_only.erb +1 -0
- data/actionview/test/fixtures/test/_partial_shortcut_with_block_content.html.erb +3 -0
- data/actionview/test/fixtures/test/_partial_with_layout.erb +2 -0
- data/actionview/test/fixtures/test/_partial_with_layout_block_content.erb +4 -0
- data/actionview/test/fixtures/test/_partial_with_layout_block_partial.erb +4 -0
- data/actionview/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
- data/actionview/test/fixtures/test/_partial_with_partial.erb +2 -0
- data/actionview/test/fixtures/test/_partial_with_variants.html+grid.erb +1 -0
- data/actionview/test/fixtures/test/_partialhtml.html +1 -0
- data/actionview/test/fixtures/test/_raise.html.erb +1 -0
- data/actionview/test/fixtures/test/_raise_indentation.html.erb +13 -0
- data/actionview/test/fixtures/test/_second_json_partial.json.erb +1 -0
- data/actionview/test/fixtures/test/_two.html.erb +1 -0
- data/actionview/test/fixtures/test/_utf8_partial.html.erb +1 -0
- data/actionview/test/fixtures/test/_utf8_partial_magic.html.erb +2 -0
- data/actionview/test/fixtures/test/_/360/237/215/243.erb +1 -0
- data/actionview/test/fixtures/test/basic.html.erb +1 -0
- data/actionview/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/actionview/test/fixtures/test/change_priority.html.erb +2 -0
- data/actionview/test/fixtures/test/dont_pick_me +1 -0
- data/actionview/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/test/greeting.xml.erb +1 -0
- data/actionview/test/fixtures/test/hello.builder +4 -0
- data/actionview/test/fixtures/test/hello/hello.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.da.html.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.erb~ +1 -0
- data/actionview/test/fixtures/test/hello_world.html+phone.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
- data/actionview/test/fixtures/test/hello_world.text+phone.erb +1 -0
- data/actionview/test/fixtures/test/hello_world_with_partial.html.erb +2 -0
- data/actionview/test/fixtures/test/html_template.html.erb +1 -0
- data/actionview/test/fixtures/test/layout_render_file.erb +2 -0
- data/actionview/test/fixtures/test/layout_render_object.erb +1 -0
- data/actionview/test/fixtures/test/list.erb +1 -0
- data/actionview/test/fixtures/test/malformed/malformed.en.html.erb~ +1 -0
- data/actionview/test/fixtures/test/malformed/malformed.erb~ +1 -0
- data/actionview/test/fixtures/test/malformed/malformed.html.erb~ +1 -0
- data/actionview/test/fixtures/test/malformed/malformed~ +1 -0
- data/actionview/test/fixtures/test/nested_layout.erb +3 -0
- data/actionview/test/fixtures/test/nested_streaming.erb +3 -0
- data/actionview/test/fixtures/test/nil_return.erb +1 -0
- data/actionview/test/fixtures/test/one.html.erb +1 -0
- data/actionview/test/fixtures/test/render_file_inspect_local_assigns.erb +1 -0
- data/actionview/test/fixtures/test/render_file_instance_variable.erb +1 -0
- data/actionview/test/fixtures/test/render_file_unicode_local.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_locals_and_default.erb +1 -0
- data/actionview/test/fixtures/test/render_file_with_ruby_keyword_locals.erb +1 -0
- data/actionview/test/fixtures/test/render_partial_inside_directory.html.erb +1 -0
- data/actionview/test/fixtures/test/render_two_partials.html.erb +2 -0
- data/actionview/test/fixtures/test/streaming.erb +3 -0
- data/actionview/test/fixtures/test/streaming_buster.erb +3 -0
- data/actionview/test/fixtures/test/sub_template_raise.html.erb +1 -0
- data/actionview/test/fixtures/test/template.erb +1 -0
- data/actionview/test/fixtures/test/test_template_with_delegation_reserved_keywords.erb +1 -0
- data/actionview/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/actionview/test/fixtures/test/utf8.html.erb +4 -0
- data/actionview/test/fixtures/test/utf8_magic.html.erb +5 -0
- data/actionview/test/fixtures/test/utf8_magic_with_bare_partial.html.erb +5 -0
- data/actionview/test/fixtures/topic.rb +5 -0
- data/actionview/test/fixtures/topics.yml +22 -0
- data/actionview/test/fixtures/topics/_topic.html.erb +1 -0
- data/actionview/test/fixtures/translations/templates/array.erb +1 -0
- data/actionview/test/fixtures/translations/templates/default.erb +1 -0
- data/actionview/test/fixtures/translations/templates/found.erb +1 -0
- data/actionview/test/fixtures/translations/templates/missing.erb +1 -0
- data/actionview/test/fixtures/with_format.json.erb +1 -0
- data/actionview/test/lib/controller/fake_models.rb +204 -0
- data/actionview/test/template/active_model_helper_test.rb +100 -0
- data/actionview/test/template/asset_tag_helper_test.rb +831 -0
- data/actionview/test/template/atom_feed_helper_test.rb +375 -0
- data/actionview/test/template/capture_helper_test.rb +228 -0
- data/actionview/test/template/compiled_templates_test.rb +94 -0
- data/actionview/test/template/controller_helper_test.rb +34 -0
- data/actionview/test/template/date_helper_i18n_test.rb +166 -0
- data/actionview/test/template/date_helper_test.rb +3642 -0
- data/actionview/test/template/dependency_tracker_test.rb +195 -0
- data/actionview/test/template/digestor_test.rb +388 -0
- data/actionview/test/template/erb/deprecated_erubis_implementation_test.rb +15 -0
- data/actionview/test/template/erb/form_for_test.rb +13 -0
- data/actionview/test/template/erb/helper.rb +26 -0
- data/actionview/test/template/erb/tag_helper_test.rb +32 -0
- data/actionview/test/template/erb_util_test.rb +114 -0
- data/actionview/test/template/form_collections_helper_test.rb +527 -0
- data/actionview/test/template/form_helper/form_with_test.rb +2239 -0
- data/actionview/test/template/form_helper_test.rb +3522 -0
- data/actionview/test/template/form_options_helper_i18n_test.rb +30 -0
- data/actionview/test/template/form_options_helper_test.rb +1417 -0
- data/actionview/test/template/form_tag_helper_test.rb +785 -0
- data/actionview/test/template/html_test.rb +19 -0
- data/actionview/test/template/javascript_helper_test.rb +64 -0
- data/actionview/test/template/log_subscriber_test.rb +224 -0
- data/actionview/test/template/lookup_context_test.rb +289 -0
- data/actionview/test/template/number_helper_test.rb +204 -0
- data/actionview/test/template/output_safety_helper_test.rb +119 -0
- data/actionview/test/template/partial_iteration_test.rb +35 -0
- data/actionview/test/template/record_identifier_test.rb +93 -0
- data/actionview/test/template/record_tag_helper_test.rb +33 -0
- data/actionview/test/template/render_test.rb +725 -0
- data/actionview/test/template/resolver_cache_test.rb +9 -0
- data/actionview/test/template/resolver_patterns_test.rb +44 -0
- data/actionview/test/template/sanitize_helper_test.rb +43 -0
- data/actionview/test/template/streaming_render_test.rb +113 -0
- data/actionview/test/template/tag_helper_test.rb +357 -0
- data/actionview/test/template/template_error_test.rb +37 -0
- data/actionview/test/template/template_test.rb +207 -0
- data/actionview/test/template/test_case_test.rb +335 -0
- data/actionview/test/template/test_test.rb +94 -0
- data/actionview/test/template/testing/fixture_resolver_test.rb +20 -0
- data/actionview/test/template/testing/null_resolver_test.rb +14 -0
- data/actionview/test/template/text_helper_test.rb +535 -0
- data/actionview/test/template/text_test.rb +25 -0
- data/actionview/test/template/translation_helper_test.rb +238 -0
- data/actionview/test/template/url_helper_test.rb +969 -0
- data/actionview/test/ujs/.gitignore +1 -0
- data/actionview/test/ujs/config.ru +6 -0
- data/actionview/test/ujs/public/test/.eslintrc.yml +21 -0
- data/actionview/test/ujs/public/test/call-remote-callbacks.js +273 -0
- data/actionview/test/ujs/public/test/call-remote.js +275 -0
- data/actionview/test/ujs/public/test/csrf-refresh.js +24 -0
- data/actionview/test/ujs/public/test/csrf-token.js +27 -0
- data/actionview/test/ujs/public/test/data-confirm.js +316 -0
- data/actionview/test/ujs/public/test/data-disable-with.js +391 -0
- data/actionview/test/ujs/public/test/data-disable.js +321 -0
- data/actionview/test/ujs/public/test/data-method.js +85 -0
- data/actionview/test/ujs/public/test/data-remote.js +438 -0
- data/actionview/test/ujs/public/test/override.js +56 -0
- data/actionview/test/ujs/public/test/settings.js +116 -0
- data/actionview/test/ujs/public/vendor/jquery-2.2.0.js +9831 -0
- data/actionview/test/ujs/public/vendor/jquery.metadata.js +122 -0
- data/actionview/test/ujs/public/vendor/qunit.css +237 -0
- data/actionview/test/ujs/public/vendor/qunit.js +2288 -0
- data/actionview/test/ujs/server.rb +74 -0
- data/actionview/test/ujs/views/layouts/application.html.erb +25 -0
- data/actionview/test/ujs/views/tests/index.html.erb +11 -0
- data/activejob/CHANGELOG.md +8 -0
- data/activejob/MIT-LICENSE +21 -0
- data/activejob/README.md +126 -0
- data/activejob/Rakefile +79 -0
- data/activejob/activejob.gemspec +30 -0
- data/activejob/bin/test +5 -0
- data/activejob/lib/active_job.rb +39 -0
- data/activejob/lib/active_job/arguments.rb +156 -0
- data/activejob/lib/active_job/base.rb +74 -0
- data/activejob/lib/active_job/callbacks.rb +155 -0
- data/activejob/lib/active_job/configured_job.rb +18 -0
- data/activejob/lib/active_job/core.rb +140 -0
- data/activejob/lib/active_job/enqueuing.rb +59 -0
- data/activejob/lib/active_job/exceptions.rb +124 -0
- data/activejob/lib/active_job/execution.rb +49 -0
- data/activejob/lib/active_job/gem_version.rb +17 -0
- data/activejob/lib/active_job/logging.rb +130 -0
- data/activejob/lib/active_job/queue_adapter.rb +66 -0
- data/activejob/lib/active_job/queue_adapters.rb +139 -0
- data/activejob/lib/active_job/queue_adapters/async_adapter.rb +116 -0
- data/activejob/lib/active_job/queue_adapters/backburner_adapter.rb +36 -0
- data/activejob/lib/active_job/queue_adapters/delayed_job_adapter.rb +43 -0
- data/activejob/lib/active_job/queue_adapters/inline_adapter.rb +23 -0
- data/activejob/lib/active_job/queue_adapters/qu_adapter.rb +46 -0
- data/activejob/lib/active_job/queue_adapters/que_adapter.rb +39 -0
- data/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb +58 -0
- data/activejob/lib/active_job/queue_adapters/resque_adapter.rb +53 -0
- data/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb +47 -0
- data/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb +48 -0
- data/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb +49 -0
- data/activejob/lib/active_job/queue_adapters/test_adapter.rb +67 -0
- data/activejob/lib/active_job/queue_name.rb +49 -0
- data/activejob/lib/active_job/queue_priority.rb +43 -0
- data/activejob/lib/active_job/railtie.rb +34 -0
- data/activejob/lib/active_job/test_case.rb +11 -0
- data/activejob/lib/active_job/test_helper.rb +448 -0
- data/activejob/lib/active_job/translation.rb +13 -0
- data/activejob/lib/active_job/version.rb +10 -0
- data/activejob/lib/rails/generators/job/job_generator.rb +40 -0
- data/activejob/lib/rails/generators/job/templates/application_job.rb +9 -0
- data/activejob/lib/rails/generators/job/templates/job.rb +9 -0
- data/activejob/test/adapters/async.rb +4 -0
- data/activejob/test/adapters/backburner.rb +5 -0
- data/activejob/test/adapters/delayed_job.rb +8 -0
- data/activejob/test/adapters/inline.rb +3 -0
- data/activejob/test/adapters/qu.rb +5 -0
- data/activejob/test/adapters/que.rb +6 -0
- data/activejob/test/adapters/queue_classic.rb +4 -0
- data/activejob/test/adapters/resque.rb +4 -0
- data/activejob/test/adapters/sidekiq.rb +4 -0
- data/activejob/test/adapters/sneakers.rb +4 -0
- data/activejob/test/adapters/sucker_punch.rb +4 -0
- data/activejob/test/adapters/test.rb +5 -0
- data/activejob/test/cases/adapter_test.rb +9 -0
- data/activejob/test/cases/argument_serialization_test.rb +113 -0
- data/activejob/test/cases/callbacks_test.rb +25 -0
- data/activejob/test/cases/exceptions_test.rb +109 -0
- data/activejob/test/cases/job_serialization_test.rb +57 -0
- data/activejob/test/cases/logging_test.rb +137 -0
- data/activejob/test/cases/queue_adapter_test.rb +51 -0
- data/activejob/test/cases/queue_naming_test.rb +104 -0
- data/activejob/test/cases/queue_priority_test.rb +49 -0
- data/activejob/test/cases/queuing_test.rb +44 -0
- data/activejob/test/cases/rescue_test.rb +36 -0
- data/activejob/test/cases/test_case_test.rb +25 -0
- data/activejob/test/cases/test_helper_test.rb +929 -0
- data/activejob/test/cases/translation_test.rb +22 -0
- data/activejob/test/helper.rb +18 -0
- data/activejob/test/integration/queuing_test.rb +117 -0
- data/activejob/test/jobs/application_job.rb +4 -0
- data/activejob/test/jobs/callback_job.rb +29 -0
- data/activejob/test/jobs/gid_job.rb +9 -0
- data/activejob/test/jobs/hello_job.rb +9 -0
- data/activejob/test/jobs/inherited_job.rb +7 -0
- data/activejob/test/jobs/kwargs_job.rb +9 -0
- data/activejob/test/jobs/logging_job.rb +11 -0
- data/activejob/test/jobs/nested_job.rb +11 -0
- data/activejob/test/jobs/overridden_logging_job.rb +11 -0
- data/activejob/test/jobs/provider_jid_job.rb +9 -0
- data/activejob/test/jobs/queue_adapter_job.rb +5 -0
- data/activejob/test/jobs/queue_as_job.rb +12 -0
- data/activejob/test/jobs/rescue_job.rb +29 -0
- data/activejob/test/jobs/retry_job.rb +31 -0
- data/activejob/test/jobs/translated_hello_job.rb +12 -0
- data/activejob/test/models/person.rb +22 -0
- data/activejob/test/support/backburner/inline.rb +10 -0
- data/activejob/test/support/delayed_job/delayed/backend/test.rb +112 -0
- data/activejob/test/support/delayed_job/delayed/serialization/test.rb +0 -0
- data/activejob/test/support/integration/adapters/async.rb +12 -0
- data/activejob/test/support/integration/adapters/backburner.rb +39 -0
- data/activejob/test/support/integration/adapters/delayed_job.rb +23 -0
- data/activejob/test/support/integration/adapters/inline.rb +16 -0
- data/activejob/test/support/integration/adapters/qu.rb +40 -0
- data/activejob/test/support/integration/adapters/que.rb +41 -0
- data/activejob/test/support/integration/adapters/queue_classic.rb +39 -0
- data/activejob/test/support/integration/adapters/resque.rb +51 -0
- data/activejob/test/support/integration/adapters/sidekiq.rb +104 -0
- data/activejob/test/support/integration/adapters/sneakers.rb +90 -0
- data/activejob/test/support/integration/adapters/sucker_punch.rb +8 -0
- data/activejob/test/support/integration/dummy_app_template.rb +32 -0
- data/activejob/test/support/integration/helper.rb +33 -0
- data/activejob/test/support/integration/jobs_manager.rb +29 -0
- data/activejob/test/support/integration/test_case_helpers.rb +65 -0
- data/activejob/test/support/job_buffer.rb +21 -0
- data/activejob/test/support/que/inline.rb +16 -0
- data/activejob/test/support/queue_classic/inline.rb +25 -0
- data/activejob/test/support/sneakers/inline.rb +14 -0
- data/activemodel/CHANGELOG.md +41 -0
- data/activemodel/MIT-LICENSE +21 -0
- data/activemodel/README.rdoc +264 -0
- data/activemodel/Rakefile +23 -0
- data/activemodel/activemodel.gemspec +29 -0
- data/activemodel/bin/test +5 -0
- data/activemodel/lib/active_model.rb +74 -0
- data/activemodel/lib/active_model/attribute_assignment.rb +55 -0
- data/activemodel/lib/active_model/attribute_methods.rb +478 -0
- data/activemodel/lib/active_model/callbacks.rb +153 -0
- data/activemodel/lib/active_model/conversion.rb +111 -0
- data/activemodel/lib/active_model/dirty.rb +274 -0
- data/activemodel/lib/active_model/errors.rb +513 -0
- data/activemodel/lib/active_model/forbidden_attributes_protection.rb +31 -0
- data/activemodel/lib/active_model/gem_version.rb +17 -0
- data/activemodel/lib/active_model/lint.rb +118 -0
- data/activemodel/lib/active_model/locale/en.yml +36 -0
- data/activemodel/lib/active_model/model.rb +99 -0
- data/activemodel/lib/active_model/naming.rb +318 -0
- data/activemodel/lib/active_model/railtie.rb +14 -0
- data/activemodel/lib/active_model/secure_password.rb +129 -0
- data/activemodel/lib/active_model/serialization.rb +192 -0
- data/activemodel/lib/active_model/serializers/json.rb +146 -0
- data/activemodel/lib/active_model/translation.rb +70 -0
- data/activemodel/lib/active_model/type.rb +49 -0
- data/activemodel/lib/active_model/type/big_integer.rb +15 -0
- data/activemodel/lib/active_model/type/binary.rb +52 -0
- data/activemodel/lib/active_model/type/boolean.rb +34 -0
- data/activemodel/lib/active_model/type/date.rb +56 -0
- data/activemodel/lib/active_model/type/date_time.rb +50 -0
- data/activemodel/lib/active_model/type/decimal.rb +70 -0
- data/activemodel/lib/active_model/type/float.rb +36 -0
- data/activemodel/lib/active_model/type/helpers.rb +6 -0
- data/activemodel/lib/active_model/type/helpers/accepts_multiparameter_time.rb +41 -0
- data/activemodel/lib/active_model/type/helpers/mutable.rb +20 -0
- data/activemodel/lib/active_model/type/helpers/numeric.rb +37 -0
- data/activemodel/lib/active_model/type/helpers/time_value.rb +79 -0
- data/activemodel/lib/active_model/type/immutable_string.rb +32 -0
- data/activemodel/lib/active_model/type/integer.rb +70 -0
- data/activemodel/lib/active_model/type/registry.rb +70 -0
- data/activemodel/lib/active_model/type/string.rb +26 -0
- data/activemodel/lib/active_model/type/time.rb +48 -0
- data/activemodel/lib/active_model/type/value.rb +122 -0
- data/activemodel/lib/active_model/validations.rb +439 -0
- data/activemodel/lib/active_model/validations/absence.rb +33 -0
- data/activemodel/lib/active_model/validations/acceptance.rb +106 -0
- data/activemodel/lib/active_model/validations/callbacks.rb +116 -0
- data/activemodel/lib/active_model/validations/clusivity.rb +54 -0
- data/activemodel/lib/active_model/validations/confirmation.rb +80 -0
- data/activemodel/lib/active_model/validations/exclusion.rb +49 -0
- data/activemodel/lib/active_model/validations/format.rb +114 -0
- data/activemodel/lib/active_model/validations/helper_methods.rb +15 -0
- data/activemodel/lib/active_model/validations/inclusion.rb +47 -0
- data/activemodel/lib/active_model/validations/length.rb +123 -0
- data/activemodel/lib/active_model/validations/numericality.rb +165 -0
- data/activemodel/lib/active_model/validations/presence.rb +39 -0
- data/activemodel/lib/active_model/validations/validates.rb +174 -0
- data/activemodel/lib/active_model/validations/with.rb +147 -0
- data/activemodel/lib/active_model/validator.rb +183 -0
- data/activemodel/lib/active_model/version.rb +10 -0
- data/activemodel/test/cases/attribute_assignment_test.rb +131 -0
- data/activemodel/test/cases/attribute_methods_test.rb +283 -0
- data/activemodel/test/cases/callbacks_test.rb +134 -0
- data/activemodel/test/cases/conversion_test.rb +52 -0
- data/activemodel/test/cases/dirty_test.rb +222 -0
- data/activemodel/test/cases/errors_test.rb +420 -0
- data/activemodel/test/cases/forbidden_attributes_protection_test.rb +44 -0
- data/activemodel/test/cases/helper.rb +25 -0
- data/activemodel/test/cases/lint_test.rb +22 -0
- data/activemodel/test/cases/model_test.rb +79 -0
- data/activemodel/test/cases/naming_test.rb +282 -0
- data/activemodel/test/cases/railtie_test.rb +34 -0
- data/activemodel/test/cases/secure_password_test.rb +220 -0
- data/activemodel/test/cases/serialization_test.rb +177 -0
- data/activemodel/test/cases/serializers/json_serialization_test.rb +204 -0
- data/activemodel/test/cases/translation_test.rb +113 -0
- data/activemodel/test/cases/type/big_integer_test.rb +26 -0
- data/activemodel/test/cases/type/binary_test.rb +17 -0
- data/activemodel/test/cases/type/boolean_test.rb +41 -0
- data/activemodel/test/cases/type/date_test.rb +21 -0
- data/activemodel/test/cases/type/date_time_test.rb +40 -0
- data/activemodel/test/cases/type/decimal_test.rb +74 -0
- data/activemodel/test/cases/type/float_test.rb +32 -0
- data/activemodel/test/cases/type/immutable_string_test.rb +23 -0
- data/activemodel/test/cases/type/integer_test.rb +118 -0
- data/activemodel/test/cases/type/registry_test.rb +43 -0
- data/activemodel/test/cases/type/string_test.rb +39 -0
- data/activemodel/test/cases/type/time_test.rb +23 -0
- data/activemodel/test/cases/type/value_test.rb +16 -0
- data/activemodel/test/cases/validations/absence_validation_test.rb +69 -0
- data/activemodel/test/cases/validations/acceptance_validation_test.rb +88 -0
- data/activemodel/test/cases/validations/callbacks_test.rb +145 -0
- data/activemodel/test/cases/validations/conditional_validation_test.rb +149 -0
- data/activemodel/test/cases/validations/confirmation_validation_test.rb +121 -0
- data/activemodel/test/cases/validations/exclusion_validation_test.rb +109 -0
- data/activemodel/test/cases/validations/format_validation_test.rb +149 -0
- data/activemodel/test/cases/validations/i18n_generate_message_validation_test.rb +152 -0
- data/activemodel/test/cases/validations/i18n_validation_test.rb +344 -0
- data/activemodel/test/cases/validations/inclusion_validation_test.rb +161 -0
- data/activemodel/test/cases/validations/length_validation_test.rb +413 -0
- data/activemodel/test/cases/validations/numericality_validation_test.rb +305 -0
- data/activemodel/test/cases/validations/presence_validation_test.rb +107 -0
- data/activemodel/test/cases/validations/validates_test.rb +159 -0
- data/activemodel/test/cases/validations/validations_context_test.rb +70 -0
- data/activemodel/test/cases/validations/with_validation_test.rb +185 -0
- data/activemodel/test/cases/validations_test.rb +465 -0
- data/activemodel/test/models/account.rb +7 -0
- data/activemodel/test/models/blog_post.rb +11 -0
- data/activemodel/test/models/contact.rb +42 -0
- data/activemodel/test/models/custom_reader.rb +17 -0
- data/activemodel/test/models/helicopter.rb +9 -0
- data/activemodel/test/models/person.rb +19 -0
- data/activemodel/test/models/person_with_validator.rb +26 -0
- data/activemodel/test/models/reply.rb +34 -0
- data/activemodel/test/models/sheep.rb +5 -0
- data/activemodel/test/models/topic.rb +41 -0
- data/activemodel/test/models/track_back.rb +13 -0
- data/activemodel/test/models/user.rb +12 -0
- data/activemodel/test/models/visitor.rb +12 -0
- data/activemodel/test/validators/email_validator.rb +8 -0
- data/activemodel/test/validators/namespace/email_validator.rb +8 -0
- data/activerecord/CHANGELOG.md +242 -0
- data/activerecord/MIT-LICENSE +20 -0
- data/activerecord/README.rdoc +217 -0
- data/activerecord/RUNNING_UNIT_TESTS.rdoc +51 -0
- data/activerecord/Rakefile +142 -0
- data/activerecord/activerecord.gemspec +35 -0
- data/activerecord/bin/test +20 -0
- data/activerecord/examples/.gitignore +1 -0
- data/activerecord/examples/performance.rb +185 -0
- data/activerecord/examples/simple.rb +15 -0
- data/activerecord/lib/active_record.rb +183 -0
- data/activerecord/lib/active_record/aggregations.rb +284 -0
- data/activerecord/lib/active_record/association_relation.rb +40 -0
- data/activerecord/lib/active_record/associations.rb +1885 -0
- data/activerecord/lib/active_record/associations/alias_tracker.rb +94 -0
- data/activerecord/lib/active_record/associations/association.rb +284 -0
- data/activerecord/lib/active_record/associations/association_scope.rb +181 -0
- data/activerecord/lib/active_record/associations/belongs_to_association.rb +113 -0
- data/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +42 -0
- data/activerecord/lib/active_record/associations/builder/association.rb +145 -0
- data/activerecord/lib/active_record/associations/builder/belongs_to.rb +150 -0
- data/activerecord/lib/active_record/associations/builder/collection_association.rb +82 -0
- data/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb +135 -0
- data/activerecord/lib/active_record/associations/builder/has_many.rb +17 -0
- data/activerecord/lib/active_record/associations/builder/has_one.rb +30 -0
- data/activerecord/lib/active_record/associations/builder/singular_association.rb +42 -0
- data/activerecord/lib/active_record/associations/collection_association.rb +505 -0
- data/activerecord/lib/active_record/associations/collection_proxy.rb +1159 -0
- data/activerecord/lib/active_record/associations/foreign_association.rb +13 -0
- data/activerecord/lib/active_record/associations/has_many_association.rb +135 -0
- data/activerecord/lib/active_record/associations/has_many_through_association.rb +216 -0
- data/activerecord/lib/active_record/associations/has_one_association.rb +111 -0
- data/activerecord/lib/active_record/associations/has_one_through_association.rb +42 -0
- data/activerecord/lib/active_record/associations/join_dependency.rb +287 -0
- data/activerecord/lib/active_record/associations/join_dependency/join_association.rb +61 -0
- data/activerecord/lib/active_record/associations/join_dependency/join_base.rb +23 -0
- data/activerecord/lib/active_record/associations/join_dependency/join_part.rb +64 -0
- data/activerecord/lib/active_record/associations/preloader.rb +204 -0
- data/activerecord/lib/active_record/associations/preloader/association.rb +133 -0
- data/activerecord/lib/active_record/associations/preloader/belongs_to.rb +17 -0
- data/activerecord/lib/active_record/associations/preloader/collection_association.rb +19 -0
- data/activerecord/lib/active_record/associations/preloader/has_many.rb +17 -0
- data/activerecord/lib/active_record/associations/preloader/has_many_through.rb +21 -0
- data/activerecord/lib/active_record/associations/preloader/has_one.rb +17 -0
- data/activerecord/lib/active_record/associations/preloader/has_one_through.rb +11 -0
- data/activerecord/lib/active_record/associations/preloader/singular_association.rb +20 -0
- data/activerecord/lib/active_record/associations/preloader/through_association.rb +111 -0
- data/activerecord/lib/active_record/associations/singular_association.rb +79 -0
- data/activerecord/lib/active_record/associations/through_association.rb +108 -0
- data/activerecord/lib/active_record/attribute.rb +242 -0
- data/activerecord/lib/active_record/attribute/user_provided_default.rb +32 -0
- data/activerecord/lib/active_record/attribute_assignment.rb +93 -0
- data/activerecord/lib/active_record/attribute_decorators.rb +90 -0
- data/activerecord/lib/active_record/attribute_methods.rb +449 -0
- data/activerecord/lib/active_record/attribute_methods/before_type_cast.rb +78 -0
- data/activerecord/lib/active_record/attribute_methods/dirty.rb +251 -0
- data/activerecord/lib/active_record/attribute_methods/primary_key.rb +141 -0
- data/activerecord/lib/active_record/attribute_methods/query.rb +42 -0
- data/activerecord/lib/active_record/attribute_methods/read.rb +84 -0
- data/activerecord/lib/active_record/attribute_methods/serialization.rb +90 -0
- data/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb +91 -0
- data/activerecord/lib/active_record/attribute_methods/write.rb +67 -0
- data/activerecord/lib/active_record/attribute_mutation_tracker.rb +111 -0
- data/activerecord/lib/active_record/attribute_set.rb +113 -0
- data/activerecord/lib/active_record/attribute_set/builder.rb +126 -0
- data/activerecord/lib/active_record/attribute_set/yaml_encoder.rb +43 -0
- data/activerecord/lib/active_record/attributes.rb +266 -0
- data/activerecord/lib/active_record/autosave_association.rb +490 -0
- data/activerecord/lib/active_record/base.rb +329 -0
- data/activerecord/lib/active_record/callbacks.rb +349 -0
- data/activerecord/lib/active_record/coders/json.rb +15 -0
- data/activerecord/lib/active_record/coders/yaml_column.rb +50 -0
- data/activerecord/lib/active_record/collection_cache_key.rb +51 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +990 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/database_limits.rb +67 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +491 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +140 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +216 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_creation.rb +145 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +654 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb +95 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +1378 -0
- data/activerecord/lib/active_record/connection_adapters/abstract/transaction.rb +274 -0
- data/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +599 -0
- data/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +885 -0
- data/activerecord/lib/active_record/connection_adapters/column.rb +91 -0
- data/activerecord/lib/active_record/connection_adapters/connection_specification.rb +275 -0
- data/activerecord/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +24 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/database_statements.rb +97 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_definitions.rb +92 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_dumper.rb +73 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/schema_statements.rb +139 -0
- data/activerecord/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
- data/activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb +125 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/column.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/database_statements.rb +163 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid.rb +33 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/array.rb +82 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit.rb +56 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/range.rb +93 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +111 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +23 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb +152 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +51 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_creation.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +195 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +38 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb +678 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
- data/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +838 -0
- data/activerecord/lib/active_record/connection_adapters/schema_cache.rb +118 -0
- data/activerecord/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/quoting.rb +62 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +30 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +102 -0
- data/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +531 -0
- data/activerecord/lib/active_record/connection_adapters/statement_pool.rb +61 -0
- data/activerecord/lib/active_record/connection_handling.rb +145 -0
- data/activerecord/lib/active_record/core.rb +560 -0
- data/activerecord/lib/active_record/counter_cache.rb +214 -0
- data/activerecord/lib/active_record/define_callbacks.rb +22 -0
- data/activerecord/lib/active_record/dynamic_matchers.rb +122 -0
- data/activerecord/lib/active_record/enum.rb +241 -0
- data/activerecord/lib/active_record/errors.rb +342 -0
- data/activerecord/lib/active_record/explain.rb +50 -0
- data/activerecord/lib/active_record/explain_registry.rb +32 -0
- data/activerecord/lib/active_record/explain_subscriber.rb +34 -0
- data/activerecord/lib/active_record/fixture_set/file.rb +82 -0
- data/activerecord/lib/active_record/fixtures.rb +1074 -0
- data/activerecord/lib/active_record/gem_version.rb +17 -0
- data/activerecord/lib/active_record/inheritance.rb +254 -0
- data/activerecord/lib/active_record/integration.rb +155 -0
- data/activerecord/lib/active_record/internal_metadata.rb +45 -0
- data/activerecord/lib/active_record/legacy_yaml_adapter.rb +48 -0
- data/activerecord/lib/active_record/locale/en.yml +48 -0
- data/activerecord/lib/active_record/locking/optimistic.rb +212 -0
- data/activerecord/lib/active_record/locking/pessimistic.rb +88 -0
- data/activerecord/lib/active_record/log_subscriber.rb +96 -0
- data/activerecord/lib/active_record/migration.rb +1340 -0
- data/activerecord/lib/active_record/migration/command_recorder.rb +240 -0
- data/activerecord/lib/active_record/migration/compatibility.rb +170 -0
- data/activerecord/lib/active_record/migration/join_table.rb +17 -0
- data/activerecord/lib/active_record/model_schema.rb +515 -0
- data/activerecord/lib/active_record/nested_attributes.rb +589 -0
- data/activerecord/lib/active_record/no_touching.rb +58 -0
- data/activerecord/lib/active_record/null_relation.rb +68 -0
- data/activerecord/lib/active_record/persistence.rb +623 -0
- data/activerecord/lib/active_record/query_cache.rb +49 -0
- data/activerecord/lib/active_record/querying.rb +70 -0
- data/activerecord/lib/active_record/railtie.rb +214 -0
- data/activerecord/lib/active_record/railties/console_sandbox.rb +7 -0
- data/activerecord/lib/active_record/railties/controller_runtime.rb +56 -0
- data/activerecord/lib/active_record/railties/databases.rake +369 -0
- data/activerecord/lib/active_record/railties/jdbcmysql_error.rb +18 -0
- data/activerecord/lib/active_record/readonly_attributes.rb +24 -0
- data/activerecord/lib/active_record/reflection.rb +1102 -0
- data/activerecord/lib/active_record/relation.rb +730 -0
- data/activerecord/lib/active_record/relation/batches.rb +280 -0
- data/activerecord/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/activerecord/lib/active_record/relation/calculations.rb +407 -0
- data/activerecord/lib/active_record/relation/delegation.rb +113 -0
- data/activerecord/lib/active_record/relation/finder_methods.rb +566 -0
- data/activerecord/lib/active_record/relation/from_clause.rb +26 -0
- data/activerecord/lib/active_record/relation/merger.rb +168 -0
- data/activerecord/lib/active_record/relation/predicate_builder.rb +133 -0
- data/activerecord/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/activerecord/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
- data/activerecord/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
- data/activerecord/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
- data/activerecord/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +54 -0
- data/activerecord/lib/active_record/relation/predicate_builder/range_handler.rb +41 -0
- data/activerecord/lib/active_record/relation/predicate_builder/relation_handler.rb +15 -0
- data/activerecord/lib/active_record/relation/query_attribute.rb +26 -0
- data/activerecord/lib/active_record/relation/query_methods.rb +1194 -0
- data/activerecord/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/activerecord/lib/active_record/relation/spawn_methods.rb +77 -0
- data/activerecord/lib/active_record/relation/where_clause.rb +172 -0
- data/activerecord/lib/active_record/relation/where_clause_factory.rb +35 -0
- data/activerecord/lib/active_record/result.rb +149 -0
- data/activerecord/lib/active_record/runtime_registry.rb +24 -0
- data/activerecord/lib/active_record/sanitization.rb +216 -0
- data/activerecord/lib/active_record/schema.rb +70 -0
- data/activerecord/lib/active_record/schema_dumper.rb +254 -0
- data/activerecord/lib/active_record/schema_migration.rb +56 -0
- data/activerecord/lib/active_record/scoping.rb +106 -0
- data/activerecord/lib/active_record/scoping/default.rb +152 -0
- data/activerecord/lib/active_record/scoping/named.rb +199 -0
- data/activerecord/lib/active_record/secure_token.rb +40 -0
- data/activerecord/lib/active_record/serialization.rb +22 -0
- data/activerecord/lib/active_record/statement_cache.rb +121 -0
- data/activerecord/lib/active_record/store.rb +211 -0
- data/activerecord/lib/active_record/suppressor.rb +61 -0
- data/activerecord/lib/active_record/table_metadata.rb +75 -0
- data/activerecord/lib/active_record/tasks/database_tasks.rb +327 -0
- data/activerecord/lib/active_record/tasks/mysql_database_tasks.rb +162 -0
- data/activerecord/lib/active_record/tasks/postgresql_database_tasks.rb +143 -0
- data/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb +83 -0
- data/activerecord/lib/active_record/timestamp.rb +146 -0
- data/activerecord/lib/active_record/touch_later.rb +64 -0
- data/activerecord/lib/active_record/transactions.rb +499 -0
- data/activerecord/lib/active_record/translation.rb +24 -0
- data/activerecord/lib/active_record/type.rb +79 -0
- data/activerecord/lib/active_record/type/adapter_specific_registry.rb +136 -0
- data/activerecord/lib/active_record/type/date.rb +9 -0
- data/activerecord/lib/active_record/type/date_time.rb +9 -0
- data/activerecord/lib/active_record/type/decimal_without_scale.rb +15 -0
- data/activerecord/lib/active_record/type/hash_lookup_type_map.rb +25 -0
- data/activerecord/lib/active_record/type/internal/timezone.rb +17 -0
- data/activerecord/lib/active_record/type/json.rb +30 -0
- data/activerecord/lib/active_record/type/serialized.rb +67 -0
- data/activerecord/lib/active_record/type/text.rb +11 -0
- data/activerecord/lib/active_record/type/time.rb +21 -0
- data/activerecord/lib/active_record/type/type_map.rb +62 -0
- data/activerecord/lib/active_record/type/unsigned_integer.rb +17 -0
- data/activerecord/lib/active_record/type_caster.rb +9 -0
- data/activerecord/lib/active_record/type_caster/connection.rb +33 -0
- data/activerecord/lib/active_record/type_caster/map.rb +23 -0
- data/activerecord/lib/active_record/validations.rb +93 -0
- data/activerecord/lib/active_record/validations/absence.rb +25 -0
- data/activerecord/lib/active_record/validations/associated.rb +60 -0
- data/activerecord/lib/active_record/validations/length.rb +26 -0
- data/activerecord/lib/active_record/validations/presence.rb +68 -0
- data/activerecord/lib/active_record/validations/uniqueness.rb +240 -0
- data/activerecord/lib/active_record/version.rb +10 -0
- data/activerecord/lib/rails/generators/active_record.rb +19 -0
- data/activerecord/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
- data/activerecord/lib/rails/generators/active_record/application_record/templates/application_record.rb +5 -0
- data/activerecord/lib/rails/generators/active_record/migration.rb +35 -0
- data/activerecord/lib/rails/generators/active_record/migration/migration_generator.rb +78 -0
- data/activerecord/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +24 -0
- data/activerecord/lib/rails/generators/active_record/migration/templates/migration.rb +46 -0
- data/activerecord/lib/rails/generators/active_record/model/model_generator.rb +48 -0
- data/activerecord/lib/rails/generators/active_record/model/templates/model.rb +13 -0
- data/activerecord/lib/rails/generators/active_record/model/templates/module.rb +7 -0
- data/activerecord/test/.gitignore +1 -0
- data/activerecord/test/active_record/connection_adapters/fake_adapter.rb +51 -0
- data/activerecord/test/assets/example.log +1 -0
- data/activerecord/test/assets/flowers.jpg +0 -0
- data/activerecord/test/assets/schema_dump_5_1.yml +345 -0
- data/activerecord/test/assets/test.txt +1 -0
- data/activerecord/test/cases/adapter_test.rb +404 -0
- data/activerecord/test/cases/adapters/mysql2/active_schema_test.rb +195 -0
- data/activerecord/test/cases/adapters/mysql2/bind_parameter_test.rb +52 -0
- data/activerecord/test/cases/adapters/mysql2/boolean_test.rb +102 -0
- data/activerecord/test/cases/adapters/mysql2/case_sensitivity_test.rb +65 -0
- data/activerecord/test/cases/adapters/mysql2/charset_collation_test.rb +56 -0
- data/activerecord/test/cases/adapters/mysql2/connection_test.rb +225 -0
- data/activerecord/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +54 -0
- data/activerecord/test/cases/adapters/mysql2/enum_test.rb +23 -0
- data/activerecord/test/cases/adapters/mysql2/explain_test.rb +23 -0
- data/activerecord/test/cases/adapters/mysql2/json_test.rb +24 -0
- data/activerecord/test/cases/adapters/mysql2/mysql2_adapter_test.rb +77 -0
- data/activerecord/test/cases/adapters/mysql2/schema_migrations_test.rb +65 -0
- data/activerecord/test/cases/adapters/mysql2/schema_test.rb +128 -0
- data/activerecord/test/cases/adapters/mysql2/sp_test.rb +38 -0
- data/activerecord/test/cases/adapters/mysql2/sql_types_test.rb +16 -0
- data/activerecord/test/cases/adapters/mysql2/table_options_test.rb +44 -0
- data/activerecord/test/cases/adapters/mysql2/transaction_test.rb +69 -0
- data/activerecord/test/cases/adapters/mysql2/unsigned_type_test.rb +68 -0
- data/activerecord/test/cases/adapters/mysql2/virtual_column_test.rb +61 -0
- data/activerecord/test/cases/adapters/postgresql/active_schema_test.rb +100 -0
- data/activerecord/test/cases/adapters/postgresql/array_test.rb +388 -0
- data/activerecord/test/cases/adapters/postgresql/bit_string_test.rb +84 -0
- data/activerecord/test/cases/adapters/postgresql/bytea_test.rb +137 -0
- data/activerecord/test/cases/adapters/postgresql/case_insensitive_test.rb +28 -0
- data/activerecord/test/cases/adapters/postgresql/change_schema_test.rb +40 -0
- data/activerecord/test/cases/adapters/postgresql/cidr_test.rb +27 -0
- data/activerecord/test/cases/adapters/postgresql/citext_test.rb +80 -0
- data/activerecord/test/cases/adapters/postgresql/collation_test.rb +55 -0
- data/activerecord/test/cases/adapters/postgresql/composite_test.rb +134 -0
- data/activerecord/test/cases/adapters/postgresql/connection_test.rb +272 -0
- data/activerecord/test/cases/adapters/postgresql/datatype_test.rb +93 -0
- data/activerecord/test/cases/adapters/postgresql/domain_test.rb +49 -0
- data/activerecord/test/cases/adapters/postgresql/enum_test.rb +93 -0
- data/activerecord/test/cases/adapters/postgresql/explain_test.rb +22 -0
- data/activerecord/test/cases/adapters/postgresql/extension_migration_test.rb +65 -0
- data/activerecord/test/cases/adapters/postgresql/full_text_test.rb +46 -0
- data/activerecord/test/cases/adapters/postgresql/geometric_test.rb +373 -0
- data/activerecord/test/cases/adapters/postgresql/hstore_test.rb +380 -0
- data/activerecord/test/cases/adapters/postgresql/infinity_test.rb +71 -0
- data/activerecord/test/cases/adapters/postgresql/integer_test.rb +27 -0
- data/activerecord/test/cases/adapters/postgresql/json_test.rb +52 -0
- data/activerecord/test/cases/adapters/postgresql/ltree_test.rb +55 -0
- data/activerecord/test/cases/adapters/postgresql/money_test.rb +98 -0
- data/activerecord/test/cases/adapters/postgresql/network_test.rb +96 -0
- data/activerecord/test/cases/adapters/postgresql/numbers_test.rb +51 -0
- data/activerecord/test/cases/adapters/postgresql/postgresql_adapter_test.rb +390 -0
- data/activerecord/test/cases/adapters/postgresql/prepared_statements_disabled_test.rb +27 -0
- data/activerecord/test/cases/adapters/postgresql/quoting_test.rb +45 -0
- data/activerecord/test/cases/adapters/postgresql/range_test.rb +351 -0
- data/activerecord/test/cases/adapters/postgresql/referential_integrity_test.rb +113 -0
- data/activerecord/test/cases/adapters/postgresql/rename_table_test.rb +36 -0
- data/activerecord/test/cases/adapters/postgresql/schema_authorization_test.rb +110 -0
- data/activerecord/test/cases/adapters/postgresql/schema_test.rb +592 -0
- data/activerecord/test/cases/adapters/postgresql/serial_test.rb +88 -0
- data/activerecord/test/cases/adapters/postgresql/statement_pool_test.rb +43 -0
- data/activerecord/test/cases/adapters/postgresql/timestamp_test.rb +92 -0
- data/activerecord/test/cases/adapters/postgresql/transaction_test.rb +104 -0
- data/activerecord/test/cases/adapters/postgresql/type_lookup_test.rb +35 -0
- data/activerecord/test/cases/adapters/postgresql/utils_test.rb +64 -0
- data/activerecord/test/cases/adapters/postgresql/uuid_test.rb +376 -0
- data/activerecord/test/cases/adapters/postgresql/xml_test.rb +56 -0
- data/activerecord/test/cases/adapters/sqlite3/collation_test.rb +55 -0
- data/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb +101 -0
- data/activerecord/test/cases/adapters/sqlite3/explain_test.rb +23 -0
- data/activerecord/test/cases/adapters/sqlite3/quoting_test.rb +58 -0
- data/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +421 -0
- data/activerecord/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +26 -0
- data/activerecord/test/cases/adapters/sqlite3/statement_pool_test.rb +21 -0
- data/activerecord/test/cases/aggregations_test.rb +170 -0
- data/activerecord/test/cases/ar_schema_test.rb +145 -0
- data/activerecord/test/cases/associations/belongs_to_associations_test.rb +1196 -0
- data/activerecord/test/cases/associations/bidirectional_destroy_dependencies_test.rb +43 -0
- data/activerecord/test/cases/associations/callbacks_test.rb +191 -0
- data/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +184 -0
- data/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +44 -0
- data/activerecord/test/cases/associations/eager_load_nested_include_test.rb +126 -0
- data/activerecord/test/cases/associations/eager_singularization_test.rb +148 -0
- data/activerecord/test/cases/associations/eager_test.rb +1500 -0
- data/activerecord/test/cases/associations/extension_test.rb +94 -0
- data/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +1033 -0
- data/activerecord/test/cases/associations/has_many_associations_test.rb +2619 -0
- data/activerecord/test/cases/associations/has_many_through_associations_test.rb +1309 -0
- data/activerecord/test/cases/associations/has_one_associations_test.rb +727 -0
- data/activerecord/test/cases/associations/has_one_through_associations_test.rb +392 -0
- data/activerecord/test/cases/associations/inner_join_association_test.rb +141 -0
- data/activerecord/test/cases/associations/inverse_associations_test.rb +727 -0
- data/activerecord/test/cases/associations/join_model_test.rb +778 -0
- data/activerecord/test/cases/associations/left_outer_join_association_test.rb +90 -0
- data/activerecord/test/cases/associations/nested_through_associations_test.rb +581 -0
- data/activerecord/test/cases/associations/required_test.rb +132 -0
- data/activerecord/test/cases/associations_test.rb +370 -0
- data/activerecord/test/cases/attribute_decorators_test.rb +127 -0
- data/activerecord/test/cases/attribute_methods/read_test.rb +61 -0
- data/activerecord/test/cases/attribute_methods_test.rb +1038 -0
- data/activerecord/test/cases/attribute_set_test.rb +255 -0
- data/activerecord/test/cases/attribute_test.rb +255 -0
- data/activerecord/test/cases/attributes_test.rb +269 -0
- data/activerecord/test/cases/autosave_association_test.rb +1738 -0
- data/activerecord/test/cases/base_test.rb +1460 -0
- data/activerecord/test/cases/batches_test.rb +676 -0
- data/activerecord/test/cases/binary_test.rb +46 -0
- data/activerecord/test/cases/bind_parameter_test.rb +108 -0
- data/activerecord/test/cases/cache_key_test.rb +53 -0
- data/activerecord/test/cases/calculations_test.rb +894 -0
- data/activerecord/test/cases/callbacks_test.rb +479 -0
- data/activerecord/test/cases/clone_test.rb +42 -0
- data/activerecord/test/cases/coders/json_test.rb +17 -0
- data/activerecord/test/cases/coders/yaml_column_test.rb +66 -0
- data/activerecord/test/cases/collection_cache_key_test.rb +117 -0
- data/activerecord/test/cases/column_alias_test.rb +19 -0
- data/activerecord/test/cases/column_definition_test.rb +34 -0
- data/activerecord/test/cases/comment_test.rb +146 -0
- data/activerecord/test/cases/connection_adapters/adapter_leasing_test.rb +58 -0
- data/activerecord/test/cases/connection_adapters/connection_handler_test.rb +232 -0
- data/activerecord/test/cases/connection_adapters/connection_specification_test.rb +14 -0
- data/activerecord/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +257 -0
- data/activerecord/test/cases/connection_adapters/mysql_type_lookup_test.rb +78 -0
- data/activerecord/test/cases/connection_adapters/schema_cache_test.rb +101 -0
- data/activerecord/test/cases/connection_adapters/type_lookup_test.rb +120 -0
- data/activerecord/test/cases/connection_management_test.rb +114 -0
- data/activerecord/test/cases/connection_pool_test.rb +569 -0
- data/activerecord/test/cases/connection_specification/resolver_test.rb +137 -0
- data/activerecord/test/cases/core_test.rb +114 -0
- data/activerecord/test/cases/counter_cache_test.rb +367 -0
- data/activerecord/test/cases/custom_locking_test.rb +19 -0
- data/activerecord/test/cases/database_statements_test.rb +37 -0
- data/activerecord/test/cases/date_test.rb +46 -0
- data/activerecord/test/cases/date_time_precision_test.rb +89 -0
- data/activerecord/test/cases/date_time_test.rb +76 -0
- data/activerecord/test/cases/defaults_test.rb +209 -0
- data/activerecord/test/cases/dirty_test.rb +871 -0
- data/activerecord/test/cases/disconnected_test.rb +32 -0
- data/activerecord/test/cases/dup_test.rb +161 -0
- data/activerecord/test/cases/enum_test.rb +493 -0
- data/activerecord/test/cases/errors_test.rb +18 -0
- data/activerecord/test/cases/explain_subscriber_test.rb +66 -0
- data/activerecord/test/cases/explain_test.rb +89 -0
- data/activerecord/test/cases/finder_respond_to_test.rb +61 -0
- data/activerecord/test/cases/finder_test.rb +1282 -0
- data/activerecord/test/cases/fixture_set/file_test.rb +158 -0
- data/activerecord/test/cases/fixtures_test.rb +1096 -0
- data/activerecord/test/cases/forbidden_attributes_protection_test.rb +166 -0
- data/activerecord/test/cases/habtm_destroy_order_test.rb +63 -0
- data/activerecord/test/cases/helper.rb +187 -0
- data/activerecord/test/cases/hot_compatibility_test.rb +144 -0
- data/activerecord/test/cases/i18n_test.rb +46 -0
- data/activerecord/test/cases/inheritance_test.rb +613 -0
- data/activerecord/test/cases/integration_test.rb +234 -0
- data/activerecord/test/cases/invalid_connection_test.rb +26 -0
- data/activerecord/test/cases/invertible_migration_test.rb +380 -0
- data/activerecord/test/cases/json_attribute_test.rb +35 -0
- data/activerecord/test/cases/json_serialization_test.rb +311 -0
- data/activerecord/test/cases/json_shared_test_cases.rb +256 -0
- data/activerecord/test/cases/locking_test.rb +651 -0
- data/activerecord/test/cases/log_subscriber_test.rb +219 -0
- data/activerecord/test/cases/migration/change_schema_test.rb +468 -0
- data/activerecord/test/cases/migration/change_table_test.rb +258 -0
- data/activerecord/test/cases/migration/column_attributes_test.rb +188 -0
- data/activerecord/test/cases/migration/column_positioning_test.rb +58 -0
- data/activerecord/test/cases/migration/columns_test.rb +319 -0
- data/activerecord/test/cases/migration/command_recorder_test.rb +347 -0
- data/activerecord/test/cases/migration/compatibility_test.rb +238 -0
- data/activerecord/test/cases/migration/create_join_table_test.rb +168 -0
- data/activerecord/test/cases/migration/foreign_key_test.rb +339 -0
- data/activerecord/test/cases/migration/helper.rb +41 -0
- data/activerecord/test/cases/migration/index_test.rb +218 -0
- data/activerecord/test/cases/migration/logger_test.rb +38 -0
- data/activerecord/test/cases/migration/pending_migrations_test.rb +42 -0
- data/activerecord/test/cases/migration/references_foreign_key_test.rb +257 -0
- data/activerecord/test/cases/migration/references_index_test.rb +103 -0
- data/activerecord/test/cases/migration/references_statements_test.rb +138 -0
- data/activerecord/test/cases/migration/rename_table_test.rb +118 -0
- data/activerecord/test/cases/migration_test.rb +1122 -0
- data/activerecord/test/cases/migrator_test.rb +473 -0
- data/activerecord/test/cases/mixin_test.rb +64 -0
- data/activerecord/test/cases/modules_test.rb +174 -0
- data/activerecord/test/cases/multiparameter_attributes_test.rb +399 -0
- data/activerecord/test/cases/multiple_db_test.rb +119 -0
- data/activerecord/test/cases/nested_attributes_test.rb +1097 -0
- data/activerecord/test/cases/nested_attributes_with_callbacks_test.rb +146 -0
- data/activerecord/test/cases/null_relation_test.rb +84 -0
- data/activerecord/test/cases/numeric_data_test.rb +73 -0
- data/activerecord/test/cases/persistence_test.rb +1063 -0
- data/activerecord/test/cases/pooled_connections_test.rb +83 -0
- data/activerecord/test/cases/primary_keys_test.rb +466 -0
- data/activerecord/test/cases/query_cache_test.rb +577 -0
- data/activerecord/test/cases/quoting_test.rb +275 -0
- data/activerecord/test/cases/readonly_test.rb +120 -0
- data/activerecord/test/cases/reaper_test.rb +87 -0
- data/activerecord/test/cases/reflection_test.rb +533 -0
- data/activerecord/test/cases/relation/delegation_test.rb +57 -0
- data/activerecord/test/cases/relation/merging_test.rb +157 -0
- data/activerecord/test/cases/relation/mutation_test.rb +145 -0
- data/activerecord/test/cases/relation/or_test.rb +130 -0
- data/activerecord/test/cases/relation/predicate_builder_test.rb +18 -0
- data/activerecord/test/cases/relation/record_fetch_warning_test.rb +42 -0
- data/activerecord/test/cases/relation/where_chain_test.rb +107 -0
- data/activerecord/test/cases/relation/where_clause_test.rb +241 -0
- data/activerecord/test/cases/relation/where_test.rb +366 -0
- data/activerecord/test/cases/relation_test.rb +331 -0
- data/activerecord/test/cases/relations_test.rb +1923 -0
- data/activerecord/test/cases/reload_models_test.rb +26 -0
- data/activerecord/test/cases/reserved_word_test.rb +134 -0
- data/activerecord/test/cases/result_test.rb +90 -0
- data/activerecord/test/cases/sanitize_test.rb +182 -0
- data/activerecord/test/cases/schema_dumper_test.rb +507 -0
- data/activerecord/test/cases/schema_loading_test.rb +54 -0
- data/activerecord/test/cases/scoping/default_scoping_test.rb +547 -0
- data/activerecord/test/cases/scoping/named_scoping_test.rb +577 -0
- data/activerecord/test/cases/scoping/relation_scoping_test.rb +402 -0
- data/activerecord/test/cases/secure_token_test.rb +34 -0
- data/activerecord/test/cases/serialization_test.rb +106 -0
- data/activerecord/test/cases/serialized_attribute_test.rb +382 -0
- data/activerecord/test/cases/statement_cache_test.rb +137 -0
- data/activerecord/test/cases/store_test.rb +197 -0
- data/activerecord/test/cases/suppressor_test.rb +77 -0
- data/activerecord/test/cases/tasks/database_tasks_test.rb +491 -0
- data/activerecord/test/cases/tasks/mysql_rake_test.rb +388 -0
- data/activerecord/test/cases/tasks/postgresql_rake_test.rb +374 -0
- data/activerecord/test/cases/tasks/sqlite_rake_test.rb +267 -0
- data/activerecord/test/cases/test_case.rb +138 -0
- data/activerecord/test/cases/test_fixtures_test.rb +20 -0
- data/activerecord/test/cases/time_precision_test.rb +85 -0
- data/activerecord/test/cases/timestamp_test.rb +478 -0
- data/activerecord/test/cases/touch_later_test.rb +123 -0
- data/activerecord/test/cases/transaction_callbacks_test.rb +595 -0
- data/activerecord/test/cases/transaction_isolation_test.rb +108 -0
- data/activerecord/test/cases/transactions_test.rb +1030 -0
- data/activerecord/test/cases/type/adapter_specific_registry_test.rb +135 -0
- data/activerecord/test/cases/type/date_time_test.rb +16 -0
- data/activerecord/test/cases/type/integer_test.rb +29 -0
- data/activerecord/test/cases/type/string_test.rb +24 -0
- data/activerecord/test/cases/type/type_map_test.rb +178 -0
- data/activerecord/test/cases/type/unsigned_integer_test.rb +19 -0
- data/activerecord/test/cases/type_test.rb +41 -0
- data/activerecord/test/cases/types_test.rb +26 -0
- data/activerecord/test/cases/unconnected_test.rb +35 -0
- data/activerecord/test/cases/validations/absence_validation_test.rb +75 -0
- data/activerecord/test/cases/validations/association_validation_test.rb +99 -0
- data/activerecord/test/cases/validations/i18n_generate_message_validation_test.rb +86 -0
- data/activerecord/test/cases/validations/i18n_validation_test.rb +85 -0
- data/activerecord/test/cases/validations/length_validation_test.rb +80 -0
- data/activerecord/test/cases/validations/presence_validation_test.rb +105 -0
- data/activerecord/test/cases/validations/uniqueness_validation_test.rb +557 -0
- data/activerecord/test/cases/validations_repair_helper.rb +21 -0
- data/activerecord/test/cases/validations_test.rb +196 -0
- data/activerecord/test/cases/view_test.rb +224 -0
- data/activerecord/test/cases/yaml_serialization_test.rb +141 -0
- data/activerecord/test/config.example.yml +100 -0
- data/activerecord/test/config.rb +7 -0
- data/activerecord/test/fixtures/.gitignore +1 -0
- data/activerecord/test/fixtures/accounts.yml +29 -0
- data/activerecord/test/fixtures/admin/accounts.yml +2 -0
- data/activerecord/test/fixtures/admin/randomly_named_a9.yml +7 -0
- data/activerecord/test/fixtures/admin/randomly_named_b0.yml +7 -0
- data/activerecord/test/fixtures/admin/users.yml +10 -0
- data/activerecord/test/fixtures/all/admin +1 -0
- data/activerecord/test/fixtures/all/developers.yml +0 -0
- data/activerecord/test/fixtures/all/namespaced/accounts.yml +2 -0
- data/activerecord/test/fixtures/all/people.yml +0 -0
- data/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/activerecord/test/fixtures/author_addresses.yml +11 -0
- data/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/activerecord/test/fixtures/authors.yml +17 -0
- data/activerecord/test/fixtures/bad_posts.yml +9 -0
- data/activerecord/test/fixtures/binaries.yml +137 -0
- data/activerecord/test/fixtures/books.yml +33 -0
- data/activerecord/test/fixtures/bulbs.yml +5 -0
- data/activerecord/test/fixtures/cars.yml +9 -0
- data/activerecord/test/fixtures/categories.yml +19 -0
- data/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/activerecord/test/fixtures/categories_posts.yml +31 -0
- data/activerecord/test/fixtures/categorizations.yml +23 -0
- data/activerecord/test/fixtures/clubs.yml +8 -0
- data/activerecord/test/fixtures/collections.yml +3 -0
- data/activerecord/test/fixtures/colleges.yml +3 -0
- data/activerecord/test/fixtures/comments.yml +65 -0
- data/activerecord/test/fixtures/companies.yml +67 -0
- data/activerecord/test/fixtures/computers.yml +10 -0
- data/activerecord/test/fixtures/content.yml +3 -0
- data/activerecord/test/fixtures/content_positions.yml +3 -0
- data/activerecord/test/fixtures/courses.yml +8 -0
- data/activerecord/test/fixtures/customers.yml +26 -0
- data/activerecord/test/fixtures/dashboards.yml +6 -0
- data/activerecord/test/fixtures/dead_parrots.yml +5 -0
- data/activerecord/test/fixtures/developers.yml +22 -0
- data/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/activerecord/test/fixtures/dog_lovers.yml +7 -0
- data/activerecord/test/fixtures/dogs.yml +4 -0
- data/activerecord/test/fixtures/doubloons.yml +3 -0
- data/activerecord/test/fixtures/edges.yml +5 -0
- data/activerecord/test/fixtures/entrants.yml +14 -0
- data/activerecord/test/fixtures/essays.yml +6 -0
- data/activerecord/test/fixtures/faces.yml +11 -0
- data/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/activerecord/test/fixtures/friendships.yml +4 -0
- data/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/activerecord/test/fixtures/interests.yml +33 -0
- data/activerecord/test/fixtures/items.yml +3 -0
- data/activerecord/test/fixtures/jobs.yml +7 -0
- data/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/activerecord/test/fixtures/live_parrots.yml +4 -0
- data/activerecord/test/fixtures/mateys.yml +4 -0
- data/activerecord/test/fixtures/member_details.yml +8 -0
- data/activerecord/test/fixtures/member_types.yml +6 -0
- data/activerecord/test/fixtures/members.yml +11 -0
- data/activerecord/test/fixtures/memberships.yml +34 -0
- data/activerecord/test/fixtures/men.yml +5 -0
- data/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/activerecord/test/fixtures/minivans.yml +5 -0
- data/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/activerecord/test/fixtures/mixins.yml +29 -0
- data/activerecord/test/fixtures/movies.yml +7 -0
- data/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/activerecord/test/fixtures/naked/yml/courses_with_invalid_key.yml +3 -0
- data/activerecord/test/fixtures/naked/yml/parrots.yml +3 -0
- data/activerecord/test/fixtures/naked/yml/trees.yml +3 -0
- data/activerecord/test/fixtures/nodes.yml +29 -0
- data/activerecord/test/fixtures/organizations.yml +5 -0
- data/activerecord/test/fixtures/other_comments.yml +6 -0
- data/activerecord/test/fixtures/other_dogs.yml +2 -0
- data/activerecord/test/fixtures/other_posts.yml +7 -0
- data/activerecord/test/fixtures/other_topics.yml +42 -0
- data/activerecord/test/fixtures/owners.yml +9 -0
- data/activerecord/test/fixtures/parrots.yml +27 -0
- data/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/activerecord/test/fixtures/people.yml +24 -0
- data/activerecord/test/fixtures/peoples_treasures.yml +3 -0
- data/activerecord/test/fixtures/pets.yml +19 -0
- data/activerecord/test/fixtures/pirates.yml +15 -0
- data/activerecord/test/fixtures/posts.yml +80 -0
- data/activerecord/test/fixtures/price_estimates.yml +16 -0
- data/activerecord/test/fixtures/products.yml +4 -0
- data/activerecord/test/fixtures/projects.yml +7 -0
- data/activerecord/test/fixtures/randomly_named_a9.yml +7 -0
- data/activerecord/test/fixtures/ratings.yml +14 -0
- data/activerecord/test/fixtures/readers.yml +11 -0
- data/activerecord/test/fixtures/references.yml +17 -0
- data/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/activerecord/test/fixtures/reserved_words/distinct_select.yml +11 -0
- data/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/activerecord/test/fixtures/ships.yml +6 -0
- data/activerecord/test/fixtures/speedometers.yml +8 -0
- data/activerecord/test/fixtures/sponsors.yml +12 -0
- data/activerecord/test/fixtures/string_key_objects.yml +7 -0
- data/activerecord/test/fixtures/subscribers.yml +11 -0
- data/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/activerecord/test/fixtures/taggings.yml +78 -0
- data/activerecord/test/fixtures/tags.yml +11 -0
- data/activerecord/test/fixtures/tasks.yml +7 -0
- data/activerecord/test/fixtures/teapots.yml +3 -0
- data/activerecord/test/fixtures/to_be_linked/accounts.yml +2 -0
- data/activerecord/test/fixtures/to_be_linked/users.yml +10 -0
- data/activerecord/test/fixtures/topics.yml +49 -0
- data/activerecord/test/fixtures/toys.yml +14 -0
- data/activerecord/test/fixtures/traffic_lights.yml +10 -0
- data/activerecord/test/fixtures/treasures.yml +10 -0
- data/activerecord/test/fixtures/trees.yml +3 -0
- data/activerecord/test/fixtures/uuid_children.yml +3 -0
- data/activerecord/test/fixtures/uuid_parents.yml +2 -0
- data/activerecord/test/fixtures/variants.yml +4 -0
- data/activerecord/test/fixtures/vegetables.yml +20 -0
- data/activerecord/test/fixtures/vertices.yml +4 -0
- data/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/activerecord/test/fixtures/zines.yml +5 -0
- data/activerecord/test/migrations/10_urban/9_add_expressions.rb +13 -0
- data/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +17 -0
- data/activerecord/test/migrations/empty/.gitkeep +0 -0
- data/activerecord/test/migrations/magic/1_currencies_have_symbols.rb +13 -0
- data/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +11 -0
- data/activerecord/test/migrations/missing/1_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/missing/3_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/missing/4_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/rename/1_we_need_things.rb +13 -0
- data/activerecord/test/migrations/rename/2_rename_things.rb +11 -0
- data/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb +11 -0
- data/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb +11 -0
- data/activerecord/test/migrations/to_copy2/1_create_articles.rb +9 -0
- data/activerecord/test/migrations/to_copy2/2_create_comments.rb +9 -0
- data/activerecord/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +11 -0
- data/activerecord/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +11 -0
- data/activerecord/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +11 -0
- data/activerecord/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +9 -0
- data/activerecord/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +9 -0
- data/activerecord/test/migrations/valid/1_valid_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/valid/2_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/valid/3_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +11 -0
- data/activerecord/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +14 -0
- data/activerecord/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +14 -0
- data/activerecord/test/migrations/version_check/20131219224947_migration_version_check.rb +10 -0
- data/activerecord/test/models/account.rb +34 -0
- data/activerecord/test/models/admin.rb +7 -0
- data/activerecord/test/models/admin/account.rb +5 -0
- data/activerecord/test/models/admin/randomly_named_c1.rb +9 -0
- data/activerecord/test/models/admin/user.rb +42 -0
- data/activerecord/test/models/aircraft.rb +7 -0
- data/activerecord/test/models/arunit2_model.rb +5 -0
- data/activerecord/test/models/author.rb +211 -0
- data/activerecord/test/models/auto_id.rb +6 -0
- data/activerecord/test/models/autoloadable/extra_firm.rb +4 -0
- data/activerecord/test/models/binary.rb +4 -0
- data/activerecord/test/models/bird.rb +14 -0
- data/activerecord/test/models/book.rb +26 -0
- data/activerecord/test/models/boolean.rb +7 -0
- data/activerecord/test/models/bulb.rb +54 -0
- data/activerecord/test/models/cake_designer.rb +5 -0
- data/activerecord/test/models/car.rb +31 -0
- data/activerecord/test/models/carrier.rb +4 -0
- data/activerecord/test/models/cat.rb +12 -0
- data/activerecord/test/models/categorization.rb +21 -0
- data/activerecord/test/models/category.rb +46 -0
- data/activerecord/test/models/chef.rb +10 -0
- data/activerecord/test/models/citation.rb +5 -0
- data/activerecord/test/models/club.rb +27 -0
- data/activerecord/test/models/college.rb +12 -0
- data/activerecord/test/models/column.rb +5 -0
- data/activerecord/test/models/column_name.rb +5 -0
- data/activerecord/test/models/comment.rb +88 -0
- data/activerecord/test/models/company.rb +190 -0
- data/activerecord/test/models/company_in_module.rb +100 -0
- data/activerecord/test/models/computer.rb +5 -0
- data/activerecord/test/models/contact.rb +43 -0
- data/activerecord/test/models/content.rb +42 -0
- data/activerecord/test/models/contract.rb +22 -0
- data/activerecord/test/models/country.rb +7 -0
- data/activerecord/test/models/course.rb +8 -0
- data/activerecord/test/models/customer.rb +85 -0
- data/activerecord/test/models/customer_carrier.rb +16 -0
- data/activerecord/test/models/dashboard.rb +5 -0
- data/activerecord/test/models/default.rb +4 -0
- data/activerecord/test/models/department.rb +6 -0
- data/activerecord/test/models/developer.rb +270 -0
- data/activerecord/test/models/dog.rb +7 -0
- data/activerecord/test/models/dog_lover.rb +7 -0
- data/activerecord/test/models/doubloon.rb +14 -0
- data/activerecord/test/models/drink_designer.rb +5 -0
- data/activerecord/test/models/edge.rb +7 -0
- data/activerecord/test/models/electron.rb +7 -0
- data/activerecord/test/models/engine.rb +5 -0
- data/activerecord/test/models/entrant.rb +5 -0
- data/activerecord/test/models/essay.rb +8 -0
- data/activerecord/test/models/event.rb +5 -0
- data/activerecord/test/models/eye.rb +39 -0
- data/activerecord/test/models/face.rb +11 -0
- data/activerecord/test/models/family.rb +6 -0
- data/activerecord/test/models/family_tree.rb +6 -0
- data/activerecord/test/models/friendship.rb +8 -0
- data/activerecord/test/models/guid.rb +4 -0
- data/activerecord/test/models/guitar.rb +6 -0
- data/activerecord/test/models/hotel.rb +13 -0
- data/activerecord/test/models/image.rb +5 -0
- data/activerecord/test/models/interest.rb +7 -0
- data/activerecord/test/models/invoice.rb +6 -0
- data/activerecord/test/models/item.rb +9 -0
- data/activerecord/test/models/job.rb +9 -0
- data/activerecord/test/models/joke.rb +9 -0
- data/activerecord/test/models/keyboard.rb +5 -0
- data/activerecord/test/models/legacy_thing.rb +5 -0
- data/activerecord/test/models/lesson.rb +13 -0
- data/activerecord/test/models/line_item.rb +5 -0
- data/activerecord/test/models/liquid.rb +6 -0
- data/activerecord/test/models/man.rb +13 -0
- data/activerecord/test/models/matey.rb +6 -0
- data/activerecord/test/models/member.rb +44 -0
- data/activerecord/test/models/member_detail.rb +10 -0
- data/activerecord/test/models/member_type.rb +5 -0
- data/activerecord/test/models/membership.rb +38 -0
- data/activerecord/test/models/mentor.rb +5 -0
- data/activerecord/test/models/minimalistic.rb +4 -0
- data/activerecord/test/models/minivan.rb +10 -0
- data/activerecord/test/models/mixed_case_monkey.rb +5 -0
- data/activerecord/test/models/mocktail_designer.rb +4 -0
- data/activerecord/test/models/molecule.rb +8 -0
- data/activerecord/test/models/movie.rb +7 -0
- data/activerecord/test/models/node.rb +7 -0
- data/activerecord/test/models/non_primary_key.rb +4 -0
- data/activerecord/test/models/notification.rb +5 -0
- data/activerecord/test/models/numeric_data.rb +10 -0
- data/activerecord/test/models/order.rb +6 -0
- data/activerecord/test/models/organization.rb +16 -0
- data/activerecord/test/models/other_dog.rb +7 -0
- data/activerecord/test/models/owner.rb +39 -0
- data/activerecord/test/models/parrot.rb +30 -0
- data/activerecord/test/models/person.rb +143 -0
- data/activerecord/test/models/personal_legacy_thing.rb +6 -0
- data/activerecord/test/models/pet.rb +20 -0
- data/activerecord/test/models/pet_treasure.rb +8 -0
- data/activerecord/test/models/pirate.rb +94 -0
- data/activerecord/test/models/possession.rb +5 -0
- data/activerecord/test/models/post.rb +322 -0
- data/activerecord/test/models/price_estimate.rb +6 -0
- data/activerecord/test/models/professor.rb +7 -0
- data/activerecord/test/models/project.rb +42 -0
- data/activerecord/test/models/publisher.rb +4 -0
- data/activerecord/test/models/publisher/article.rb +6 -0
- data/activerecord/test/models/publisher/magazine.rb +5 -0
- data/activerecord/test/models/randomly_named_c1.rb +5 -0
- data/activerecord/test/models/rating.rb +6 -0
- data/activerecord/test/models/reader.rb +25 -0
- data/activerecord/test/models/recipe.rb +5 -0
- data/activerecord/test/models/record.rb +4 -0
- data/activerecord/test/models/reference.rb +24 -0
- data/activerecord/test/models/reply.rb +63 -0
- data/activerecord/test/models/ship.rb +41 -0
- data/activerecord/test/models/ship_part.rb +10 -0
- data/activerecord/test/models/shop.rb +19 -0
- data/activerecord/test/models/shop_account.rb +8 -0
- data/activerecord/test/models/speedometer.rb +8 -0
- data/activerecord/test/models/sponsor.rb +9 -0
- data/activerecord/test/models/string_key_object.rb +5 -0
- data/activerecord/test/models/student.rb +6 -0
- data/activerecord/test/models/subscriber.rb +10 -0
- data/activerecord/test/models/subscription.rb +6 -0
- data/activerecord/test/models/tag.rb +15 -0
- data/activerecord/test/models/tagging.rb +15 -0
- data/activerecord/test/models/task.rb +7 -0
- data/activerecord/test/models/topic.rb +120 -0
- data/activerecord/test/models/toy.rb +8 -0
- data/activerecord/test/models/traffic_light.rb +6 -0
- data/activerecord/test/models/treasure.rb +16 -0
- data/activerecord/test/models/treaty.rb +7 -0
- data/activerecord/test/models/tree.rb +5 -0
- data/activerecord/test/models/tuning_peg.rb +6 -0
- data/activerecord/test/models/tyre.rb +13 -0
- data/activerecord/test/models/user.rb +20 -0
- data/activerecord/test/models/uuid_child.rb +5 -0
- data/activerecord/test/models/uuid_item.rb +8 -0
- data/activerecord/test/models/uuid_parent.rb +5 -0
- data/activerecord/test/models/vegetables.rb +25 -0
- data/activerecord/test/models/vehicle.rb +9 -0
- data/activerecord/test/models/vertex.rb +11 -0
- data/activerecord/test/models/warehouse_thing.rb +7 -0
- data/activerecord/test/models/wheel.rb +5 -0
- data/activerecord/test/models/without_table.rb +5 -0
- data/activerecord/test/models/zine.rb +5 -0
- data/activerecord/test/schema/mysql2_specific_schema.rb +75 -0
- data/activerecord/test/schema/oracle_specific_schema.rb +42 -0
- data/activerecord/test/schema/postgresql_specific_schema.rb +112 -0
- data/activerecord/test/schema/schema.rb +1081 -0
- data/activerecord/test/support/config.rb +46 -0
- data/activerecord/test/support/connection.rb +28 -0
- data/activerecord/test/support/connection_helper.rb +16 -0
- data/activerecord/test/support/ddl_helper.rb +10 -0
- data/activerecord/test/support/schema_dumping_helper.rb +22 -0
- data/activerecord/test/support/yaml_compatibility_fixtures/rails_4_1.yml +22 -0
- data/activerecord/test/support/yaml_compatibility_fixtures/rails_4_2_0.yml +182 -0
- data/activestorage/.babelrc +5 -0
- data/activestorage/.eslintrc +19 -0
- data/activestorage/.gitignore +6 -0
- data/activestorage/CHANGELOG.md +3 -0
- data/activestorage/MIT-LICENSE +20 -0
- data/activestorage/README.md +141 -0
- data/activestorage/Rakefile +14 -0
- data/activestorage/activestorage.gemspec +30 -0
- data/activestorage/app/assets/javascripts/activestorage.js +1 -0
- data/activestorage/app/controllers/active_storage/blobs_controller.rb +25 -0
- data/activestorage/app/controllers/active_storage/direct_uploads_controller.rb +23 -0
- data/activestorage/app/controllers/active_storage/disk_controller.rb +53 -0
- data/activestorage/app/controllers/active_storage/variants_controller.rb +29 -0
- data/activestorage/app/javascript/activestorage/blob_record.js +54 -0
- data/activestorage/app/javascript/activestorage/blob_upload.js +34 -0
- data/activestorage/app/javascript/activestorage/direct_upload.js +42 -0
- data/activestorage/app/javascript/activestorage/direct_upload_controller.js +67 -0
- data/activestorage/app/javascript/activestorage/direct_uploads_controller.js +50 -0
- data/activestorage/app/javascript/activestorage/file_checksum.js +53 -0
- data/activestorage/app/javascript/activestorage/helpers.js +42 -0
- data/activestorage/app/javascript/activestorage/index.js +11 -0
- data/activestorage/app/javascript/activestorage/ujs.js +74 -0
- data/activestorage/app/jobs/active_storage/purge_job.rb +11 -0
- data/activestorage/app/models/active_storage/attachment.rb +28 -0
- data/activestorage/app/models/active_storage/blob.rb +199 -0
- data/activestorage/app/models/active_storage/filename.rb +65 -0
- data/activestorage/app/models/active_storage/filename/parameters.rb +36 -0
- data/activestorage/app/models/active_storage/variant.rb +82 -0
- data/activestorage/app/models/active_storage/variation.rb +55 -0
- data/activestorage/bin/test +5 -0
- data/activestorage/config/routes.rb +30 -0
- data/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb +25 -0
- data/activestorage/lib/active_storage.rb +38 -0
- data/activestorage/lib/active_storage/attached.rb +40 -0
- data/activestorage/lib/active_storage/attached/macros.rb +82 -0
- data/activestorage/lib/active_storage/attached/many.rb +55 -0
- data/activestorage/lib/active_storage/attached/one.rb +76 -0
- data/activestorage/lib/active_storage/engine.rb +65 -0
- data/activestorage/lib/active_storage/gem_version.rb +17 -0
- data/activestorage/lib/active_storage/log_subscriber.rb +52 -0
- data/activestorage/lib/active_storage/service.rb +117 -0
- data/activestorage/lib/active_storage/service/azure_storage_service.rb +124 -0
- data/activestorage/lib/active_storage/service/configurator.rb +32 -0
- data/activestorage/lib/active_storage/service/disk_service.rb +128 -0
- data/activestorage/lib/active_storage/service/gcs_service.rb +83 -0
- data/activestorage/lib/active_storage/service/mirror_service.rb +50 -0
- data/activestorage/lib/active_storage/service/s3_service.rb +100 -0
- data/activestorage/lib/active_storage/version.rb +10 -0
- data/activestorage/lib/tasks/activestorage.rake +8 -0
- data/activestorage/package.json +33 -0
- data/activestorage/test/controllers/blobs_controller_test.rb +17 -0
- data/activestorage/test/controllers/direct_uploads_controller_test.rb +124 -0
- data/activestorage/test/controllers/disk_controller_test.rb +59 -0
- data/activestorage/test/controllers/variants_controller_test.rb +23 -0
- data/activestorage/test/database/create_users_migration.rb +9 -0
- data/activestorage/test/database/setup.rb +7 -0
- data/activestorage/test/dummy/Rakefile +5 -0
- data/activestorage/test/dummy/app/assets/config/manifest.js +5 -0
- data/activestorage/test/dummy/app/assets/images/.keep +0 -0
- data/activestorage/test/dummy/app/assets/javascripts/application.js +13 -0
- data/activestorage/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/activestorage/test/dummy/app/controllers/application_controller.rb +5 -0
- data/activestorage/test/dummy/app/controllers/concerns/.keep +0 -0
- data/activestorage/test/dummy/app/helpers/application_helper.rb +4 -0
- data/activestorage/test/dummy/app/jobs/application_job.rb +4 -0
- data/activestorage/test/dummy/app/models/application_record.rb +5 -0
- data/activestorage/test/dummy/app/models/concerns/.keep +0 -0
- data/activestorage/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/activestorage/test/dummy/bin/bundle +5 -0
- data/activestorage/test/dummy/bin/rails +6 -0
- data/activestorage/test/dummy/bin/rake +6 -0
- data/activestorage/test/dummy/bin/yarn +13 -0
- data/activestorage/test/dummy/config.ru +7 -0
- data/activestorage/test/dummy/config/application.rb +26 -0
- data/activestorage/test/dummy/config/boot.rb +7 -0
- data/activestorage/test/dummy/config/database.yml +25 -0
- data/activestorage/test/dummy/config/environment.rb +7 -0
- data/activestorage/test/dummy/config/environments/development.rb +51 -0
- data/activestorage/test/dummy/config/environments/production.rb +84 -0
- data/activestorage/test/dummy/config/environments/test.rb +35 -0
- data/activestorage/test/dummy/config/initializers/application_controller_renderer.rb +7 -0
- data/activestorage/test/dummy/config/initializers/assets.rb +16 -0
- data/activestorage/test/dummy/config/initializers/backtrace_silencers.rb +8 -0
- data/activestorage/test/dummy/config/initializers/cookies_serializer.rb +7 -0
- data/activestorage/test/dummy/config/initializers/filter_parameter_logging.rb +6 -0
- data/activestorage/test/dummy/config/initializers/inflections.rb +17 -0
- data/activestorage/test/dummy/config/initializers/mime_types.rb +5 -0
- data/activestorage/test/dummy/config/initializers/wrap_parameters.rb +16 -0
- data/activestorage/test/dummy/config/routes.rb +4 -0
- data/activestorage/test/dummy/config/secrets.yml +32 -0
- data/activestorage/test/dummy/config/spring.rb +8 -0
- data/activestorage/test/dummy/config/storage.yml +3 -0
- data/activestorage/test/dummy/lib/assets/.keep +0 -0
- data/activestorage/test/dummy/log/.keep +0 -0
- data/activestorage/test/dummy/package.json +5 -0
- data/activestorage/test/dummy/public/404.html +67 -0
- data/activestorage/test/dummy/public/422.html +67 -0
- data/activestorage/test/dummy/public/500.html +66 -0
- data/activestorage/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/activestorage/test/dummy/public/apple-touch-icon.png +0 -0
- data/activestorage/test/dummy/public/favicon.ico +0 -0
- data/activestorage/test/fixtures/files/racecar.jpg +0 -0
- data/activestorage/test/models/attachments_test.rb +150 -0
- data/activestorage/test/models/blob_test.rb +56 -0
- data/activestorage/test/models/filename/parameters_test.rb +32 -0
- data/activestorage/test/models/filename_test.rb +56 -0
- data/activestorage/test/models/variant_test.rb +29 -0
- data/activestorage/test/service/azure_storage_service_test.rb +22 -0
- data/activestorage/test/service/configurations.yml +30 -0
- data/activestorage/test/service/configurations.yml.enc +0 -0
- data/activestorage/test/service/configurator_test.rb +16 -0
- data/activestorage/test/service/disk_service_test.rb +14 -0
- data/activestorage/test/service/gcs_service_test.rb +46 -0
- data/activestorage/test/service/mirror_service_test.rb +64 -0
- data/activestorage/test/service/s3_service_test.rb +59 -0
- data/activestorage/test/service/shared_service_tests.rb +69 -0
- data/activestorage/test/template/image_tag_test.rb +38 -0
- data/activestorage/test/test_helper.rb +69 -0
- data/activestorage/webpack.config.js +27 -0
- data/activestorage/yarn.lock +3164 -0
- data/activesupport/CHANGELOG.md +190 -0
- data/activesupport/MIT-LICENSE +20 -0
- data/activesupport/README.rdoc +39 -0
- data/activesupport/Rakefile +23 -0
- data/activesupport/activesupport.gemspec +34 -0
- data/activesupport/bin/generate_tables +141 -0
- data/activesupport/bin/test +5 -0
- data/activesupport/lib/active_support.rb +106 -0
- data/activesupport/lib/active_support/all.rb +5 -0
- data/activesupport/lib/active_support/array_inquirer.rb +48 -0
- data/activesupport/lib/active_support/backtrace_cleaner.rb +105 -0
- data/activesupport/lib/active_support/benchmarkable.rb +51 -0
- data/activesupport/lib/active_support/builder.rb +8 -0
- data/activesupport/lib/active_support/cache.rb +759 -0
- data/activesupport/lib/active_support/cache/file_store.rb +197 -0
- data/activesupport/lib/active_support/cache/mem_cache_store.rb +205 -0
- data/activesupport/lib/active_support/cache/memory_store.rb +169 -0
- data/activesupport/lib/active_support/cache/null_store.rb +43 -0
- data/activesupport/lib/active_support/cache/strategy/local_cache.rb +170 -0
- data/activesupport/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
- data/activesupport/lib/active_support/callbacks.rb +856 -0
- data/activesupport/lib/active_support/concern.rb +144 -0
- data/activesupport/lib/active_support/concurrency/share_lock.rb +227 -0
- data/activesupport/lib/active_support/configurable.rb +150 -0
- data/activesupport/lib/active_support/core_ext.rb +5 -0
- data/activesupport/lib/active_support/core_ext/array.rb +9 -0
- data/activesupport/lib/active_support/core_ext/array/access.rb +92 -0
- data/activesupport/lib/active_support/core_ext/array/conversions.rb +213 -0
- data/activesupport/lib/active_support/core_ext/array/extract_options.rb +31 -0
- data/activesupport/lib/active_support/core_ext/array/grouping.rb +109 -0
- data/activesupport/lib/active_support/core_ext/array/inquiry.rb +19 -0
- data/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb +9 -0
- data/activesupport/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/activesupport/lib/active_support/core_ext/benchmark.rb +16 -0
- data/activesupport/lib/active_support/core_ext/big_decimal.rb +3 -0
- data/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/activesupport/lib/active_support/core_ext/class/attribute.rb +149 -0
- data/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
- data/activesupport/lib/active_support/core_ext/class/subclasses.rb +57 -0
- data/activesupport/lib/active_support/core_ext/date.rb +7 -0
- data/activesupport/lib/active_support/core_ext/date/acts_like.rb +10 -0
- data/activesupport/lib/active_support/core_ext/date/blank.rb +14 -0
- data/activesupport/lib/active_support/core_ext/date/calculations.rb +145 -0
- data/activesupport/lib/active_support/core_ext/date/conversions.rb +100 -0
- data/activesupport/lib/active_support/core_ext/date/zones.rb +8 -0
- data/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb +358 -0
- data/activesupport/lib/active_support/core_ext/date_and_time/compatibility.rb +16 -0
- data/activesupport/lib/active_support/core_ext/date_and_time/zones.rb +41 -0
- data/activesupport/lib/active_support/core_ext/date_time.rb +7 -0
- data/activesupport/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
- data/activesupport/lib/active_support/core_ext/date_time/blank.rb +14 -0
- data/activesupport/lib/active_support/core_ext/date_time/calculations.rb +211 -0
- data/activesupport/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
- data/activesupport/lib/active_support/core_ext/date_time/conversions.rb +107 -0
- data/activesupport/lib/active_support/core_ext/digest/uuid.rb +53 -0
- data/activesupport/lib/active_support/core_ext/enumerable.rb +159 -0
- data/activesupport/lib/active_support/core_ext/file.rb +3 -0
- data/activesupport/lib/active_support/core_ext/file/atomic.rb +70 -0
- data/activesupport/lib/active_support/core_ext/hash.rb +11 -0
- data/activesupport/lib/active_support/core_ext/hash/compact.rb +29 -0
- data/activesupport/lib/active_support/core_ext/hash/conversions.rb +263 -0
- data/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
- data/activesupport/lib/active_support/core_ext/hash/except.rb +24 -0
- data/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/activesupport/lib/active_support/core_ext/hash/keys.rb +172 -0
- data/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
- data/activesupport/lib/active_support/core_ext/hash/slice.rb +50 -0
- data/activesupport/lib/active_support/core_ext/hash/transform_values.rb +32 -0
- data/activesupport/lib/active_support/core_ext/integer.rb +5 -0
- data/activesupport/lib/active_support/core_ext/integer/inflections.rb +31 -0
- data/activesupport/lib/active_support/core_ext/integer/multiple.rb +12 -0
- data/activesupport/lib/active_support/core_ext/integer/time.rb +31 -0
- data/activesupport/lib/active_support/core_ext/kernel.rb +6 -0
- data/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +13 -0
- data/activesupport/lib/active_support/core_ext/kernel/concern.rb +14 -0
- data/activesupport/lib/active_support/core_ext/kernel/reporting.rb +45 -0
- data/activesupport/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
- data/activesupport/lib/active_support/core_ext/load_error.rb +9 -0
- data/activesupport/lib/active_support/core_ext/marshal.rb +24 -0
- data/activesupport/lib/active_support/core_ext/module.rb +13 -0
- data/activesupport/lib/active_support/core_ext/module/aliasing.rb +31 -0
- data/activesupport/lib/active_support/core_ext/module/anonymous.rb +30 -0
- data/activesupport/lib/active_support/core_ext/module/attr_internal.rb +38 -0
- data/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +215 -0
- data/activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +150 -0
- data/activesupport/lib/active_support/core_ext/module/concerning.rb +137 -0
- data/activesupport/lib/active_support/core_ext/module/delegation.rb +290 -0
- data/activesupport/lib/active_support/core_ext/module/deprecation.rb +25 -0
- data/activesupport/lib/active_support/core_ext/module/introspection.rb +62 -0
- data/activesupport/lib/active_support/core_ext/module/reachable.rb +10 -0
- data/activesupport/lib/active_support/core_ext/module/remove_method.rb +37 -0
- data/activesupport/lib/active_support/core_ext/name_error.rb +33 -0
- data/activesupport/lib/active_support/core_ext/numeric.rb +6 -0
- data/activesupport/lib/active_support/core_ext/numeric/bytes.rb +66 -0
- data/activesupport/lib/active_support/core_ext/numeric/conversions.rb +140 -0
- data/activesupport/lib/active_support/core_ext/numeric/inquiry.rb +28 -0
- data/activesupport/lib/active_support/core_ext/numeric/time.rb +76 -0
- data/activesupport/lib/active_support/core_ext/object.rb +16 -0
- data/activesupport/lib/active_support/core_ext/object/acts_like.rb +12 -0
- data/activesupport/lib/active_support/core_ext/object/blank.rb +147 -0
- data/activesupport/lib/active_support/core_ext/object/conversions.rb +6 -0
- data/activesupport/lib/active_support/core_ext/object/deep_dup.rb +55 -0
- data/activesupport/lib/active_support/core_ext/object/duplicable.rb +156 -0
- data/activesupport/lib/active_support/core_ext/object/inclusion.rb +29 -0
- data/activesupport/lib/active_support/core_ext/object/instance_variables.rb +30 -0
- data/activesupport/lib/active_support/core_ext/object/json.rb +221 -0
- data/activesupport/lib/active_support/core_ext/object/to_param.rb +3 -0
- data/activesupport/lib/active_support/core_ext/object/to_query.rb +86 -0
- data/activesupport/lib/active_support/core_ext/object/try.rb +148 -0
- data/activesupport/lib/active_support/core_ext/object/with_options.rb +82 -0
- data/activesupport/lib/active_support/core_ext/range.rb +6 -0
- data/activesupport/lib/active_support/core_ext/range/conversions.rb +33 -0
- data/activesupport/lib/active_support/core_ext/range/each.rb +23 -0
- data/activesupport/lib/active_support/core_ext/range/include_range.rb +25 -0
- data/activesupport/lib/active_support/core_ext/range/overlaps.rb +10 -0
- data/activesupport/lib/active_support/core_ext/regexp.rb +11 -0
- data/activesupport/lib/active_support/core_ext/securerandom.rb +25 -0
- data/activesupport/lib/active_support/core_ext/string.rb +15 -0
- data/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
- data/activesupport/lib/active_support/core_ext/string/behavior.rb +8 -0
- data/activesupport/lib/active_support/core_ext/string/conversions.rb +59 -0
- data/activesupport/lib/active_support/core_ext/string/exclude.rb +13 -0
- data/activesupport/lib/active_support/core_ext/string/filters.rb +104 -0
- data/activesupport/lib/active_support/core_ext/string/indent.rb +45 -0
- data/activesupport/lib/active_support/core_ext/string/inflections.rb +254 -0
- data/activesupport/lib/active_support/core_ext/string/inquiry.rb +15 -0
- data/activesupport/lib/active_support/core_ext/string/multibyte.rb +55 -0
- data/activesupport/lib/active_support/core_ext/string/output_safety.rb +261 -0
- data/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
- data/activesupport/lib/active_support/core_ext/string/strip.rb +25 -0
- data/activesupport/lib/active_support/core_ext/string/zones.rb +16 -0
- data/activesupport/lib/active_support/core_ext/time.rb +7 -0
- data/activesupport/lib/active_support/core_ext/time/acts_like.rb +10 -0
- data/activesupport/lib/active_support/core_ext/time/calculations.rb +315 -0
- data/activesupport/lib/active_support/core_ext/time/compatibility.rb +16 -0
- data/activesupport/lib/active_support/core_ext/time/conversions.rb +72 -0
- data/activesupport/lib/active_support/core_ext/time/zones.rb +113 -0
- data/activesupport/lib/active_support/core_ext/uri.rb +26 -0
- data/activesupport/lib/active_support/current_attributes.rb +195 -0
- data/activesupport/lib/active_support/dependencies.rb +744 -0
- data/activesupport/lib/active_support/dependencies/autoload.rb +79 -0
- data/activesupport/lib/active_support/dependencies/interlock.rb +57 -0
- data/activesupport/lib/active_support/deprecation.rb +46 -0
- data/activesupport/lib/active_support/deprecation/behaviors.rb +105 -0
- data/activesupport/lib/active_support/deprecation/constant_accessor.rb +52 -0
- data/activesupport/lib/active_support/deprecation/instance_delegator.rb +39 -0
- data/activesupport/lib/active_support/deprecation/method_wrappers.rb +72 -0
- data/activesupport/lib/active_support/deprecation/proxy_wrappers.rb +153 -0
- data/activesupport/lib/active_support/deprecation/reporting.rb +114 -0
- data/activesupport/lib/active_support/descendants_tracker.rb +62 -0
- data/activesupport/lib/active_support/duration.rb +422 -0
- data/activesupport/lib/active_support/duration/iso8601_parser.rb +125 -0
- data/activesupport/lib/active_support/duration/iso8601_serializer.rb +55 -0
- data/activesupport/lib/active_support/evented_file_update_checker.rb +205 -0
- data/activesupport/lib/active_support/execution_wrapper.rb +128 -0
- data/activesupport/lib/active_support/executor.rb +8 -0
- data/activesupport/lib/active_support/file_update_checker.rb +163 -0
- data/activesupport/lib/active_support/gem_version.rb +17 -0
- data/activesupport/lib/active_support/gzip.rb +38 -0
- data/activesupport/lib/active_support/hash_with_indifferent_access.rb +358 -0
- data/activesupport/lib/active_support/i18n.rb +15 -0
- data/activesupport/lib/active_support/i18n_railtie.rb +114 -0
- data/activesupport/lib/active_support/inflections.rb +72 -0
- data/activesupport/lib/active_support/inflector.rb +9 -0
- data/activesupport/lib/active_support/inflector/inflections.rb +246 -0
- data/activesupport/lib/active_support/inflector/methods.rb +408 -0
- data/activesupport/lib/active_support/inflector/transliterate.rb +112 -0
- data/activesupport/lib/active_support/json.rb +4 -0
- data/activesupport/lib/active_support/json/decoding.rb +76 -0
- data/activesupport/lib/active_support/json/encoding.rb +130 -0
- data/activesupport/lib/active_support/key_generator.rb +73 -0
- data/activesupport/lib/active_support/lazy_load_hooks.rb +78 -0
- data/activesupport/lib/active_support/locale/en.yml +135 -0
- data/activesupport/lib/active_support/log_subscriber.rb +112 -0
- data/activesupport/lib/active_support/log_subscriber/test_helper.rb +106 -0
- data/activesupport/lib/active_support/logger.rb +108 -0
- data/activesupport/lib/active_support/logger_silence.rb +29 -0
- data/activesupport/lib/active_support/logger_thread_safe_level.rb +33 -0
- data/activesupport/lib/active_support/message_encryptor.rb +202 -0
- data/activesupport/lib/active_support/message_verifier.rb +178 -0
- data/activesupport/lib/active_support/messages/metadata.rb +71 -0
- data/activesupport/lib/active_support/multibyte.rb +23 -0
- data/activesupport/lib/active_support/multibyte/chars.rb +235 -0
- data/activesupport/lib/active_support/multibyte/unicode.rb +394 -0
- data/activesupport/lib/active_support/notifications.rb +216 -0
- data/activesupport/lib/active_support/notifications/fanout.rb +159 -0
- data/activesupport/lib/active_support/notifications/instrumenter.rb +93 -0
- data/activesupport/lib/active_support/number_helper.rb +371 -0
- data/activesupport/lib/active_support/number_helper/number_converter.rb +184 -0
- data/activesupport/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
- data/activesupport/lib/active_support/number_helper/number_to_delimited_converter.rb +29 -0
- data/activesupport/lib/active_support/number_helper/number_to_human_converter.rb +68 -0
- data/activesupport/lib/active_support/number_helper/number_to_human_size_converter.rb +59 -0
- data/activesupport/lib/active_support/number_helper/number_to_percentage_converter.rb +14 -0
- data/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb +58 -0
- data/activesupport/lib/active_support/number_helper/number_to_rounded_converter.rb +74 -0
- data/activesupport/lib/active_support/number_helper/rounding_helper.rb +66 -0
- data/activesupport/lib/active_support/option_merger.rb +27 -0
- data/activesupport/lib/active_support/ordered_hash.rb +50 -0
- data/activesupport/lib/active_support/ordered_options.rb +85 -0
- data/activesupport/lib/active_support/per_thread_registry.rb +60 -0
- data/activesupport/lib/active_support/proxy_object.rb +15 -0
- data/activesupport/lib/active_support/rails.rb +35 -0
- data/activesupport/lib/active_support/railtie.rb +59 -0
- data/activesupport/lib/active_support/reloader.rb +128 -0
- data/activesupport/lib/active_support/rescuable.rb +174 -0
- data/activesupport/lib/active_support/security_utils.rb +29 -0
- data/activesupport/lib/active_support/string_inquirer.rb +34 -0
- data/activesupport/lib/active_support/subscriber.rb +126 -0
- data/activesupport/lib/active_support/tagged_logging.rb +79 -0
- data/activesupport/lib/active_support/test_case.rb +73 -0
- data/activesupport/lib/active_support/testing/assertions.rb +199 -0
- data/activesupport/lib/active_support/testing/autorun.rb +7 -0
- data/activesupport/lib/active_support/testing/constant_lookup.rb +51 -0
- data/activesupport/lib/active_support/testing/declarative.rb +28 -0
- data/activesupport/lib/active_support/testing/deprecation.rb +39 -0
- data/activesupport/lib/active_support/testing/file_fixtures.rb +36 -0
- data/activesupport/lib/active_support/testing/isolation.rb +108 -0
- data/activesupport/lib/active_support/testing/method_call_assertions.rb +43 -0
- data/activesupport/lib/active_support/testing/setup_and_teardown.rb +52 -0
- data/activesupport/lib/active_support/testing/stream.rb +44 -0
- data/activesupport/lib/active_support/testing/tagged_logging.rb +27 -0
- data/activesupport/lib/active_support/testing/time_helpers.rb +199 -0
- data/activesupport/lib/active_support/time.rb +20 -0
- data/activesupport/lib/active_support/time_with_zone.rb +551 -0
- data/activesupport/lib/active_support/values/time_zone.rb +555 -0
- data/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/activesupport/lib/active_support/version.rb +10 -0
- data/activesupport/lib/active_support/xml_mini.rb +209 -0
- data/activesupport/lib/active_support/xml_mini/jdom.rb +183 -0
- data/activesupport/lib/active_support/xml_mini/libxml.rb +80 -0
- data/activesupport/lib/active_support/xml_mini/libxmlsax.rb +83 -0
- data/activesupport/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/activesupport/lib/active_support/xml_mini/nokogirisax.rb +86 -0
- data/activesupport/lib/active_support/xml_mini/rexml.rb +130 -0
- data/activesupport/test/abstract_unit.rb +41 -0
- data/activesupport/test/array_inquirer_test.rb +63 -0
- data/activesupport/test/autoload_test.rb +83 -0
- data/activesupport/test/autoloading_fixtures/a/b.rb +4 -0
- data/activesupport/test/autoloading_fixtures/a/c/d.rb +4 -0
- data/activesupport/test/autoloading_fixtures/a/c/em/f.rb +4 -0
- data/activesupport/test/autoloading_fixtures/application.rb +3 -0
- data/activesupport/test/autoloading_fixtures/circular1.rb +8 -0
- data/activesupport/test/autoloading_fixtures/circular2.rb +6 -0
- data/activesupport/test/autoloading_fixtures/class_folder.rb +5 -0
- data/activesupport/test/autoloading_fixtures/class_folder/class_folder_subclass.rb +5 -0
- data/activesupport/test/autoloading_fixtures/class_folder/inline_class.rb +4 -0
- data/activesupport/test/autoloading_fixtures/class_folder/nested_class.rb +9 -0
- data/activesupport/test/autoloading_fixtures/conflict.rb +3 -0
- data/activesupport/test/autoloading_fixtures/counting_loader.rb +7 -0
- data/activesupport/test/autoloading_fixtures/cross_site_dependency.rb +4 -0
- data/activesupport/test/autoloading_fixtures/d.rb +4 -0
- data/activesupport/test/autoloading_fixtures/em.rb +4 -0
- data/activesupport/test/autoloading_fixtures/html/some_class.rb +6 -0
- data/activesupport/test/autoloading_fixtures/load_path/loaded_constant.rb +4 -0
- data/activesupport/test/autoloading_fixtures/loads_constant.rb +7 -0
- data/activesupport/test/autoloading_fixtures/module_folder/inline_class.rb +4 -0
- data/activesupport/test/autoloading_fixtures/module_folder/nested_class.rb +6 -0
- data/activesupport/test/autoloading_fixtures/module_folder/nested_sibling.rb +4 -0
- data/activesupport/test/autoloading_fixtures/module_with_custom_const_missing/a/b.rb +3 -0
- data/activesupport/test/autoloading_fixtures/multiple_constant_file.rb +4 -0
- data/activesupport/test/autoloading_fixtures/prepend.rb +10 -0
- data/activesupport/test/autoloading_fixtures/prepend/sub_class_conflict.rb +4 -0
- data/activesupport/test/autoloading_fixtures/raises_arbitrary_exception.rb +6 -0
- data/activesupport/test/autoloading_fixtures/raises_name_error.rb +5 -0
- data/activesupport/test/autoloading_fixtures/raises_no_method_error.rb +5 -0
- data/activesupport/test/autoloading_fixtures/requires_constant.rb +6 -0
- data/activesupport/test/autoloading_fixtures/should_not_be_required.rb +3 -0
- data/activesupport/test/autoloading_fixtures/throws.rb +6 -0
- data/activesupport/test/autoloading_fixtures/typo.rb +3 -0
- data/activesupport/test/benchmarkable_test.rb +78 -0
- data/activesupport/test/broadcast_logger_test.rb +172 -0
- data/activesupport/test/cache/behaviors.rb +9 -0
- data/activesupport/test/cache/behaviors/autoloading_cache_behavior.rb +43 -0
- data/activesupport/test/cache/behaviors/cache_delete_matched_behavior.rb +15 -0
- data/activesupport/test/cache/behaviors/cache_increment_decrement_behavior.rb +23 -0
- data/activesupport/test/cache/behaviors/cache_store_behavior.rb +331 -0
- data/activesupport/test/cache/behaviors/cache_store_version_behavior.rb +88 -0
- data/activesupport/test/cache/behaviors/encoded_key_cache_behavior.rb +36 -0
- data/activesupport/test/cache/behaviors/local_cache_behavior.rb +128 -0
- data/activesupport/test/cache/cache_entry_test.rb +30 -0
- data/activesupport/test/cache/cache_key_test.rb +90 -0
- data/activesupport/test/cache/cache_store_logger_test.rb +36 -0
- data/activesupport/test/cache/cache_store_namespace_test.rb +40 -0
- data/activesupport/test/cache/cache_store_setting_test.rb +68 -0
- data/activesupport/test/cache/cache_store_write_multi_test.rb +62 -0
- data/activesupport/test/cache/local_cache_middleware_test.rb +63 -0
- data/activesupport/test/cache/stores/file_store_test.rb +130 -0
- data/activesupport/test/cache/stores/mem_cache_store_test.rb +76 -0
- data/activesupport/test/cache/stores/memory_store_test.rb +109 -0
- data/activesupport/test/cache/stores/null_store_test.rb +59 -0
- data/activesupport/test/callback_inheritance_test.rb +178 -0
- data/activesupport/test/callbacks_test.rb +1205 -0
- data/activesupport/test/class_cache_test.rb +80 -0
- data/activesupport/test/clean_backtrace_test.rb +76 -0
- data/activesupport/test/clean_logger_test.rb +31 -0
- data/activesupport/test/concern_test.rb +131 -0
- data/activesupport/test/configurable_test.rb +133 -0
- data/activesupport/test/constantize_test_cases.rb +127 -0
- data/activesupport/test/core_ext/array/access_test.rb +38 -0
- data/activesupport/test/core_ext/array/conversions_test.rb +205 -0
- data/activesupport/test/core_ext/array/extract_options_test.rb +47 -0
- data/activesupport/test/core_ext/array/grouping_test.rb +137 -0
- data/activesupport/test/core_ext/array/prepend_append_test.rb +14 -0
- data/activesupport/test/core_ext/array/wrap_test.rb +79 -0
- data/activesupport/test/core_ext/bigdecimal_test.rb +13 -0
- data/activesupport/test/core_ext/class/attribute_test.rb +101 -0
- data/activesupport/test/core_ext/class_test.rb +40 -0
- data/activesupport/test/core_ext/date_and_time_behavior.rb +325 -0
- data/activesupport/test/core_ext/date_and_time_compatibility_test.rb +275 -0
- data/activesupport/test/core_ext/date_ext_test.rb +415 -0
- data/activesupport/test/core_ext/date_time_ext_test.rb +463 -0
- data/activesupport/test/core_ext/digest/uuid_test.rb +26 -0
- data/activesupport/test/core_ext/duration_test.rb +651 -0
- data/activesupport/test/core_ext/enumerable_test.rb +223 -0
- data/activesupport/test/core_ext/file_test.rb +80 -0
- data/activesupport/test/core_ext/hash/transform_keys_test.rb +64 -0
- data/activesupport/test/core_ext/hash/transform_values_test.rb +77 -0
- data/activesupport/test/core_ext/hash_ext_test.rb +1131 -0
- data/activesupport/test/core_ext/integer_ext_test.rb +32 -0
- data/activesupport/test/core_ext/kernel/concern_test.rb +15 -0
- data/activesupport/test/core_ext/kernel_test.rb +53 -0
- data/activesupport/test/core_ext/load_error_test.rb +19 -0
- data/activesupport/test/core_ext/marshal_test.rb +165 -0
- data/activesupport/test/core_ext/module/anonymous_test.rb +16 -0
- data/activesupport/test/core_ext/module/attr_internal_test.rb +55 -0
- data/activesupport/test/core_ext/module/attribute_accessor_per_thread_test.rb +133 -0
- data/activesupport/test/core_ext/module/attribute_accessor_test.rb +137 -0
- data/activesupport/test/core_ext/module/attribute_aliasing_test.rb +61 -0
- data/activesupport/test/core_ext/module/concerning_test.rb +67 -0
- data/activesupport/test/core_ext/module/introspection_test.rb +39 -0
- data/activesupport/test/core_ext/module/reachable_test.rb +43 -0
- data/activesupport/test/core_ext/module/remove_method_test.rb +59 -0
- data/activesupport/test/core_ext/module_test.rb +443 -0
- data/activesupport/test/core_ext/name_error_test.rb +23 -0
- data/activesupport/test/core_ext/numeric_ext_test.rb +491 -0
- data/activesupport/test/core_ext/object/acts_like_test.rb +35 -0
- data/activesupport/test/core_ext/object/blank_test.rb +36 -0
- data/activesupport/test/core_ext/object/deep_dup_test.rb +59 -0
- data/activesupport/test/core_ext/object/duplicable_test.rb +37 -0
- data/activesupport/test/core_ext/object/inclusion_test.rb +61 -0
- data/activesupport/test/core_ext/object/instance_variables_test.rb +33 -0
- data/activesupport/test/core_ext/object/json_cherry_pick_test.rb +44 -0
- data/activesupport/test/core_ext/object/json_gem_encoding_test.rb +68 -0
- data/activesupport/test/core_ext/object/to_param_test.rb +39 -0
- data/activesupport/test/core_ext/object/to_query_test.rb +84 -0
- data/activesupport/test/core_ext/object/try_test.rb +165 -0
- data/activesupport/test/core_ext/range_ext_test.rb +133 -0
- data/activesupport/test/core_ext/regexp_ext_test.rb +36 -0
- data/activesupport/test/core_ext/secure_random_test.rb +22 -0
- data/activesupport/test/core_ext/string_ext_test.rb +932 -0
- data/activesupport/test/core_ext/time_ext_test.rb +999 -0
- data/activesupport/test/core_ext/time_with_zone_test.rb +1304 -0
- data/activesupport/test/core_ext/uri_ext_test.rb +14 -0
- data/activesupport/test/current_attributes_test.rb +105 -0
- data/activesupport/test/dependencies/check_warnings.rb +4 -0
- data/activesupport/test/dependencies/conflict.rb +3 -0
- data/activesupport/test/dependencies/cross_site_depender.rb +5 -0
- data/activesupport/test/dependencies/mutual_one.rb +6 -0
- data/activesupport/test/dependencies/mutual_two.rb +6 -0
- data/activesupport/test/dependencies/raises_exception.rb +5 -0
- data/activesupport/test/dependencies/raises_exception_without_blame_file.rb +7 -0
- data/activesupport/test/dependencies/requires_nonexistent0.rb +3 -0
- data/activesupport/test/dependencies/requires_nonexistent1.rb +3 -0
- data/activesupport/test/dependencies/service_one.rb +7 -0
- data/activesupport/test/dependencies/service_two.rb +4 -0
- data/activesupport/test/dependencies_test.rb +1077 -0
- data/activesupport/test/dependencies_test_helpers.rb +30 -0
- data/activesupport/test/deprecation/method_wrappers_test.rb +36 -0
- data/activesupport/test/deprecation/proxy_wrappers_test.rb +24 -0
- data/activesupport/test/deprecation_test.rb +430 -0
- data/activesupport/test/descendants_tracker_test_cases.rb +67 -0
- data/activesupport/test/descendants_tracker_with_autoloading_test.rb +36 -0
- data/activesupport/test/descendants_tracker_without_autoloading_test.rb +19 -0
- data/activesupport/test/evented_file_update_checker_test.rb +197 -0
- data/activesupport/test/executor_test.rb +242 -0
- data/activesupport/test/file_fixtures/sample.txt +1 -0
- data/activesupport/test/file_update_checker_shared_tests.rb +284 -0
- data/activesupport/test/file_update_checker_test.rb +21 -0
- data/activesupport/test/fixtures/autoload/another_class.rb +4 -0
- data/activesupport/test/fixtures/autoload/some_class.rb +4 -0
- data/activesupport/test/fixtures/xml/jdom_doctype.dtd +1 -0
- data/activesupport/test/fixtures/xml/jdom_entities.txt +1 -0
- data/activesupport/test/fixtures/xml/jdom_include.txt +1 -0
- data/activesupport/test/gzip_test.rb +45 -0
- data/activesupport/test/hash_with_indifferent_access_test.rb +773 -0
- data/activesupport/test/i18n_test.rb +106 -0
- data/activesupport/test/inflector_test.rb +548 -0
- data/activesupport/test/inflector_test_cases.rb +375 -0
- data/activesupport/test/json/decoding_test.rb +124 -0
- data/activesupport/test/json/encoding_test.rb +477 -0
- data/activesupport/test/json/encoding_test_cases.rb +98 -0
- data/activesupport/test/key_generator_test.rb +79 -0
- data/activesupport/test/lazy_load_hooks_test.rb +140 -0
- data/activesupport/test/log_subscriber_test.rb +126 -0
- data/activesupport/test/logger_test.rb +270 -0
- data/activesupport/test/message_encryptor_test.rb +176 -0
- data/activesupport/test/message_verifier_test.rb +158 -0
- data/activesupport/test/metadata/shared_metadata_tests.rb +93 -0
- data/activesupport/test/multibyte_chars_test.rb +752 -0
- data/activesupport/test/multibyte_conformance_test.rb +110 -0
- data/activesupport/test/multibyte_grapheme_break_conformance_test.rb +62 -0
- data/activesupport/test/multibyte_normalization_conformance_test.rb +112 -0
- data/activesupport/test/multibyte_proxy_test.rb +34 -0
- data/activesupport/test/multibyte_test_helpers.rb +41 -0
- data/activesupport/test/multibyte_unicode_database_test.rb +26 -0
- data/activesupport/test/notifications/evented_notification_test.rb +89 -0
- data/activesupport/test/notifications/instrumenter_test.rb +60 -0
- data/activesupport/test/notifications_test.rb +283 -0
- data/activesupport/test/number_helper_i18n_test.rb +151 -0
- data/activesupport/test/number_helper_test.rb +411 -0
- data/activesupport/test/option_merger_test.rb +97 -0
- data/activesupport/test/ordered_hash_test.rb +324 -0
- data/activesupport/test/ordered_options_test.rb +105 -0
- data/activesupport/test/reloader_test.rb +99 -0
- data/activesupport/test/rescuable_test.rb +176 -0
- data/activesupport/test/safe_buffer_test.rb +182 -0
- data/activesupport/test/security_utils_test.rb +16 -0
- data/activesupport/test/share_lock_test.rb +580 -0
- data/activesupport/test/string_inquirer_test.rb +46 -0
- data/activesupport/test/subscriber_test.rb +56 -0
- data/activesupport/test/tagged_logging_test.rb +117 -0
- data/activesupport/test/test_case_test.rb +339 -0
- data/activesupport/test/testing/constant_lookup_test.rb +78 -0
- data/activesupport/test/testing/file_fixtures_test.rb +32 -0
- data/activesupport/test/testing/method_call_assertions_test.rb +125 -0
- data/activesupport/test/time_travel_test.rb +189 -0
- data/activesupport/test/time_zone_test.rb +738 -0
- data/activesupport/test/time_zone_test_helpers.rb +26 -0
- data/activesupport/test/transliterate_test.rb +54 -0
- data/activesupport/test/xml_mini/jdom_engine_test.rb +53 -0
- data/activesupport/test/xml_mini/libxml_engine_test.rb +21 -0
- data/activesupport/test/xml_mini/libxmlsax_engine_test.rb +16 -0
- data/activesupport/test/xml_mini/nokogiri_engine_test.rb +16 -0
- data/activesupport/test/xml_mini/nokogirisax_engine_test.rb +16 -0
- data/activesupport/test/xml_mini/rexml_engine_test.rb +27 -0
- data/activesupport/test/xml_mini/xml_mini_engine_test.rb +264 -0
- data/activesupport/test/xml_mini_test.rb +355 -0
- data/ci/phantomjs.js +149 -0
- data/ci/travis.rb +187 -0
- data/guides/.document +0 -0
- data/guides/CHANGELOG.md +1 -0
- data/guides/Rakefile +91 -0
- data/guides/assets/images/akshaysurve.jpg +0 -0
- data/guides/assets/images/belongs_to.png +0 -0
- data/guides/assets/images/book_icon.gif +0 -0
- data/guides/assets/images/bullet.gif +0 -0
- data/guides/assets/images/chapters_icon.gif +0 -0
- data/guides/assets/images/check_bullet.gif +0 -0
- data/guides/assets/images/credits_pic_blank.gif +0 -0
- data/guides/assets/images/csrf.png +0 -0
- data/guides/assets/images/edge_badge.png +0 -0
- data/guides/assets/images/favicon.ico +0 -0
- data/guides/assets/images/feature_tile.gif +0 -0
- data/guides/assets/images/footer_tile.gif +0 -0
- data/guides/assets/images/fxn.png +0 -0
- data/guides/assets/images/getting_started/article_with_comments.png +0 -0
- data/guides/assets/images/getting_started/challenge.png +0 -0
- data/guides/assets/images/getting_started/confirm_dialog.png +0 -0
- data/guides/assets/images/getting_started/forbidden_attributes_for_new_article.png +0 -0
- data/guides/assets/images/getting_started/form_with_errors.png +0 -0
- data/guides/assets/images/getting_started/index_action_with_edit_link.png +0 -0
- data/guides/assets/images/getting_started/new_article.png +0 -0
- data/guides/assets/images/getting_started/rails_welcome.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_controller.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_route_matches.png +0 -0
- data/guides/assets/images/getting_started/show_action_for_articles.png +0 -0
- data/guides/assets/images/getting_started/template_is_missing_articles_new.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_create_for_articles.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_new_for_articles.png +0 -0
- data/guides/assets/images/grey_bullet.gif +0 -0
- data/guides/assets/images/habtm.png +0 -0
- data/guides/assets/images/has_many.png +0 -0
- data/guides/assets/images/has_many_through.png +0 -0
- data/guides/assets/images/has_one.png +0 -0
- data/guides/assets/images/has_one_through.png +0 -0
- data/guides/assets/images/header_backdrop.png +0 -0
- data/guides/assets/images/header_tile.gif +0 -0
- data/guides/assets/images/i18n/demo_html_safe.png +0 -0
- data/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
- data/guides/assets/images/i18n/demo_translated_en.png +0 -0
- data/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
- data/guides/assets/images/i18n/demo_translation_missing.png +0 -0
- data/guides/assets/images/i18n/demo_untranslated.png +0 -0
- data/guides/assets/images/icons/README +5 -0
- data/guides/assets/images/icons/callouts/1.png +0 -0
- data/guides/assets/images/icons/callouts/10.png +0 -0
- data/guides/assets/images/icons/callouts/11.png +0 -0
- data/guides/assets/images/icons/callouts/12.png +0 -0
- data/guides/assets/images/icons/callouts/13.png +0 -0
- data/guides/assets/images/icons/callouts/14.png +0 -0
- data/guides/assets/images/icons/callouts/15.png +0 -0
- data/guides/assets/images/icons/callouts/2.png +0 -0
- data/guides/assets/images/icons/callouts/3.png +0 -0
- data/guides/assets/images/icons/callouts/4.png +0 -0
- data/guides/assets/images/icons/callouts/5.png +0 -0
- data/guides/assets/images/icons/callouts/6.png +0 -0
- data/guides/assets/images/icons/callouts/7.png +0 -0
- data/guides/assets/images/icons/callouts/8.png +0 -0
- data/guides/assets/images/icons/callouts/9.png +0 -0
- data/guides/assets/images/icons/caution.png +0 -0
- data/guides/assets/images/icons/example.png +0 -0
- data/guides/assets/images/icons/home.png +0 -0
- data/guides/assets/images/icons/important.png +0 -0
- data/guides/assets/images/icons/next.png +0 -0
- data/guides/assets/images/icons/note.png +0 -0
- data/guides/assets/images/icons/prev.png +0 -0
- data/guides/assets/images/icons/tip.png +0 -0
- data/guides/assets/images/icons/up.png +0 -0
- data/guides/assets/images/icons/warning.png +0 -0
- data/guides/assets/images/nav_arrow.gif +0 -0
- data/guides/assets/images/oscardelben.jpg +0 -0
- data/guides/assets/images/polymorphic.png +0 -0
- data/guides/assets/images/radar.png +0 -0
- data/guides/assets/images/rails4_features.png +0 -0
- data/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- data/guides/assets/images/rails_guides_logo.gif +0 -0
- data/guides/assets/images/rails_logo_remix.gif +0 -0
- data/guides/assets/images/session_fixation.png +0 -0
- data/guides/assets/images/tab_grey.gif +0 -0
- data/guides/assets/images/tab_info.gif +0 -0
- data/guides/assets/images/tab_note.gif +0 -0
- data/guides/assets/images/tab_red.gif +0 -0
- data/guides/assets/images/tab_yellow.gif +0 -0
- data/guides/assets/images/tab_yellow.png +0 -0
- data/guides/assets/images/vijaydev.jpg +0 -0
- data/guides/assets/javascripts/guides.js +53 -0
- data/guides/assets/javascripts/jquery.min.js +4 -0
- data/guides/assets/javascripts/responsive-tables.js +43 -0
- data/guides/assets/javascripts/syntaxhighlighter.js +20 -0
- data/guides/assets/stylesheets/fixes.css +16 -0
- data/guides/assets/stylesheets/kindle.css +11 -0
- data/guides/assets/stylesheets/main.css +718 -0
- data/guides/assets/stylesheets/print.css +52 -0
- data/guides/assets/stylesheets/reset.css +43 -0
- data/guides/assets/stylesheets/responsive-tables.css +50 -0
- data/guides/assets/stylesheets/style.css +13 -0
- data/guides/assets/stylesheets/syntaxhighlighter/shCore.css +226 -0
- data/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +116 -0
- data/guides/bug_report_templates/action_controller_gem.rb +58 -0
- data/guides/bug_report_templates/action_controller_master.rb +54 -0
- data/guides/bug_report_templates/active_job_gem.rb +34 -0
- data/guides/bug_report_templates/active_job_master.rb +34 -0
- data/guides/bug_report_templates/active_record_gem.rb +54 -0
- data/guides/bug_report_templates/active_record_master.rb +51 -0
- data/guides/bug_report_templates/active_record_migrations_gem.rb +65 -0
- data/guides/bug_report_templates/active_record_migrations_master.rb +65 -0
- data/guides/bug_report_templates/benchmark.rb +52 -0
- data/guides/bug_report_templates/generic_gem.rb +27 -0
- data/guides/bug_report_templates/generic_master.rb +25 -0
- data/guides/rails_guides.rb +29 -0
- data/guides/rails_guides/generator.rb +208 -0
- data/guides/rails_guides/helpers.rb +55 -0
- data/guides/rails_guides/indexer.rb +70 -0
- data/guides/rails_guides/kindle.rb +116 -0
- data/guides/rails_guides/levenshtein.rb +44 -0
- data/guides/rails_guides/markdown.rb +173 -0
- data/guides/rails_guides/markdown/renderer.rb +123 -0
- data/guides/source/2_2_release_notes.md +436 -0
- data/guides/source/2_3_release_notes.md +623 -0
- data/guides/source/3_0_release_notes.md +612 -0
- data/guides/source/3_1_release_notes.md +561 -0
- data/guides/source/3_2_release_notes.md +570 -0
- data/guides/source/4_0_release_notes.md +284 -0
- data/guides/source/4_1_release_notes.md +732 -0
- data/guides/source/4_2_release_notes.md +890 -0
- data/guides/source/5_0_release_notes.md +1096 -0
- data/guides/source/5_1_release_notes.md +652 -0
- data/guides/source/_license.html.erb +2 -0
- data/guides/source/_welcome.html.erb +25 -0
- data/guides/source/action_cable_overview.md +691 -0
- data/guides/source/action_controller_overview.md +1218 -0
- data/guides/source/action_mailer_basics.md +826 -0
- data/guides/source/action_view_overview.md +1511 -0
- data/guides/source/active_job_basics.md +403 -0
- data/guides/source/active_model_basics.md +505 -0
- data/guides/source/active_record_basics.md +377 -0
- data/guides/source/active_record_callbacks.md +459 -0
- data/guides/source/active_record_migrations.md +1055 -0
- data/guides/source/active_record_postgresql.md +517 -0
- data/guides/source/active_record_querying.md +2048 -0
- data/guides/source/active_record_validations.md +1296 -0
- data/guides/source/active_support_core_extensions.md +3748 -0
- data/guides/source/active_support_instrumentation.md +552 -0
- data/guides/source/api_app.md +426 -0
- data/guides/source/api_documentation_guidelines.md +366 -0
- data/guides/source/asset_pipeline.md +1299 -0
- data/guides/source/association_basics.md +2467 -0
- data/guides/source/autoloading_and_reloading_constants.md +1323 -0
- data/guides/source/caching_with_rails.md +615 -0
- data/guides/source/command_line.md +664 -0
- data/guides/source/configuring.md +1341 -0
- data/guides/source/contributing_to_ruby_on_rails.md +667 -0
- data/guides/source/credits.html.erb +80 -0
- data/guides/source/debugging_rails_applications.md +954 -0
- data/guides/source/development_dependencies_install.md +378 -0
- data/guides/source/documents.yaml +230 -0
- data/guides/source/engines.md +1527 -0
- data/guides/source/form_helpers.md +1023 -0
- data/guides/source/generators.md +716 -0
- data/guides/source/getting_started.md +2100 -0
- data/guides/source/i18n.md +1208 -0
- data/guides/source/index.html.erb +28 -0
- data/guides/source/initialization.md +712 -0
- data/guides/source/kindle/copyright.html.erb +1 -0
- data/guides/source/kindle/layout.html.erb +27 -0
- data/guides/source/kindle/rails_guides.opf.erb +52 -0
- data/guides/source/kindle/toc.html.erb +24 -0
- data/guides/source/kindle/toc.ncx.erb +64 -0
- data/guides/source/kindle/welcome.html.erb +7 -0
- data/guides/source/layout.html.erb +138 -0
- data/guides/source/layouts_and_rendering.md +1330 -0
- data/guides/source/maintenance_policy.md +80 -0
- data/guides/source/plugins.md +484 -0
- data/guides/source/rails_application_templates.md +282 -0
- data/guides/source/rails_on_rack.md +310 -0
- data/guides/source/routing.md +1182 -0
- data/guides/source/ruby_on_rails_guides_guidelines.md +173 -0
- data/guides/source/security.md +1066 -0
- data/guides/source/testing.md +1566 -0
- data/guides/source/upgrading_ruby_on_rails.md +1552 -0
- data/guides/source/working_with_javascript_in_rails.md +550 -0
- data/guides/w3c_validator.rb +98 -0
- data/rails.gemspec +36 -0
- data/railties/.gitignore +1 -0
- data/railties/CHANGELOG.md +129 -0
- data/railties/MIT-LICENSE +20 -0
- data/railties/RDOC_MAIN.rdoc +73 -0
- data/railties/README.rdoc +40 -0
- data/railties/Rakefile +37 -0
- data/railties/bin/test +5 -0
- data/railties/exe/rails +10 -0
- data/railties/lib/minitest/rails_plugin.rb +54 -0
- data/railties/lib/rails.rb +114 -0
- data/railties/lib/rails/all.rb +20 -0
- data/railties/lib/rails/api/generator.rb +37 -0
- data/railties/lib/rails/api/task.rb +185 -0
- data/railties/lib/rails/app_loader.rb +77 -0
- data/railties/lib/rails/app_updater.rb +33 -0
- data/railties/lib/rails/application.rb +531 -0
- data/railties/lib/rails/application/bootstrap.rb +89 -0
- data/railties/lib/rails/application/configuration.rb +252 -0
- data/railties/lib/rails/application/default_middleware_stack.rb +101 -0
- data/railties/lib/rails/application/finisher.rb +196 -0
- data/railties/lib/rails/application/routes_reloader.rb +71 -0
- data/railties/lib/rails/application_controller.rb +18 -0
- data/railties/lib/rails/backtrace_cleaner.rb +34 -0
- data/railties/lib/rails/cli.rb +19 -0
- data/railties/lib/rails/code_statistics.rb +115 -0
- data/railties/lib/rails/code_statistics_calculator.rb +88 -0
- data/railties/lib/rails/command.rb +113 -0
- data/railties/lib/rails/command/actions.rb +44 -0
- data/railties/lib/rails/command/base.rb +157 -0
- data/railties/lib/rails/command/behavior.rb +125 -0
- data/railties/lib/rails/command/environment_argument.rb +47 -0
- data/railties/lib/rails/commands.rb +18 -0
- data/railties/lib/rails/commands/application/application_command.rb +31 -0
- data/railties/lib/rails/commands/console/console_command.rb +100 -0
- data/railties/lib/rails/commands/dbconsole/dbconsole_command.rb +170 -0
- data/railties/lib/rails/commands/destroy/destroy_command.rb +28 -0
- data/railties/lib/rails/commands/generate/generate_command.rb +30 -0
- data/railties/lib/rails/commands/help/USAGE +16 -0
- data/railties/lib/rails/commands/help/help_command.rb +15 -0
- data/railties/lib/rails/commands/new/new_command.rb +19 -0
- data/railties/lib/rails/commands/plugin/plugin_command.rb +45 -0
- data/railties/lib/rails/commands/rake/rake_command.rb +51 -0
- data/railties/lib/rails/commands/runner/USAGE +20 -0
- data/railties/lib/rails/commands/runner/runner_command.rb +53 -0
- data/railties/lib/rails/commands/secrets/USAGE +60 -0
- data/railties/lib/rails/commands/secrets/secrets_command.rb +66 -0
- data/railties/lib/rails/commands/server/server_command.rb +243 -0
- data/railties/lib/rails/commands/test/test_command.rb +37 -0
- data/railties/lib/rails/commands/version/version_command.rb +11 -0
- data/railties/lib/rails/configuration.rb +137 -0
- data/railties/lib/rails/console/app.rb +38 -0
- data/railties/lib/rails/console/helpers.rb +19 -0
- data/railties/lib/rails/dev_caching.rb +44 -0
- data/railties/lib/rails/engine.rb +705 -0
- data/railties/lib/rails/engine/commands.rb +9 -0
- data/railties/lib/rails/engine/configuration.rb +88 -0
- data/railties/lib/rails/engine/railties.rb +23 -0
- data/railties/lib/rails/engine/updater.rb +21 -0
- data/railties/lib/rails/gem_version.rb +17 -0
- data/railties/lib/rails/generators.rb +319 -0
- data/railties/lib/rails/generators/actions.rb +326 -0
- data/railties/lib/rails/generators/actions/create_migration.rb +71 -0
- data/railties/lib/rails/generators/active_model.rb +80 -0
- data/railties/lib/rails/generators/app_base.rb +447 -0
- data/railties/lib/rails/generators/base.rb +417 -0
- data/railties/lib/rails/generators/css/assets/assets_generator.rb +15 -0
- data/railties/lib/rails/generators/css/assets/templates/stylesheet.css +4 -0
- data/railties/lib/rails/generators/css/scaffold/scaffold_generator.rb +18 -0
- data/railties/lib/rails/generators/erb.rb +27 -0
- data/railties/lib/rails/generators/erb/controller/controller_generator.rb +24 -0
- data/railties/lib/rails/generators/erb/controller/templates/view.html.erb +2 -0
- data/railties/lib/rails/generators/erb/mailer/mailer_generator.rb +42 -0
- data/railties/lib/rails/generators/erb/mailer/templates/layout.html.erb.tt +13 -0
- data/railties/lib/rails/generators/erb/mailer/templates/layout.text.erb.tt +1 -0
- data/railties/lib/rails/generators/erb/mailer/templates/view.html.erb +5 -0
- data/railties/lib/rails/generators/erb/mailer/templates/view.text.erb +3 -0
- data/railties/lib/rails/generators/erb/scaffold/scaffold_generator.rb +33 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/_form.html.erb +34 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/edit.html.erb +6 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/index.html.erb +31 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb +5 -0
- data/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb +11 -0
- data/railties/lib/rails/generators/generated_attribute.rb +177 -0
- data/railties/lib/rails/generators/js/assets/assets_generator.rb +15 -0
- data/railties/lib/rails/generators/js/assets/templates/javascript.js +2 -0
- data/railties/lib/rails/generators/migration.rb +71 -0
- data/railties/lib/rails/generators/model_helpers.rb +30 -0
- data/railties/lib/rails/generators/named_base.rb +207 -0
- data/railties/lib/rails/generators/rails/app/USAGE +14 -0
- data/railties/lib/rails/generators/rails/app/app_generator.rb +579 -0
- data/railties/lib/rails/generators/rails/app/templates/Gemfile +69 -0
- data/railties/lib/rails/generators/rails/app/templates/README.md +24 -0
- data/railties/lib/rails/generators/rails/app/templates/Rakefile +6 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/config/manifest.js.tt +5 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +20 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/javascripts/cable.js +13 -0
- data/railties/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css +15 -0
- data/railties/lib/rails/generators/rails/app/templates/app/channels/application_cable/channel.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/app/channels/application_cable/connection.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +2 -0
- data/railties/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb +2 -0
- data/railties/lib/rails/generators/rails/app/templates/app/jobs/application_job.rb +2 -0
- data/railties/lib/rails/generators/rails/app/templates/app/mailers/application_mailer.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/app/models/application_record.rb +3 -0
- data/railties/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +23 -0
- data/railties/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.html.erb.tt +13 -0
- data/railties/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.text.erb.tt +1 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/bundle +2 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/rails +3 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/rake +3 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/setup.tt +39 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/update.tt +29 -0
- data/railties/lib/rails/generators/rails/app/templates/bin/yarn +10 -0
- data/railties/lib/rails/generators/rails/app/templates/config.ru +5 -0
- data/railties/lib/rails/generators/rails/app/templates/config/application.rb +44 -0
- data/railties/lib/rails/generators/rails/app/templates/config/boot.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/config/cable.yml +10 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml +50 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml +86 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml +69 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml +53 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +69 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml +24 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +58 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/oracle.yml +61 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +85 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml +25 -0
- data/railties/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml +52 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environment.rb +5 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +64 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +107 -0
- data/railties/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +47 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/application_controller_renderer.rb +8 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +7 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb +5 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/cors.rb +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb +4 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_5_2.rb.tt +27 -0
- data/railties/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +16 -0
- data/railties/lib/rails/generators/rails/app/templates/config/locales/en.yml +33 -0
- data/railties/lib/rails/generators/rails/app/templates/config/puma.rb +56 -0
- data/railties/lib/rails/generators/rails/app/templates/config/routes.rb +3 -0
- data/railties/lib/rails/generators/rails/app/templates/config/secrets.yml +32 -0
- data/railties/lib/rails/generators/rails/app/templates/config/spring.rb +6 -0
- data/railties/lib/rails/generators/rails/app/templates/config/storage.yml +35 -0
- data/railties/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +7 -0
- data/railties/lib/rails/generators/rails/app/templates/gitignore +35 -0
- data/railties/lib/rails/generators/rails/app/templates/package.json +5 -0
- data/railties/lib/rails/generators/rails/app/templates/public/404.html +67 -0
- data/railties/lib/rails/generators/rails/app/templates/public/422.html +67 -0
- data/railties/lib/rails/generators/rails/app/templates/public/500.html +66 -0
- data/railties/lib/rails/generators/rails/app/templates/public/apple-touch-icon-precomposed.png +0 -0
- data/railties/lib/rails/generators/rails/app/templates/public/apple-touch-icon.png +0 -0
- data/railties/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
- data/railties/lib/rails/generators/rails/app/templates/public/robots.txt +1 -0
- data/railties/lib/rails/generators/rails/app/templates/ruby-version +1 -0
- data/railties/lib/rails/generators/rails/app/templates/test/application_system_test_case.rb +5 -0
- data/railties/lib/rails/generators/rails/app/templates/test/test_helper.rb +11 -0
- data/railties/lib/rails/generators/rails/application_record/application_record_generator.rb +9 -0
- data/railties/lib/rails/generators/rails/assets/USAGE +20 -0
- data/railties/lib/rails/generators/rails/assets/assets_generator.rb +27 -0
- data/railties/lib/rails/generators/rails/assets/templates/javascript.js +2 -0
- data/railties/lib/rails/generators/rails/assets/templates/stylesheet.css +4 -0
- data/railties/lib/rails/generators/rails/controller/USAGE +18 -0
- data/railties/lib/rails/generators/rails/controller/controller_generator.rb +66 -0
- data/railties/lib/rails/generators/rails/controller/templates/controller.rb +13 -0
- data/railties/lib/rails/generators/rails/encrypted_secrets/encrypted_secrets_generator.rb +72 -0
- data/railties/lib/rails/generators/rails/generator/USAGE +13 -0
- data/railties/lib/rails/generators/rails/generator/generator_generator.rb +28 -0
- data/railties/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +3 -0
- data/railties/lib/rails/generators/rails/generator/templates/USAGE.tt +8 -0
- data/railties/lib/rails/generators/rails/generator/templates/templates/.empty_directory +0 -0
- data/railties/lib/rails/generators/rails/helper/USAGE +13 -0
- data/railties/lib/rails/generators/rails/helper/helper_generator.rb +15 -0
- data/railties/lib/rails/generators/rails/helper/templates/helper.rb +4 -0
- data/railties/lib/rails/generators/rails/integration_test/USAGE +10 -0
- data/railties/lib/rails/generators/rails/integration_test/integration_test_generator.rb +9 -0
- data/railties/lib/rails/generators/rails/migration/USAGE +35 -0
- data/railties/lib/rails/generators/rails/migration/migration_generator.rb +10 -0
- data/railties/lib/rails/generators/rails/model/USAGE +114 -0
- data/railties/lib/rails/generators/rails/model/model_generator.rb +14 -0
- data/railties/lib/rails/generators/rails/plugin/USAGE +10 -0
- data/railties/lib/rails/generators/rails/plugin/plugin_generator.rb +450 -0
- data/railties/lib/rails/generators/rails/plugin/templates/%name%.gemspec +24 -0
- data/railties/lib/rails/generators/rails/plugin/templates/Gemfile +48 -0
- data/railties/lib/rails/generators/rails/plugin/templates/MIT-LICENSE +20 -0
- data/railties/lib/rails/generators/rails/plugin/templates/README.md +28 -0
- data/railties/lib/rails/generators/rails/plugin/templates/Rakefile +28 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/controllers/%namespaced_name%/application_controller.rb.tt +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/helpers/%namespaced_name%/application_helper.rb.tt +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/jobs/%namespaced_name%/application_job.rb.tt +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/mailers/%namespaced_name%/application_mailer.rb.tt +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/models/%namespaced_name%/application_record.rb.tt +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +14 -0
- data/railties/lib/rails/generators/rails/plugin/templates/bin/rails.tt +30 -0
- data/railties/lib/rails/generators/rails/plugin/templates/bin/test.tt +4 -0
- data/railties/lib/rails/generators/rails/plugin/templates/config/routes.rb +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/gitignore +15 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/engine.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/railtie.rb +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/version.rb +1 -0
- data/railties/lib/rails/generators/rails/plugin/templates/lib/tasks/%namespaced_name%_tasks.rake +4 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/application.rb +23 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/boot.rb +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/dummy_manifest.js +10 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/engine_manifest.js +6 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/javascripts.js +13 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/routes.rb +3 -0
- data/railties/lib/rails/generators/rails/plugin/templates/rails/stylesheets.css +15 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/%namespaced_name%_test.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/application_system_test_case.rb +5 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb +7 -0
- data/railties/lib/rails/generators/rails/plugin/templates/test/test_helper.rb +26 -0
- data/railties/lib/rails/generators/rails/resource/USAGE +23 -0
- data/railties/lib/rails/generators/rails/resource/resource_generator.rb +21 -0
- data/railties/lib/rails/generators/rails/resource_route/resource_route_generator.rb +48 -0
- data/railties/lib/rails/generators/rails/scaffold/USAGE +41 -0
- data/railties/lib/rails/generators/rails/scaffold/scaffold_generator.rb +36 -0
- data/railties/lib/rails/generators/rails/scaffold/templates/scaffold.css +80 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/USAGE +19 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +37 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb +61 -0
- data/railties/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +68 -0
- data/railties/lib/rails/generators/rails/system_test/USAGE +10 -0
- data/railties/lib/rails/generators/rails/system_test/system_test_generator.rb +9 -0
- data/railties/lib/rails/generators/rails/task/USAGE +9 -0
- data/railties/lib/rails/generators/rails/task/task_generator.rb +13 -0
- data/railties/lib/rails/generators/rails/task/templates/task.rb +8 -0
- data/railties/lib/rails/generators/resource_helpers.rb +87 -0
- data/railties/lib/rails/generators/test_case.rb +37 -0
- data/railties/lib/rails/generators/test_unit.rb +10 -0
- data/railties/lib/rails/generators/test_unit/controller/controller_generator.rb +17 -0
- data/railties/lib/rails/generators/test_unit/controller/templates/functional_test.rb +25 -0
- data/railties/lib/rails/generators/test_unit/generator/generator_generator.rb +28 -0
- data/railties/lib/rails/generators/test_unit/generator/templates/generator_test.rb +18 -0
- data/railties/lib/rails/generators/test_unit/helper/helper_generator.rb +11 -0
- data/railties/lib/rails/generators/test_unit/integration/integration_generator.rb +15 -0
- data/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb +11 -0
- data/railties/lib/rails/generators/test_unit/job/job_generator.rb +15 -0
- data/railties/lib/rails/generators/test_unit/job/templates/unit_test.rb.erb +9 -0
- data/railties/lib/rails/generators/test_unit/mailer/mailer_generator.rb +28 -0
- data/railties/lib/rails/generators/test_unit/mailer/templates/functional_test.rb +23 -0
- data/railties/lib/rails/generators/test_unit/mailer/templates/preview.rb +15 -0
- data/railties/lib/rails/generators/test_unit/model/model_generator.rb +37 -0
- data/railties/lib/rails/generators/test_unit/model/templates/fixtures.yml +29 -0
- data/railties/lib/rails/generators/test_unit/model/templates/unit_test.rb +11 -0
- data/railties/lib/rails/generators/test_unit/plugin/plugin_generator.rb +15 -0
- data/railties/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +7 -0
- data/railties/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +4 -0
- data/railties/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +59 -0
- data/railties/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb +46 -0
- data/railties/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +56 -0
- data/railties/lib/rails/generators/test_unit/scaffold/templates/system_test.rb +51 -0
- data/railties/lib/rails/generators/test_unit/system/system_generator.rb +19 -0
- data/railties/lib/rails/generators/test_unit/system/templates/application_system_test_case.rb +7 -0
- data/railties/lib/rails/generators/test_unit/system/templates/system_test.rb +11 -0
- data/railties/lib/rails/generators/testing/assertions.rb +127 -0
- data/railties/lib/rails/generators/testing/behaviour.rb +111 -0
- data/railties/lib/rails/generators/testing/setup_and_teardown.rb +20 -0
- data/railties/lib/rails/info.rb +105 -0
- data/railties/lib/rails/info_controller.rb +46 -0
- data/railties/lib/rails/initializable.rb +95 -0
- data/railties/lib/rails/mailers_controller.rb +87 -0
- data/railties/lib/rails/paths.rb +227 -0
- data/railties/lib/rails/plugin/test.rb +9 -0
- data/railties/lib/rails/rack.rb +7 -0
- data/railties/lib/rails/rack/logger.rb +80 -0
- data/railties/lib/rails/railtie.rb +260 -0
- data/railties/lib/rails/railtie/configurable.rb +37 -0
- data/railties/lib/rails/railtie/configuration.rb +102 -0
- data/railties/lib/rails/ruby_version_check.rb +15 -0
- data/railties/lib/rails/secrets.rb +123 -0
- data/railties/lib/rails/source_annotation_extractor.rb +141 -0
- data/railties/lib/rails/tasks.rb +22 -0
- data/railties/lib/rails/tasks/annotations.rake +22 -0
- data/railties/lib/rails/tasks/dev.rake +10 -0
- data/railties/lib/rails/tasks/engine.rake +85 -0
- data/railties/lib/rails/tasks/framework.rake +58 -0
- data/railties/lib/rails/tasks/initializers.rake +8 -0
- data/railties/lib/rails/tasks/log.rake +42 -0
- data/railties/lib/rails/tasks/middleware.rake +9 -0
- data/railties/lib/rails/tasks/misc.rake +79 -0
- data/railties/lib/rails/tasks/restart.rake +9 -0
- data/railties/lib/rails/tasks/routes.rake +31 -0
- data/railties/lib/rails/tasks/statistics.rake +31 -0
- data/railties/lib/rails/tasks/tmp.rake +44 -0
- data/railties/lib/rails/tasks/yarn.rake +13 -0
- data/railties/lib/rails/templates/layouts/application.html.erb +36 -0
- data/railties/lib/rails/templates/rails/info/properties.html.erb +1 -0
- data/railties/lib/rails/templates/rails/info/routes.html.erb +9 -0
- data/railties/lib/rails/templates/rails/mailers/email.html.erb +133 -0
- data/railties/lib/rails/templates/rails/mailers/index.html.erb +8 -0
- data/railties/lib/rails/templates/rails/mailers/mailer.html.erb +6 -0
- data/railties/lib/rails/templates/rails/welcome/index.html.erb +74 -0
- data/railties/lib/rails/test_help.rb +52 -0
- data/railties/lib/rails/test_unit/line_filtering.rb +13 -0
- data/railties/lib/rails/test_unit/railtie.rb +29 -0
- data/railties/lib/rails/test_unit/reporter.rb +104 -0
- data/railties/lib/rails/test_unit/runner.rb +143 -0
- data/railties/lib/rails/test_unit/testing.rake +58 -0
- data/railties/lib/rails/version.rb +10 -0
- data/railties/lib/rails/welcome_controller.rb +10 -0
- data/railties/railties.gemspec +41 -0
- data/railties/test/abstract_unit.rb +33 -0
- data/railties/test/app_loader_test.rb +91 -0
- data/railties/test/application/asset_debugging_test.rb +171 -0
- data/railties/test/application/assets_test.rb +524 -0
- data/railties/test/application/bin_setup_test.rb +62 -0
- data/railties/test/application/configuration/custom_test.rb +47 -0
- data/railties/test/application/configuration_test.rb +1816 -0
- data/railties/test/application/console_test.rb +158 -0
- data/railties/test/application/current_attributes_integration_test.rb +86 -0
- data/railties/test/application/dbconsole_test.rb +78 -0
- data/railties/test/application/generators_test.rb +200 -0
- data/railties/test/application/help_test.rb +25 -0
- data/railties/test/application/initializers/frameworks_test.rb +276 -0
- data/railties/test/application/initializers/hooks_test.rb +91 -0
- data/railties/test/application/initializers/i18n_test.rb +296 -0
- data/railties/test/application/initializers/load_path_test.rb +111 -0
- data/railties/test/application/initializers/notifications_test.rb +57 -0
- data/railties/test/application/integration_test_case_test.rb +75 -0
- data/railties/test/application/loading_test.rb +373 -0
- data/railties/test/application/mailer_previews_test.rb +787 -0
- data/railties/test/application/middleware/cache_test.rb +181 -0
- data/railties/test/application/middleware/cookies_test.rb +48 -0
- data/railties/test/application/middleware/exceptions_test.rb +140 -0
- data/railties/test/application/middleware/remote_ip_test.rb +80 -0
- data/railties/test/application/middleware/sendfile_test.rb +75 -0
- data/railties/test/application/middleware/session_test.rb +459 -0
- data/railties/test/application/middleware/static_test.rb +70 -0
- data/railties/test/application/middleware_test.rb +312 -0
- data/railties/test/application/multiple_applications_test.rb +177 -0
- data/railties/test/application/paths_test.rb +84 -0
- data/railties/test/application/per_request_digest_cache_test.rb +72 -0
- data/railties/test/application/rack/logger_test.rb +58 -0
- data/railties/test/application/rackup_test.rb +44 -0
- data/railties/test/application/rake/dbs_test.rb +320 -0
- data/railties/test/application/rake/dev_test.rb +49 -0
- data/railties/test/application/rake/framework_test.rb +48 -0
- data/railties/test/application/rake/log_test.rb +35 -0
- data/railties/test/application/rake/migrations_test.rb +306 -0
- data/railties/test/application/rake/notes_test.rb +171 -0
- data/railties/test/application/rake/restart_test.rb +40 -0
- data/railties/test/application/rake/tmp_test.rb +45 -0
- data/railties/test/application/rake_test.rb +425 -0
- data/railties/test/application/rendering_test.rb +46 -0
- data/railties/test/application/routing_test.rb +682 -0
- data/railties/test/application/runner_test.rb +135 -0
- data/railties/test/application/server_test.rb +61 -0
- data/railties/test/application/test_runner_test.rb +771 -0
- data/railties/test/application/test_test.rb +340 -0
- data/railties/test/application/url_generation_test.rb +59 -0
- data/railties/test/application/version_test.rb +26 -0
- data/railties/test/backtrace_cleaner_test.rb +34 -0
- data/railties/test/code_statistics_calculator_test.rb +332 -0
- data/railties/test/code_statistics_test.rb +34 -0
- data/railties/test/command/base_test.rb +13 -0
- data/railties/test/commands/console_test.rb +192 -0
- data/railties/test/commands/dbconsole_test.rb +355 -0
- data/railties/test/commands/secrets_test.rb +49 -0
- data/railties/test/commands/server_test.rb +204 -0
- data/railties/test/configuration/middleware_stack_proxy_test.rb +63 -0
- data/railties/test/console_helpers.rb +25 -0
- data/railties/test/engine/commands_test.rb +80 -0
- data/railties/test/engine_test.rb +27 -0
- data/railties/test/env_helpers.rb +32 -0
- data/railties/test/fixtures/about_yml_plugins/bad_about_yml/about.yml +1 -0
- data/railties/test/fixtures/about_yml_plugins/bad_about_yml/init.rb +3 -0
- data/railties/test/fixtures/about_yml_plugins/plugin_without_about_yml/init.rb +3 -0
- data/railties/test/fixtures/lib/create_test_dummy_template.rb +3 -0
- data/railties/test/fixtures/lib/generators/active_record/fixjour_generator.rb +10 -0
- data/railties/test/fixtures/lib/generators/fixjour_generator.rb +4 -0
- data/railties/test/fixtures/lib/generators/model_generator.rb +3 -0
- data/railties/test/fixtures/lib/generators/usage_template/USAGE +1 -0
- data/railties/test/fixtures/lib/generators/usage_template/usage_template_generator.rb +7 -0
- data/railties/test/fixtures/lib/rails/generators/foobar/foobar_generator.rb +6 -0
- data/railties/test/fixtures/lib/template.rb +3 -0
- data/railties/test/generators/actions_test.rb +442 -0
- data/railties/test/generators/api_app_generator_test.rb +164 -0
- data/railties/test/generators/app_generator_test.rb +823 -0
- data/railties/test/generators/application_record_generator_test.rb +16 -0
- data/railties/test/generators/argv_scrubber_test.rb +138 -0
- data/railties/test/generators/assets_generator_test.rb +21 -0
- data/railties/test/generators/channel_generator_test.rb +79 -0
- data/railties/test/generators/controller_generator_test.rb +112 -0
- data/railties/test/generators/create_migration_test.rb +136 -0
- data/railties/test/generators/encrypted_secrets_generator_test.rb +44 -0
- data/railties/test/generators/generated_attribute_test.rb +154 -0
- data/railties/test/generators/generator_generator_test.rb +73 -0
- data/railties/test/generators/generator_test.rb +102 -0
- data/railties/test/generators/generators_test_helper.rb +51 -0
- data/railties/test/generators/helper_generator_test.rb +41 -0
- data/railties/test/generators/integration_test_generator_test.rb +18 -0
- data/railties/test/generators/job_generator_test.rb +38 -0
- data/railties/test/generators/mailer_generator_test.rb +179 -0
- data/railties/test/generators/migration_generator_test.rb +356 -0
- data/railties/test/generators/model_generator_test.rb +469 -0
- data/railties/test/generators/named_base_test.rb +141 -0
- data/railties/test/generators/namespaced_generators_test.rb +436 -0
- data/railties/test/generators/orm_test.rb +40 -0
- data/railties/test/generators/plugin_generator_test.rb +756 -0
- data/railties/test/generators/plugin_test_helper.rb +26 -0
- data/railties/test/generators/plugin_test_runner_test.rb +116 -0
- data/railties/test/generators/resource_generator_test.rb +90 -0
- data/railties/test/generators/scaffold_controller_generator_test.rb +254 -0
- data/railties/test/generators/scaffold_generator_test.rb +652 -0
- data/railties/test/generators/shared_generator_tests.rb +270 -0
- data/railties/test/generators/system_test_generator_test.rb +19 -0
- data/railties/test/generators/task_generator_test.rb +26 -0
- data/railties/test/generators/test_runner_in_engine_test.rb +34 -0
- data/railties/test/generators_test.rb +248 -0
- data/railties/test/initializable_test.rb +236 -0
- data/railties/test/isolation/abstract_unit.rb +332 -0
- data/railties/test/json_params_parsing_test.rb +51 -0
- data/railties/test/path_generation_test.rb +85 -0
- data/railties/test/paths_test.rb +298 -0
- data/railties/test/rack_logger_test.rb +77 -0
- data/railties/test/rails_info_controller_test.rb +89 -0
- data/railties/test/rails_info_test.rb +73 -0
- data/railties/test/railties/engine_test.rb +1476 -0
- data/railties/test/railties/generators_test.rb +132 -0
- data/railties/test/railties/mounted_engine_test.rb +281 -0
- data/railties/test/railties/railtie_test.rb +216 -0
- data/railties/test/secrets_test.rb +178 -0
- data/railties/test/test_unit/reporter_test.rb +198 -0
- data/railties/test/version_test.rb +14 -0
- data/tasks/release.rb +253 -0
- data/tasks/release_announcement_draft.erb +38 -0
- data/tools/README.md +10 -0
- data/tools/console +11 -0
- data/tools/line_statistics +42 -0
- data/tools/profile +138 -0
- data/tools/test.rb +26 -0
- data/version.rb +17 -0
- metadata +3544 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "test_helper"
|
4
|
+
require "database/setup"
|
5
|
+
|
6
|
+
class ActiveStorage::ImageTagTest < ActionView::TestCase
|
7
|
+
tests ActionView::Helpers::AssetTagHelper
|
8
|
+
|
9
|
+
setup do
|
10
|
+
@blob = create_image_blob filename: "racecar.jpg"
|
11
|
+
end
|
12
|
+
|
13
|
+
test "blob" do
|
14
|
+
assert_dom_equal %(<img src="#{polymorphic_url @blob}" />), image_tag(@blob)
|
15
|
+
end
|
16
|
+
|
17
|
+
test "variant" do
|
18
|
+
variant = @blob.variant(resize: "100x100")
|
19
|
+
assert_dom_equal %(<img src="#{polymorphic_url variant}" />), image_tag(variant)
|
20
|
+
end
|
21
|
+
|
22
|
+
test "attachment" do
|
23
|
+
attachment = ActiveStorage::Attachment.new(blob: @blob)
|
24
|
+
assert_dom_equal %(<img src="#{polymorphic_url attachment}" />), image_tag(attachment)
|
25
|
+
end
|
26
|
+
|
27
|
+
test "error when attachment's empty" do
|
28
|
+
@user = User.create!(name: "DHH")
|
29
|
+
|
30
|
+
assert_not @user.avatar.attached?
|
31
|
+
assert_raises(ArgumentError) { image_tag(@user.avatar) }
|
32
|
+
end
|
33
|
+
|
34
|
+
test "error when object can't be resolved into url" do
|
35
|
+
unresolvable_object = ActionView::Helpers::AssetTagHelper
|
36
|
+
assert_raises(ArgumentError) { image_tag(unresolvable_object) }
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
4
|
+
|
5
|
+
require "bundler/setup"
|
6
|
+
require "active_support"
|
7
|
+
require "active_support/test_case"
|
8
|
+
require "active_support/testing/autorun"
|
9
|
+
|
10
|
+
begin
|
11
|
+
require "byebug"
|
12
|
+
rescue LoadError
|
13
|
+
end
|
14
|
+
|
15
|
+
require "active_job"
|
16
|
+
ActiveJob::Base.queue_adapter = :test
|
17
|
+
ActiveJob::Base.logger = ActiveSupport::Logger.new(nil)
|
18
|
+
|
19
|
+
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
20
|
+
# to be shown.
|
21
|
+
Minitest.backtrace_filter = Minitest::BacktraceFilter.new
|
22
|
+
|
23
|
+
require "yaml"
|
24
|
+
SERVICE_CONFIGURATIONS = begin
|
25
|
+
erb = ERB.new(Pathname.new(File.expand_path("../service/configurations.yml", __FILE__)).read)
|
26
|
+
configuration = YAML.load(erb.result) || {}
|
27
|
+
configuration.deep_symbolize_keys
|
28
|
+
rescue Errno::ENOENT
|
29
|
+
puts "Missing service configuration file in test/service/configurations.yml"
|
30
|
+
{}
|
31
|
+
end
|
32
|
+
|
33
|
+
require "tmpdir"
|
34
|
+
ActiveStorage::Blob.service = ActiveStorage::Service::DiskService.new(root: Dir.mktmpdir("active_storage_tests"))
|
35
|
+
ActiveStorage::Service.logger = ActiveSupport::Logger.new(nil)
|
36
|
+
|
37
|
+
ActiveStorage.verifier = ActiveSupport::MessageVerifier.new("Testing")
|
38
|
+
|
39
|
+
class ActiveSupport::TestCase
|
40
|
+
self.file_fixture_path = File.expand_path("../fixtures/files", __FILE__)
|
41
|
+
|
42
|
+
private
|
43
|
+
def create_blob(data: "Hello world!", filename: "hello.txt", content_type: "text/plain")
|
44
|
+
ActiveStorage::Blob.create_after_upload! io: StringIO.new(data), filename: filename, content_type: content_type
|
45
|
+
end
|
46
|
+
|
47
|
+
def create_image_blob(filename: "racecar.jpg", content_type: "image/jpeg")
|
48
|
+
ActiveStorage::Blob.create_after_upload! \
|
49
|
+
io: file_fixture(filename).open,
|
50
|
+
filename: filename, content_type: content_type
|
51
|
+
end
|
52
|
+
|
53
|
+
def create_blob_before_direct_upload(filename: "hello.txt", byte_size:, checksum:, content_type: "text/plain")
|
54
|
+
ActiveStorage::Blob.create_before_direct_upload! filename: filename, byte_size: byte_size, checksum: checksum, content_type: content_type
|
55
|
+
end
|
56
|
+
|
57
|
+
def read_image_variant(variant)
|
58
|
+
MiniMagick::Image.open variant.service.send(:path_for, variant.key)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
require "global_id"
|
63
|
+
GlobalID.app = "ActiveStorageExampleApp"
|
64
|
+
ActiveRecord::Base.send :include, GlobalID::Identification
|
65
|
+
|
66
|
+
class User < ActiveRecord::Base
|
67
|
+
has_one_attached :avatar
|
68
|
+
has_many_attached :highlights
|
69
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
const webpack = require("webpack")
|
2
|
+
const path = require("path")
|
3
|
+
|
4
|
+
module.exports = {
|
5
|
+
entry: {
|
6
|
+
"activestorage": path.resolve(__dirname, "app/javascript/activestorage/index.js"),
|
7
|
+
},
|
8
|
+
|
9
|
+
output: {
|
10
|
+
filename: "[name].js",
|
11
|
+
path: path.resolve(__dirname, "app/assets/javascripts"),
|
12
|
+
library: "ActiveStorage",
|
13
|
+
libraryTarget: "umd"
|
14
|
+
},
|
15
|
+
|
16
|
+
module: {
|
17
|
+
rules: [
|
18
|
+
{
|
19
|
+
test: /\.js$/,
|
20
|
+
exclude: /node_modules/,
|
21
|
+
use: {
|
22
|
+
loader: "babel-loader"
|
23
|
+
}
|
24
|
+
}
|
25
|
+
]
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,3164 @@
|
|
1
|
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
2
|
+
# yarn lockfile v1
|
3
|
+
|
4
|
+
|
5
|
+
abbrev@1:
|
6
|
+
version "1.1.0"
|
7
|
+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
|
8
|
+
|
9
|
+
acorn-dynamic-import@^2.0.0:
|
10
|
+
version "2.0.2"
|
11
|
+
resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
|
12
|
+
dependencies:
|
13
|
+
acorn "^4.0.3"
|
14
|
+
|
15
|
+
acorn-jsx@^3.0.0:
|
16
|
+
version "3.0.1"
|
17
|
+
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
|
18
|
+
dependencies:
|
19
|
+
acorn "^3.0.4"
|
20
|
+
|
21
|
+
acorn@^3.0.4:
|
22
|
+
version "3.3.0"
|
23
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
|
24
|
+
|
25
|
+
acorn@^4.0.3:
|
26
|
+
version "4.0.13"
|
27
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
|
28
|
+
|
29
|
+
acorn@^5.0.0, acorn@^5.0.1:
|
30
|
+
version "5.1.1"
|
31
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
|
32
|
+
|
33
|
+
ajv-keywords@^1.0.0:
|
34
|
+
version "1.5.1"
|
35
|
+
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
|
36
|
+
|
37
|
+
ajv-keywords@^2.0.0:
|
38
|
+
version "2.1.0"
|
39
|
+
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0"
|
40
|
+
|
41
|
+
ajv@^4.7.0, ajv@^4.9.1:
|
42
|
+
version "4.11.8"
|
43
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
|
44
|
+
dependencies:
|
45
|
+
co "^4.6.0"
|
46
|
+
json-stable-stringify "^1.0.1"
|
47
|
+
|
48
|
+
ajv@^5.1.5, ajv@^5.2.0:
|
49
|
+
version "5.2.2"
|
50
|
+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39"
|
51
|
+
dependencies:
|
52
|
+
co "^4.6.0"
|
53
|
+
fast-deep-equal "^1.0.0"
|
54
|
+
json-schema-traverse "^0.3.0"
|
55
|
+
json-stable-stringify "^1.0.1"
|
56
|
+
|
57
|
+
align-text@^0.1.1, align-text@^0.1.3:
|
58
|
+
version "0.1.4"
|
59
|
+
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
|
60
|
+
dependencies:
|
61
|
+
kind-of "^3.0.2"
|
62
|
+
longest "^1.0.1"
|
63
|
+
repeat-string "^1.5.2"
|
64
|
+
|
65
|
+
ansi-escapes@^2.0.0:
|
66
|
+
version "2.0.0"
|
67
|
+
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b"
|
68
|
+
|
69
|
+
ansi-regex@^2.0.0:
|
70
|
+
version "2.1.1"
|
71
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
72
|
+
|
73
|
+
ansi-regex@^3.0.0:
|
74
|
+
version "3.0.0"
|
75
|
+
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
|
76
|
+
|
77
|
+
ansi-styles@^2.2.1:
|
78
|
+
version "2.2.1"
|
79
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
80
|
+
|
81
|
+
ansi-styles@^3.1.0:
|
82
|
+
version "3.2.0"
|
83
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
|
84
|
+
dependencies:
|
85
|
+
color-convert "^1.9.0"
|
86
|
+
|
87
|
+
anymatch@^1.3.0:
|
88
|
+
version "1.3.0"
|
89
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
|
90
|
+
dependencies:
|
91
|
+
arrify "^1.0.0"
|
92
|
+
micromatch "^2.1.5"
|
93
|
+
|
94
|
+
aproba@^1.0.3:
|
95
|
+
version "1.1.2"
|
96
|
+
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
|
97
|
+
|
98
|
+
are-we-there-yet@~1.1.2:
|
99
|
+
version "1.1.4"
|
100
|
+
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
|
101
|
+
dependencies:
|
102
|
+
delegates "^1.0.0"
|
103
|
+
readable-stream "^2.0.6"
|
104
|
+
|
105
|
+
argparse@^1.0.7:
|
106
|
+
version "1.0.9"
|
107
|
+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
|
108
|
+
dependencies:
|
109
|
+
sprintf-js "~1.0.2"
|
110
|
+
|
111
|
+
arr-diff@^2.0.0:
|
112
|
+
version "2.0.0"
|
113
|
+
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
|
114
|
+
dependencies:
|
115
|
+
arr-flatten "^1.0.1"
|
116
|
+
|
117
|
+
arr-flatten@^1.0.1:
|
118
|
+
version "1.1.0"
|
119
|
+
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
|
120
|
+
|
121
|
+
array-union@^1.0.1:
|
122
|
+
version "1.0.2"
|
123
|
+
resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
|
124
|
+
dependencies:
|
125
|
+
array-uniq "^1.0.1"
|
126
|
+
|
127
|
+
array-uniq@^1.0.1:
|
128
|
+
version "1.0.3"
|
129
|
+
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
|
130
|
+
|
131
|
+
array-unique@^0.2.1:
|
132
|
+
version "0.2.1"
|
133
|
+
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
|
134
|
+
|
135
|
+
arrify@^1.0.0:
|
136
|
+
version "1.0.1"
|
137
|
+
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
138
|
+
|
139
|
+
asn1.js@^4.0.0:
|
140
|
+
version "4.9.1"
|
141
|
+
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
|
142
|
+
dependencies:
|
143
|
+
bn.js "^4.0.0"
|
144
|
+
inherits "^2.0.1"
|
145
|
+
minimalistic-assert "^1.0.0"
|
146
|
+
|
147
|
+
asn1@~0.2.3:
|
148
|
+
version "0.2.3"
|
149
|
+
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
150
|
+
|
151
|
+
assert-plus@1.0.0, assert-plus@^1.0.0:
|
152
|
+
version "1.0.0"
|
153
|
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
154
|
+
|
155
|
+
assert-plus@^0.2.0:
|
156
|
+
version "0.2.0"
|
157
|
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
|
158
|
+
|
159
|
+
assert@^1.1.1:
|
160
|
+
version "1.4.1"
|
161
|
+
resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
|
162
|
+
dependencies:
|
163
|
+
util "0.10.3"
|
164
|
+
|
165
|
+
async-each@^1.0.0:
|
166
|
+
version "1.0.1"
|
167
|
+
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
168
|
+
|
169
|
+
async@^2.1.2:
|
170
|
+
version "2.5.0"
|
171
|
+
resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
|
172
|
+
dependencies:
|
173
|
+
lodash "^4.14.0"
|
174
|
+
|
175
|
+
asynckit@^0.4.0:
|
176
|
+
version "0.4.0"
|
177
|
+
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
178
|
+
|
179
|
+
aws-sign2@~0.6.0:
|
180
|
+
version "0.6.0"
|
181
|
+
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
|
182
|
+
|
183
|
+
aws4@^1.2.1:
|
184
|
+
version "1.6.0"
|
185
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
186
|
+
|
187
|
+
babel-code-frame@^6.22.0:
|
188
|
+
version "6.22.0"
|
189
|
+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
|
190
|
+
dependencies:
|
191
|
+
chalk "^1.1.0"
|
192
|
+
esutils "^2.0.2"
|
193
|
+
js-tokens "^3.0.0"
|
194
|
+
|
195
|
+
babel-core@^6.24.1, babel-core@^6.25.0:
|
196
|
+
version "6.25.0"
|
197
|
+
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729"
|
198
|
+
dependencies:
|
199
|
+
babel-code-frame "^6.22.0"
|
200
|
+
babel-generator "^6.25.0"
|
201
|
+
babel-helpers "^6.24.1"
|
202
|
+
babel-messages "^6.23.0"
|
203
|
+
babel-register "^6.24.1"
|
204
|
+
babel-runtime "^6.22.0"
|
205
|
+
babel-template "^6.25.0"
|
206
|
+
babel-traverse "^6.25.0"
|
207
|
+
babel-types "^6.25.0"
|
208
|
+
babylon "^6.17.2"
|
209
|
+
convert-source-map "^1.1.0"
|
210
|
+
debug "^2.1.1"
|
211
|
+
json5 "^0.5.0"
|
212
|
+
lodash "^4.2.0"
|
213
|
+
minimatch "^3.0.2"
|
214
|
+
path-is-absolute "^1.0.0"
|
215
|
+
private "^0.1.6"
|
216
|
+
slash "^1.0.0"
|
217
|
+
source-map "^0.5.0"
|
218
|
+
|
219
|
+
babel-generator@^6.25.0:
|
220
|
+
version "6.25.0"
|
221
|
+
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc"
|
222
|
+
dependencies:
|
223
|
+
babel-messages "^6.23.0"
|
224
|
+
babel-runtime "^6.22.0"
|
225
|
+
babel-types "^6.25.0"
|
226
|
+
detect-indent "^4.0.0"
|
227
|
+
jsesc "^1.3.0"
|
228
|
+
lodash "^4.2.0"
|
229
|
+
source-map "^0.5.0"
|
230
|
+
trim-right "^1.0.1"
|
231
|
+
|
232
|
+
babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
|
233
|
+
version "6.24.1"
|
234
|
+
resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
|
235
|
+
dependencies:
|
236
|
+
babel-helper-explode-assignable-expression "^6.24.1"
|
237
|
+
babel-runtime "^6.22.0"
|
238
|
+
babel-types "^6.24.1"
|
239
|
+
|
240
|
+
babel-helper-call-delegate@^6.24.1:
|
241
|
+
version "6.24.1"
|
242
|
+
resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
|
243
|
+
dependencies:
|
244
|
+
babel-helper-hoist-variables "^6.24.1"
|
245
|
+
babel-runtime "^6.22.0"
|
246
|
+
babel-traverse "^6.24.1"
|
247
|
+
babel-types "^6.24.1"
|
248
|
+
|
249
|
+
babel-helper-define-map@^6.24.1:
|
250
|
+
version "6.24.1"
|
251
|
+
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080"
|
252
|
+
dependencies:
|
253
|
+
babel-helper-function-name "^6.24.1"
|
254
|
+
babel-runtime "^6.22.0"
|
255
|
+
babel-types "^6.24.1"
|
256
|
+
lodash "^4.2.0"
|
257
|
+
|
258
|
+
babel-helper-explode-assignable-expression@^6.24.1:
|
259
|
+
version "6.24.1"
|
260
|
+
resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
|
261
|
+
dependencies:
|
262
|
+
babel-runtime "^6.22.0"
|
263
|
+
babel-traverse "^6.24.1"
|
264
|
+
babel-types "^6.24.1"
|
265
|
+
|
266
|
+
babel-helper-function-name@^6.24.1:
|
267
|
+
version "6.24.1"
|
268
|
+
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
|
269
|
+
dependencies:
|
270
|
+
babel-helper-get-function-arity "^6.24.1"
|
271
|
+
babel-runtime "^6.22.0"
|
272
|
+
babel-template "^6.24.1"
|
273
|
+
babel-traverse "^6.24.1"
|
274
|
+
babel-types "^6.24.1"
|
275
|
+
|
276
|
+
babel-helper-get-function-arity@^6.24.1:
|
277
|
+
version "6.24.1"
|
278
|
+
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
|
279
|
+
dependencies:
|
280
|
+
babel-runtime "^6.22.0"
|
281
|
+
babel-types "^6.24.1"
|
282
|
+
|
283
|
+
babel-helper-hoist-variables@^6.24.1:
|
284
|
+
version "6.24.1"
|
285
|
+
resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
|
286
|
+
dependencies:
|
287
|
+
babel-runtime "^6.22.0"
|
288
|
+
babel-types "^6.24.1"
|
289
|
+
|
290
|
+
babel-helper-optimise-call-expression@^6.24.1:
|
291
|
+
version "6.24.1"
|
292
|
+
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
|
293
|
+
dependencies:
|
294
|
+
babel-runtime "^6.22.0"
|
295
|
+
babel-types "^6.24.1"
|
296
|
+
|
297
|
+
babel-helper-regex@^6.24.1:
|
298
|
+
version "6.24.1"
|
299
|
+
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8"
|
300
|
+
dependencies:
|
301
|
+
babel-runtime "^6.22.0"
|
302
|
+
babel-types "^6.24.1"
|
303
|
+
lodash "^4.2.0"
|
304
|
+
|
305
|
+
babel-helper-remap-async-to-generator@^6.24.1:
|
306
|
+
version "6.24.1"
|
307
|
+
resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
|
308
|
+
dependencies:
|
309
|
+
babel-helper-function-name "^6.24.1"
|
310
|
+
babel-runtime "^6.22.0"
|
311
|
+
babel-template "^6.24.1"
|
312
|
+
babel-traverse "^6.24.1"
|
313
|
+
babel-types "^6.24.1"
|
314
|
+
|
315
|
+
babel-helper-replace-supers@^6.24.1:
|
316
|
+
version "6.24.1"
|
317
|
+
resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
|
318
|
+
dependencies:
|
319
|
+
babel-helper-optimise-call-expression "^6.24.1"
|
320
|
+
babel-messages "^6.23.0"
|
321
|
+
babel-runtime "^6.22.0"
|
322
|
+
babel-template "^6.24.1"
|
323
|
+
babel-traverse "^6.24.1"
|
324
|
+
babel-types "^6.24.1"
|
325
|
+
|
326
|
+
babel-helpers@^6.24.1:
|
327
|
+
version "6.24.1"
|
328
|
+
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
|
329
|
+
dependencies:
|
330
|
+
babel-runtime "^6.22.0"
|
331
|
+
babel-template "^6.24.1"
|
332
|
+
|
333
|
+
babel-loader@^7.1.1:
|
334
|
+
version "7.1.1"
|
335
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.1.tgz#b87134c8b12e3e4c2a94e0546085bc680a2b8488"
|
336
|
+
dependencies:
|
337
|
+
find-cache-dir "^1.0.0"
|
338
|
+
loader-utils "^1.0.2"
|
339
|
+
mkdirp "^0.5.1"
|
340
|
+
|
341
|
+
babel-messages@^6.23.0:
|
342
|
+
version "6.23.0"
|
343
|
+
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
344
|
+
dependencies:
|
345
|
+
babel-runtime "^6.22.0"
|
346
|
+
|
347
|
+
babel-plugin-check-es2015-constants@^6.22.0:
|
348
|
+
version "6.22.0"
|
349
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
|
350
|
+
dependencies:
|
351
|
+
babel-runtime "^6.22.0"
|
352
|
+
|
353
|
+
babel-plugin-syntax-async-functions@^6.8.0:
|
354
|
+
version "6.13.0"
|
355
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
|
356
|
+
|
357
|
+
babel-plugin-syntax-exponentiation-operator@^6.8.0:
|
358
|
+
version "6.13.0"
|
359
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
|
360
|
+
|
361
|
+
babel-plugin-syntax-trailing-function-commas@^6.22.0:
|
362
|
+
version "6.22.0"
|
363
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
|
364
|
+
|
365
|
+
babel-plugin-transform-async-to-generator@^6.22.0:
|
366
|
+
version "6.24.1"
|
367
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
|
368
|
+
dependencies:
|
369
|
+
babel-helper-remap-async-to-generator "^6.24.1"
|
370
|
+
babel-plugin-syntax-async-functions "^6.8.0"
|
371
|
+
babel-runtime "^6.22.0"
|
372
|
+
|
373
|
+
babel-plugin-transform-es2015-arrow-functions@^6.22.0:
|
374
|
+
version "6.22.0"
|
375
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
|
376
|
+
dependencies:
|
377
|
+
babel-runtime "^6.22.0"
|
378
|
+
|
379
|
+
babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
|
380
|
+
version "6.22.0"
|
381
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
|
382
|
+
dependencies:
|
383
|
+
babel-runtime "^6.22.0"
|
384
|
+
|
385
|
+
babel-plugin-transform-es2015-block-scoping@^6.23.0:
|
386
|
+
version "6.24.1"
|
387
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576"
|
388
|
+
dependencies:
|
389
|
+
babel-runtime "^6.22.0"
|
390
|
+
babel-template "^6.24.1"
|
391
|
+
babel-traverse "^6.24.1"
|
392
|
+
babel-types "^6.24.1"
|
393
|
+
lodash "^4.2.0"
|
394
|
+
|
395
|
+
babel-plugin-transform-es2015-classes@^6.23.0:
|
396
|
+
version "6.24.1"
|
397
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
|
398
|
+
dependencies:
|
399
|
+
babel-helper-define-map "^6.24.1"
|
400
|
+
babel-helper-function-name "^6.24.1"
|
401
|
+
babel-helper-optimise-call-expression "^6.24.1"
|
402
|
+
babel-helper-replace-supers "^6.24.1"
|
403
|
+
babel-messages "^6.23.0"
|
404
|
+
babel-runtime "^6.22.0"
|
405
|
+
babel-template "^6.24.1"
|
406
|
+
babel-traverse "^6.24.1"
|
407
|
+
babel-types "^6.24.1"
|
408
|
+
|
409
|
+
babel-plugin-transform-es2015-computed-properties@^6.22.0:
|
410
|
+
version "6.24.1"
|
411
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
|
412
|
+
dependencies:
|
413
|
+
babel-runtime "^6.22.0"
|
414
|
+
babel-template "^6.24.1"
|
415
|
+
|
416
|
+
babel-plugin-transform-es2015-destructuring@^6.23.0:
|
417
|
+
version "6.23.0"
|
418
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
|
419
|
+
dependencies:
|
420
|
+
babel-runtime "^6.22.0"
|
421
|
+
|
422
|
+
babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
|
423
|
+
version "6.24.1"
|
424
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
|
425
|
+
dependencies:
|
426
|
+
babel-runtime "^6.22.0"
|
427
|
+
babel-types "^6.24.1"
|
428
|
+
|
429
|
+
babel-plugin-transform-es2015-for-of@^6.23.0:
|
430
|
+
version "6.23.0"
|
431
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
|
432
|
+
dependencies:
|
433
|
+
babel-runtime "^6.22.0"
|
434
|
+
|
435
|
+
babel-plugin-transform-es2015-function-name@^6.22.0:
|
436
|
+
version "6.24.1"
|
437
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
|
438
|
+
dependencies:
|
439
|
+
babel-helper-function-name "^6.24.1"
|
440
|
+
babel-runtime "^6.22.0"
|
441
|
+
babel-types "^6.24.1"
|
442
|
+
|
443
|
+
babel-plugin-transform-es2015-literals@^6.22.0:
|
444
|
+
version "6.22.0"
|
445
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
|
446
|
+
dependencies:
|
447
|
+
babel-runtime "^6.22.0"
|
448
|
+
|
449
|
+
babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
450
|
+
version "6.24.1"
|
451
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
|
452
|
+
dependencies:
|
453
|
+
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
|
454
|
+
babel-runtime "^6.22.0"
|
455
|
+
babel-template "^6.24.1"
|
456
|
+
|
457
|
+
babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
|
458
|
+
version "6.24.1"
|
459
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe"
|
460
|
+
dependencies:
|
461
|
+
babel-plugin-transform-strict-mode "^6.24.1"
|
462
|
+
babel-runtime "^6.22.0"
|
463
|
+
babel-template "^6.24.1"
|
464
|
+
babel-types "^6.24.1"
|
465
|
+
|
466
|
+
babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
|
467
|
+
version "6.24.1"
|
468
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
|
469
|
+
dependencies:
|
470
|
+
babel-helper-hoist-variables "^6.24.1"
|
471
|
+
babel-runtime "^6.22.0"
|
472
|
+
babel-template "^6.24.1"
|
473
|
+
|
474
|
+
babel-plugin-transform-es2015-modules-umd@^6.23.0:
|
475
|
+
version "6.24.1"
|
476
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
|
477
|
+
dependencies:
|
478
|
+
babel-plugin-transform-es2015-modules-amd "^6.24.1"
|
479
|
+
babel-runtime "^6.22.0"
|
480
|
+
babel-template "^6.24.1"
|
481
|
+
|
482
|
+
babel-plugin-transform-es2015-object-super@^6.22.0:
|
483
|
+
version "6.24.1"
|
484
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
|
485
|
+
dependencies:
|
486
|
+
babel-helper-replace-supers "^6.24.1"
|
487
|
+
babel-runtime "^6.22.0"
|
488
|
+
|
489
|
+
babel-plugin-transform-es2015-parameters@^6.23.0:
|
490
|
+
version "6.24.1"
|
491
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
|
492
|
+
dependencies:
|
493
|
+
babel-helper-call-delegate "^6.24.1"
|
494
|
+
babel-helper-get-function-arity "^6.24.1"
|
495
|
+
babel-runtime "^6.22.0"
|
496
|
+
babel-template "^6.24.1"
|
497
|
+
babel-traverse "^6.24.1"
|
498
|
+
babel-types "^6.24.1"
|
499
|
+
|
500
|
+
babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
|
501
|
+
version "6.24.1"
|
502
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
|
503
|
+
dependencies:
|
504
|
+
babel-runtime "^6.22.0"
|
505
|
+
babel-types "^6.24.1"
|
506
|
+
|
507
|
+
babel-plugin-transform-es2015-spread@^6.22.0:
|
508
|
+
version "6.22.0"
|
509
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
|
510
|
+
dependencies:
|
511
|
+
babel-runtime "^6.22.0"
|
512
|
+
|
513
|
+
babel-plugin-transform-es2015-sticky-regex@^6.22.0:
|
514
|
+
version "6.24.1"
|
515
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
|
516
|
+
dependencies:
|
517
|
+
babel-helper-regex "^6.24.1"
|
518
|
+
babel-runtime "^6.22.0"
|
519
|
+
babel-types "^6.24.1"
|
520
|
+
|
521
|
+
babel-plugin-transform-es2015-template-literals@^6.22.0:
|
522
|
+
version "6.22.0"
|
523
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
|
524
|
+
dependencies:
|
525
|
+
babel-runtime "^6.22.0"
|
526
|
+
|
527
|
+
babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
|
528
|
+
version "6.23.0"
|
529
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
|
530
|
+
dependencies:
|
531
|
+
babel-runtime "^6.22.0"
|
532
|
+
|
533
|
+
babel-plugin-transform-es2015-unicode-regex@^6.22.0:
|
534
|
+
version "6.24.1"
|
535
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
|
536
|
+
dependencies:
|
537
|
+
babel-helper-regex "^6.24.1"
|
538
|
+
babel-runtime "^6.22.0"
|
539
|
+
regexpu-core "^2.0.0"
|
540
|
+
|
541
|
+
babel-plugin-transform-exponentiation-operator@^6.22.0:
|
542
|
+
version "6.24.1"
|
543
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
|
544
|
+
dependencies:
|
545
|
+
babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
|
546
|
+
babel-plugin-syntax-exponentiation-operator "^6.8.0"
|
547
|
+
babel-runtime "^6.22.0"
|
548
|
+
|
549
|
+
babel-plugin-transform-regenerator@^6.22.0:
|
550
|
+
version "6.24.1"
|
551
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418"
|
552
|
+
dependencies:
|
553
|
+
regenerator-transform "0.9.11"
|
554
|
+
|
555
|
+
babel-plugin-transform-strict-mode@^6.24.1:
|
556
|
+
version "6.24.1"
|
557
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
|
558
|
+
dependencies:
|
559
|
+
babel-runtime "^6.22.0"
|
560
|
+
babel-types "^6.24.1"
|
561
|
+
|
562
|
+
babel-preset-env@^1.6.0:
|
563
|
+
version "1.6.0"
|
564
|
+
resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4"
|
565
|
+
dependencies:
|
566
|
+
babel-plugin-check-es2015-constants "^6.22.0"
|
567
|
+
babel-plugin-syntax-trailing-function-commas "^6.22.0"
|
568
|
+
babel-plugin-transform-async-to-generator "^6.22.0"
|
569
|
+
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
|
570
|
+
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
|
571
|
+
babel-plugin-transform-es2015-block-scoping "^6.23.0"
|
572
|
+
babel-plugin-transform-es2015-classes "^6.23.0"
|
573
|
+
babel-plugin-transform-es2015-computed-properties "^6.22.0"
|
574
|
+
babel-plugin-transform-es2015-destructuring "^6.23.0"
|
575
|
+
babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
|
576
|
+
babel-plugin-transform-es2015-for-of "^6.23.0"
|
577
|
+
babel-plugin-transform-es2015-function-name "^6.22.0"
|
578
|
+
babel-plugin-transform-es2015-literals "^6.22.0"
|
579
|
+
babel-plugin-transform-es2015-modules-amd "^6.22.0"
|
580
|
+
babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
|
581
|
+
babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
|
582
|
+
babel-plugin-transform-es2015-modules-umd "^6.23.0"
|
583
|
+
babel-plugin-transform-es2015-object-super "^6.22.0"
|
584
|
+
babel-plugin-transform-es2015-parameters "^6.23.0"
|
585
|
+
babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
|
586
|
+
babel-plugin-transform-es2015-spread "^6.22.0"
|
587
|
+
babel-plugin-transform-es2015-sticky-regex "^6.22.0"
|
588
|
+
babel-plugin-transform-es2015-template-literals "^6.22.0"
|
589
|
+
babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
|
590
|
+
babel-plugin-transform-es2015-unicode-regex "^6.22.0"
|
591
|
+
babel-plugin-transform-exponentiation-operator "^6.22.0"
|
592
|
+
babel-plugin-transform-regenerator "^6.22.0"
|
593
|
+
browserslist "^2.1.2"
|
594
|
+
invariant "^2.2.2"
|
595
|
+
semver "^5.3.0"
|
596
|
+
|
597
|
+
babel-register@^6.24.1:
|
598
|
+
version "6.24.1"
|
599
|
+
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f"
|
600
|
+
dependencies:
|
601
|
+
babel-core "^6.24.1"
|
602
|
+
babel-runtime "^6.22.0"
|
603
|
+
core-js "^2.4.0"
|
604
|
+
home-or-tmp "^2.0.0"
|
605
|
+
lodash "^4.2.0"
|
606
|
+
mkdirp "^0.5.1"
|
607
|
+
source-map-support "^0.4.2"
|
608
|
+
|
609
|
+
babel-runtime@^6.18.0, babel-runtime@^6.22.0:
|
610
|
+
version "6.23.0"
|
611
|
+
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
|
612
|
+
dependencies:
|
613
|
+
core-js "^2.4.0"
|
614
|
+
regenerator-runtime "^0.10.0"
|
615
|
+
|
616
|
+
babel-template@^6.24.1, babel-template@^6.25.0:
|
617
|
+
version "6.25.0"
|
618
|
+
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071"
|
619
|
+
dependencies:
|
620
|
+
babel-runtime "^6.22.0"
|
621
|
+
babel-traverse "^6.25.0"
|
622
|
+
babel-types "^6.25.0"
|
623
|
+
babylon "^6.17.2"
|
624
|
+
lodash "^4.2.0"
|
625
|
+
|
626
|
+
babel-traverse@^6.24.1, babel-traverse@^6.25.0:
|
627
|
+
version "6.25.0"
|
628
|
+
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1"
|
629
|
+
dependencies:
|
630
|
+
babel-code-frame "^6.22.0"
|
631
|
+
babel-messages "^6.23.0"
|
632
|
+
babel-runtime "^6.22.0"
|
633
|
+
babel-types "^6.25.0"
|
634
|
+
babylon "^6.17.2"
|
635
|
+
debug "^2.2.0"
|
636
|
+
globals "^9.0.0"
|
637
|
+
invariant "^2.2.0"
|
638
|
+
lodash "^4.2.0"
|
639
|
+
|
640
|
+
babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0:
|
641
|
+
version "6.25.0"
|
642
|
+
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e"
|
643
|
+
dependencies:
|
644
|
+
babel-runtime "^6.22.0"
|
645
|
+
esutils "^2.0.2"
|
646
|
+
lodash "^4.2.0"
|
647
|
+
to-fast-properties "^1.0.1"
|
648
|
+
|
649
|
+
babylon@^6.17.2:
|
650
|
+
version "6.17.4"
|
651
|
+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a"
|
652
|
+
|
653
|
+
balanced-match@^1.0.0:
|
654
|
+
version "1.0.0"
|
655
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
656
|
+
|
657
|
+
base64-js@^1.0.2:
|
658
|
+
version "1.2.1"
|
659
|
+
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
|
660
|
+
|
661
|
+
bcrypt-pbkdf@^1.0.0:
|
662
|
+
version "1.0.1"
|
663
|
+
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
|
664
|
+
dependencies:
|
665
|
+
tweetnacl "^0.14.3"
|
666
|
+
|
667
|
+
big.js@^3.1.3:
|
668
|
+
version "3.1.3"
|
669
|
+
resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
|
670
|
+
|
671
|
+
binary-extensions@^1.0.0:
|
672
|
+
version "1.9.0"
|
673
|
+
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b"
|
674
|
+
|
675
|
+
block-stream@*:
|
676
|
+
version "0.0.9"
|
677
|
+
resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
|
678
|
+
dependencies:
|
679
|
+
inherits "~2.0.0"
|
680
|
+
|
681
|
+
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
682
|
+
version "4.11.7"
|
683
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.7.tgz#ddb048e50d9482790094c13eb3fcfc833ce7ab46"
|
684
|
+
|
685
|
+
boom@2.x.x:
|
686
|
+
version "2.10.1"
|
687
|
+
resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
|
688
|
+
dependencies:
|
689
|
+
hoek "2.x.x"
|
690
|
+
|
691
|
+
brace-expansion@^1.1.7:
|
692
|
+
version "1.1.8"
|
693
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
|
694
|
+
dependencies:
|
695
|
+
balanced-match "^1.0.0"
|
696
|
+
concat-map "0.0.1"
|
697
|
+
|
698
|
+
braces@^1.8.2:
|
699
|
+
version "1.8.5"
|
700
|
+
resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
|
701
|
+
dependencies:
|
702
|
+
expand-range "^1.8.1"
|
703
|
+
preserve "^0.2.0"
|
704
|
+
repeat-element "^1.1.2"
|
705
|
+
|
706
|
+
brorand@^1.0.1:
|
707
|
+
version "1.1.0"
|
708
|
+
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
709
|
+
|
710
|
+
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
|
711
|
+
version "1.0.6"
|
712
|
+
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
|
713
|
+
dependencies:
|
714
|
+
buffer-xor "^1.0.2"
|
715
|
+
cipher-base "^1.0.0"
|
716
|
+
create-hash "^1.1.0"
|
717
|
+
evp_bytestokey "^1.0.0"
|
718
|
+
inherits "^2.0.1"
|
719
|
+
|
720
|
+
browserify-cipher@^1.0.0:
|
721
|
+
version "1.0.0"
|
722
|
+
resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
|
723
|
+
dependencies:
|
724
|
+
browserify-aes "^1.0.4"
|
725
|
+
browserify-des "^1.0.0"
|
726
|
+
evp_bytestokey "^1.0.0"
|
727
|
+
|
728
|
+
browserify-des@^1.0.0:
|
729
|
+
version "1.0.0"
|
730
|
+
resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
|
731
|
+
dependencies:
|
732
|
+
cipher-base "^1.0.1"
|
733
|
+
des.js "^1.0.0"
|
734
|
+
inherits "^2.0.1"
|
735
|
+
|
736
|
+
browserify-rsa@^4.0.0:
|
737
|
+
version "4.0.1"
|
738
|
+
resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
|
739
|
+
dependencies:
|
740
|
+
bn.js "^4.1.0"
|
741
|
+
randombytes "^2.0.1"
|
742
|
+
|
743
|
+
browserify-sign@^4.0.0:
|
744
|
+
version "4.0.4"
|
745
|
+
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
|
746
|
+
dependencies:
|
747
|
+
bn.js "^4.1.1"
|
748
|
+
browserify-rsa "^4.0.0"
|
749
|
+
create-hash "^1.1.0"
|
750
|
+
create-hmac "^1.1.2"
|
751
|
+
elliptic "^6.0.0"
|
752
|
+
inherits "^2.0.1"
|
753
|
+
parse-asn1 "^5.0.0"
|
754
|
+
|
755
|
+
browserify-zlib@^0.1.4:
|
756
|
+
version "0.1.4"
|
757
|
+
resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
|
758
|
+
dependencies:
|
759
|
+
pako "~0.2.0"
|
760
|
+
|
761
|
+
browserslist@^2.1.2:
|
762
|
+
version "2.2.2"
|
763
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.2.2.tgz#e9b4618b8a01c193f9786beea09f6fd10dbe31c3"
|
764
|
+
dependencies:
|
765
|
+
caniuse-lite "^1.0.30000704"
|
766
|
+
electron-to-chromium "^1.3.16"
|
767
|
+
|
768
|
+
buffer-xor@^1.0.2:
|
769
|
+
version "1.0.3"
|
770
|
+
resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
|
771
|
+
|
772
|
+
buffer@^4.3.0:
|
773
|
+
version "4.9.1"
|
774
|
+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
|
775
|
+
dependencies:
|
776
|
+
base64-js "^1.0.2"
|
777
|
+
ieee754 "^1.1.4"
|
778
|
+
isarray "^1.0.0"
|
779
|
+
|
780
|
+
builtin-modules@^1.0.0, builtin-modules@^1.1.1:
|
781
|
+
version "1.1.1"
|
782
|
+
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
783
|
+
|
784
|
+
builtin-status-codes@^3.0.0:
|
785
|
+
version "3.0.0"
|
786
|
+
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
787
|
+
|
788
|
+
caller-path@^0.1.0:
|
789
|
+
version "0.1.0"
|
790
|
+
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
|
791
|
+
dependencies:
|
792
|
+
callsites "^0.2.0"
|
793
|
+
|
794
|
+
callsites@^0.2.0:
|
795
|
+
version "0.2.0"
|
796
|
+
resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
|
797
|
+
|
798
|
+
camelcase@^1.0.2:
|
799
|
+
version "1.2.1"
|
800
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
|
801
|
+
|
802
|
+
camelcase@^4.1.0:
|
803
|
+
version "4.1.0"
|
804
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
805
|
+
|
806
|
+
caniuse-lite@^1.0.30000704:
|
807
|
+
version "1.0.30000706"
|
808
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000706.tgz#bc59abc41ba7d4a3634dda95befded6114e1f24e"
|
809
|
+
|
810
|
+
caseless@~0.12.0:
|
811
|
+
version "0.12.0"
|
812
|
+
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
813
|
+
|
814
|
+
center-align@^0.1.1:
|
815
|
+
version "0.1.3"
|
816
|
+
resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
|
817
|
+
dependencies:
|
818
|
+
align-text "^0.1.3"
|
819
|
+
lazy-cache "^1.0.3"
|
820
|
+
|
821
|
+
chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
|
822
|
+
version "1.1.3"
|
823
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
824
|
+
dependencies:
|
825
|
+
ansi-styles "^2.2.1"
|
826
|
+
escape-string-regexp "^1.0.2"
|
827
|
+
has-ansi "^2.0.0"
|
828
|
+
strip-ansi "^3.0.0"
|
829
|
+
supports-color "^2.0.0"
|
830
|
+
|
831
|
+
chalk@^2.0.0:
|
832
|
+
version "2.0.1"
|
833
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d"
|
834
|
+
dependencies:
|
835
|
+
ansi-styles "^3.1.0"
|
836
|
+
escape-string-regexp "^1.0.5"
|
837
|
+
supports-color "^4.0.0"
|
838
|
+
|
839
|
+
chokidar@^1.7.0:
|
840
|
+
version "1.7.0"
|
841
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
|
842
|
+
dependencies:
|
843
|
+
anymatch "^1.3.0"
|
844
|
+
async-each "^1.0.0"
|
845
|
+
glob-parent "^2.0.0"
|
846
|
+
inherits "^2.0.1"
|
847
|
+
is-binary-path "^1.0.0"
|
848
|
+
is-glob "^2.0.0"
|
849
|
+
path-is-absolute "^1.0.0"
|
850
|
+
readdirp "^2.0.0"
|
851
|
+
optionalDependencies:
|
852
|
+
fsevents "^1.0.0"
|
853
|
+
|
854
|
+
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
|
855
|
+
version "1.0.4"
|
856
|
+
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
|
857
|
+
dependencies:
|
858
|
+
inherits "^2.0.1"
|
859
|
+
safe-buffer "^5.0.1"
|
860
|
+
|
861
|
+
circular-json@^0.3.1:
|
862
|
+
version "0.3.3"
|
863
|
+
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
|
864
|
+
|
865
|
+
cli-cursor@^2.1.0:
|
866
|
+
version "2.1.0"
|
867
|
+
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
|
868
|
+
dependencies:
|
869
|
+
restore-cursor "^2.0.0"
|
870
|
+
|
871
|
+
cli-width@^2.0.0:
|
872
|
+
version "2.1.0"
|
873
|
+
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
|
874
|
+
|
875
|
+
cliui@^2.1.0:
|
876
|
+
version "2.1.0"
|
877
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
|
878
|
+
dependencies:
|
879
|
+
center-align "^0.1.1"
|
880
|
+
right-align "^0.1.1"
|
881
|
+
wordwrap "0.0.2"
|
882
|
+
|
883
|
+
cliui@^3.2.0:
|
884
|
+
version "3.2.0"
|
885
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
|
886
|
+
dependencies:
|
887
|
+
string-width "^1.0.1"
|
888
|
+
strip-ansi "^3.0.1"
|
889
|
+
wrap-ansi "^2.0.0"
|
890
|
+
|
891
|
+
co@^4.6.0:
|
892
|
+
version "4.6.0"
|
893
|
+
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
894
|
+
|
895
|
+
code-point-at@^1.0.0:
|
896
|
+
version "1.1.0"
|
897
|
+
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
898
|
+
|
899
|
+
color-convert@^1.9.0:
|
900
|
+
version "1.9.0"
|
901
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
|
902
|
+
dependencies:
|
903
|
+
color-name "^1.1.1"
|
904
|
+
|
905
|
+
color-name@^1.1.1:
|
906
|
+
version "1.1.3"
|
907
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
908
|
+
|
909
|
+
combined-stream@^1.0.5, combined-stream@~1.0.5:
|
910
|
+
version "1.0.5"
|
911
|
+
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
|
912
|
+
dependencies:
|
913
|
+
delayed-stream "~1.0.0"
|
914
|
+
|
915
|
+
commondir@^1.0.1:
|
916
|
+
version "1.0.1"
|
917
|
+
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
|
918
|
+
|
919
|
+
concat-map@0.0.1:
|
920
|
+
version "0.0.1"
|
921
|
+
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
922
|
+
|
923
|
+
concat-stream@^1.6.0:
|
924
|
+
version "1.6.0"
|
925
|
+
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
|
926
|
+
dependencies:
|
927
|
+
inherits "^2.0.3"
|
928
|
+
readable-stream "^2.2.2"
|
929
|
+
typedarray "^0.0.6"
|
930
|
+
|
931
|
+
console-browserify@^1.1.0:
|
932
|
+
version "1.1.0"
|
933
|
+
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
|
934
|
+
dependencies:
|
935
|
+
date-now "^0.1.4"
|
936
|
+
|
937
|
+
console-control-strings@^1.0.0, console-control-strings@~1.1.0:
|
938
|
+
version "1.1.0"
|
939
|
+
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
940
|
+
|
941
|
+
constants-browserify@^1.0.0:
|
942
|
+
version "1.0.0"
|
943
|
+
resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
|
944
|
+
|
945
|
+
contains-path@^0.1.0:
|
946
|
+
version "0.1.0"
|
947
|
+
resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
|
948
|
+
|
949
|
+
convert-source-map@^1.1.0:
|
950
|
+
version "1.5.0"
|
951
|
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
|
952
|
+
|
953
|
+
core-js@^2.4.0:
|
954
|
+
version "2.4.1"
|
955
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
|
956
|
+
|
957
|
+
core-util-is@~1.0.0:
|
958
|
+
version "1.0.2"
|
959
|
+
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
960
|
+
|
961
|
+
create-ecdh@^4.0.0:
|
962
|
+
version "4.0.0"
|
963
|
+
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
|
964
|
+
dependencies:
|
965
|
+
bn.js "^4.1.0"
|
966
|
+
elliptic "^6.0.0"
|
967
|
+
|
968
|
+
create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2:
|
969
|
+
version "1.1.3"
|
970
|
+
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
|
971
|
+
dependencies:
|
972
|
+
cipher-base "^1.0.1"
|
973
|
+
inherits "^2.0.1"
|
974
|
+
ripemd160 "^2.0.0"
|
975
|
+
sha.js "^2.4.0"
|
976
|
+
|
977
|
+
create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
|
978
|
+
version "1.1.6"
|
979
|
+
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
|
980
|
+
dependencies:
|
981
|
+
cipher-base "^1.0.3"
|
982
|
+
create-hash "^1.1.0"
|
983
|
+
inherits "^2.0.1"
|
984
|
+
ripemd160 "^2.0.0"
|
985
|
+
safe-buffer "^5.0.1"
|
986
|
+
sha.js "^2.4.8"
|
987
|
+
|
988
|
+
cross-spawn@^5.0.1, cross-spawn@^5.1.0:
|
989
|
+
version "5.1.0"
|
990
|
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
|
991
|
+
dependencies:
|
992
|
+
lru-cache "^4.0.1"
|
993
|
+
shebang-command "^1.2.0"
|
994
|
+
which "^1.2.9"
|
995
|
+
|
996
|
+
cryptiles@2.x.x:
|
997
|
+
version "2.0.5"
|
998
|
+
resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
|
999
|
+
dependencies:
|
1000
|
+
boom "2.x.x"
|
1001
|
+
|
1002
|
+
crypto-browserify@^3.11.0:
|
1003
|
+
version "3.11.1"
|
1004
|
+
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f"
|
1005
|
+
dependencies:
|
1006
|
+
browserify-cipher "^1.0.0"
|
1007
|
+
browserify-sign "^4.0.0"
|
1008
|
+
create-ecdh "^4.0.0"
|
1009
|
+
create-hash "^1.1.0"
|
1010
|
+
create-hmac "^1.1.0"
|
1011
|
+
diffie-hellman "^5.0.0"
|
1012
|
+
inherits "^2.0.1"
|
1013
|
+
pbkdf2 "^3.0.3"
|
1014
|
+
public-encrypt "^4.0.0"
|
1015
|
+
randombytes "^2.0.0"
|
1016
|
+
|
1017
|
+
d@1:
|
1018
|
+
version "1.0.0"
|
1019
|
+
resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
|
1020
|
+
dependencies:
|
1021
|
+
es5-ext "^0.10.9"
|
1022
|
+
|
1023
|
+
dashdash@^1.12.0:
|
1024
|
+
version "1.14.1"
|
1025
|
+
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
|
1026
|
+
dependencies:
|
1027
|
+
assert-plus "^1.0.0"
|
1028
|
+
|
1029
|
+
date-now@^0.1.4:
|
1030
|
+
version "0.1.4"
|
1031
|
+
resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
|
1032
|
+
|
1033
|
+
debug@^2.1.1, debug@^2.2.0, debug@^2.6.8:
|
1034
|
+
version "2.6.8"
|
1035
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
|
1036
|
+
dependencies:
|
1037
|
+
ms "2.0.0"
|
1038
|
+
|
1039
|
+
decamelize@^1.0.0, decamelize@^1.1.1:
|
1040
|
+
version "1.2.0"
|
1041
|
+
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
1042
|
+
|
1043
|
+
deep-extend@~0.4.0:
|
1044
|
+
version "0.4.2"
|
1045
|
+
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
|
1046
|
+
|
1047
|
+
deep-is@~0.1.3:
|
1048
|
+
version "0.1.3"
|
1049
|
+
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
1050
|
+
|
1051
|
+
del@^2.0.2:
|
1052
|
+
version "2.2.2"
|
1053
|
+
resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
|
1054
|
+
dependencies:
|
1055
|
+
globby "^5.0.0"
|
1056
|
+
is-path-cwd "^1.0.0"
|
1057
|
+
is-path-in-cwd "^1.0.0"
|
1058
|
+
object-assign "^4.0.1"
|
1059
|
+
pify "^2.0.0"
|
1060
|
+
pinkie-promise "^2.0.0"
|
1061
|
+
rimraf "^2.2.8"
|
1062
|
+
|
1063
|
+
delayed-stream@~1.0.0:
|
1064
|
+
version "1.0.0"
|
1065
|
+
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
1066
|
+
|
1067
|
+
delegates@^1.0.0:
|
1068
|
+
version "1.0.0"
|
1069
|
+
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
|
1070
|
+
|
1071
|
+
des.js@^1.0.0:
|
1072
|
+
version "1.0.0"
|
1073
|
+
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
|
1074
|
+
dependencies:
|
1075
|
+
inherits "^2.0.1"
|
1076
|
+
minimalistic-assert "^1.0.0"
|
1077
|
+
|
1078
|
+
detect-indent@^4.0.0:
|
1079
|
+
version "4.0.0"
|
1080
|
+
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
|
1081
|
+
dependencies:
|
1082
|
+
repeating "^2.0.0"
|
1083
|
+
|
1084
|
+
diffie-hellman@^5.0.0:
|
1085
|
+
version "5.0.2"
|
1086
|
+
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
|
1087
|
+
dependencies:
|
1088
|
+
bn.js "^4.1.0"
|
1089
|
+
miller-rabin "^4.0.0"
|
1090
|
+
randombytes "^2.0.0"
|
1091
|
+
|
1092
|
+
doctrine@1.5.0:
|
1093
|
+
version "1.5.0"
|
1094
|
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
|
1095
|
+
dependencies:
|
1096
|
+
esutils "^2.0.2"
|
1097
|
+
isarray "^1.0.0"
|
1098
|
+
|
1099
|
+
doctrine@^2.0.0:
|
1100
|
+
version "2.0.0"
|
1101
|
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63"
|
1102
|
+
dependencies:
|
1103
|
+
esutils "^2.0.2"
|
1104
|
+
isarray "^1.0.0"
|
1105
|
+
|
1106
|
+
domain-browser@^1.1.1:
|
1107
|
+
version "1.1.7"
|
1108
|
+
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
|
1109
|
+
|
1110
|
+
ecc-jsbn@~0.1.1:
|
1111
|
+
version "0.1.1"
|
1112
|
+
resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
|
1113
|
+
dependencies:
|
1114
|
+
jsbn "~0.1.0"
|
1115
|
+
|
1116
|
+
electron-to-chromium@^1.3.16:
|
1117
|
+
version "1.3.16"
|
1118
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz#d0e026735754770901ae301a21664cba45d92f7d"
|
1119
|
+
|
1120
|
+
elliptic@^6.0.0:
|
1121
|
+
version "6.4.0"
|
1122
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
|
1123
|
+
dependencies:
|
1124
|
+
bn.js "^4.4.0"
|
1125
|
+
brorand "^1.0.1"
|
1126
|
+
hash.js "^1.0.0"
|
1127
|
+
hmac-drbg "^1.0.0"
|
1128
|
+
inherits "^2.0.1"
|
1129
|
+
minimalistic-assert "^1.0.0"
|
1130
|
+
minimalistic-crypto-utils "^1.0.0"
|
1131
|
+
|
1132
|
+
emojis-list@^2.0.0:
|
1133
|
+
version "2.1.0"
|
1134
|
+
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
|
1135
|
+
|
1136
|
+
enhanced-resolve@^3.4.0:
|
1137
|
+
version "3.4.1"
|
1138
|
+
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
|
1139
|
+
dependencies:
|
1140
|
+
graceful-fs "^4.1.2"
|
1141
|
+
memory-fs "^0.4.0"
|
1142
|
+
object-assign "^4.0.1"
|
1143
|
+
tapable "^0.2.7"
|
1144
|
+
|
1145
|
+
errno@^0.1.3:
|
1146
|
+
version "0.1.4"
|
1147
|
+
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
|
1148
|
+
dependencies:
|
1149
|
+
prr "~0.0.0"
|
1150
|
+
|
1151
|
+
error-ex@^1.2.0:
|
1152
|
+
version "1.3.1"
|
1153
|
+
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
|
1154
|
+
dependencies:
|
1155
|
+
is-arrayish "^0.2.1"
|
1156
|
+
|
1157
|
+
es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
|
1158
|
+
version "0.10.24"
|
1159
|
+
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.24.tgz#a55877c9924bc0c8d9bd3c2cbe17495ac1709b14"
|
1160
|
+
dependencies:
|
1161
|
+
es6-iterator "2"
|
1162
|
+
es6-symbol "~3.1"
|
1163
|
+
|
1164
|
+
es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
|
1165
|
+
version "2.0.1"
|
1166
|
+
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
|
1167
|
+
dependencies:
|
1168
|
+
d "1"
|
1169
|
+
es5-ext "^0.10.14"
|
1170
|
+
es6-symbol "^3.1"
|
1171
|
+
|
1172
|
+
es6-map@^0.1.3:
|
1173
|
+
version "0.1.5"
|
1174
|
+
resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
|
1175
|
+
dependencies:
|
1176
|
+
d "1"
|
1177
|
+
es5-ext "~0.10.14"
|
1178
|
+
es6-iterator "~2.0.1"
|
1179
|
+
es6-set "~0.1.5"
|
1180
|
+
es6-symbol "~3.1.1"
|
1181
|
+
event-emitter "~0.3.5"
|
1182
|
+
|
1183
|
+
es6-set@~0.1.5:
|
1184
|
+
version "0.1.5"
|
1185
|
+
resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
|
1186
|
+
dependencies:
|
1187
|
+
d "1"
|
1188
|
+
es5-ext "~0.10.14"
|
1189
|
+
es6-iterator "~2.0.1"
|
1190
|
+
es6-symbol "3.1.1"
|
1191
|
+
event-emitter "~0.3.5"
|
1192
|
+
|
1193
|
+
es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1:
|
1194
|
+
version "3.1.1"
|
1195
|
+
resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
|
1196
|
+
dependencies:
|
1197
|
+
d "1"
|
1198
|
+
es5-ext "~0.10.14"
|
1199
|
+
|
1200
|
+
es6-weak-map@^2.0.1:
|
1201
|
+
version "2.0.2"
|
1202
|
+
resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
|
1203
|
+
dependencies:
|
1204
|
+
d "1"
|
1205
|
+
es5-ext "^0.10.14"
|
1206
|
+
es6-iterator "^2.0.1"
|
1207
|
+
es6-symbol "^3.1.1"
|
1208
|
+
|
1209
|
+
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
1210
|
+
version "1.0.5"
|
1211
|
+
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
1212
|
+
|
1213
|
+
escope@^3.6.0:
|
1214
|
+
version "3.6.0"
|
1215
|
+
resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
|
1216
|
+
dependencies:
|
1217
|
+
es6-map "^0.1.3"
|
1218
|
+
es6-weak-map "^2.0.1"
|
1219
|
+
esrecurse "^4.1.0"
|
1220
|
+
estraverse "^4.1.1"
|
1221
|
+
|
1222
|
+
eslint-config-airbnb-base@^11.3.1:
|
1223
|
+
version "11.3.1"
|
1224
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.1.tgz#c0ab108c9beed503cb999e4c60f4ef98eda0ed30"
|
1225
|
+
dependencies:
|
1226
|
+
eslint-restricted-globals "^0.1.1"
|
1227
|
+
|
1228
|
+
eslint-import-resolver-node@^0.3.1:
|
1229
|
+
version "0.3.1"
|
1230
|
+
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc"
|
1231
|
+
dependencies:
|
1232
|
+
debug "^2.6.8"
|
1233
|
+
resolve "^1.2.0"
|
1234
|
+
|
1235
|
+
eslint-module-utils@^2.1.1:
|
1236
|
+
version "2.1.1"
|
1237
|
+
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449"
|
1238
|
+
dependencies:
|
1239
|
+
debug "^2.6.8"
|
1240
|
+
pkg-dir "^1.0.0"
|
1241
|
+
|
1242
|
+
eslint-plugin-import@^2.7.0:
|
1243
|
+
version "2.7.0"
|
1244
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f"
|
1245
|
+
dependencies:
|
1246
|
+
builtin-modules "^1.1.1"
|
1247
|
+
contains-path "^0.1.0"
|
1248
|
+
debug "^2.6.8"
|
1249
|
+
doctrine "1.5.0"
|
1250
|
+
eslint-import-resolver-node "^0.3.1"
|
1251
|
+
eslint-module-utils "^2.1.1"
|
1252
|
+
has "^1.0.1"
|
1253
|
+
lodash.cond "^4.3.0"
|
1254
|
+
minimatch "^3.0.3"
|
1255
|
+
read-pkg-up "^2.0.0"
|
1256
|
+
|
1257
|
+
eslint-restricted-globals@^0.1.1:
|
1258
|
+
version "0.1.1"
|
1259
|
+
resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
|
1260
|
+
|
1261
|
+
eslint-scope@^3.7.1:
|
1262
|
+
version "3.7.1"
|
1263
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
|
1264
|
+
dependencies:
|
1265
|
+
esrecurse "^4.1.0"
|
1266
|
+
estraverse "^4.1.1"
|
1267
|
+
|
1268
|
+
eslint@^4.3.0:
|
1269
|
+
version "4.3.0"
|
1270
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.3.0.tgz#fcd7c96376bbf34c85ee67ed0012a299642b108f"
|
1271
|
+
dependencies:
|
1272
|
+
ajv "^5.2.0"
|
1273
|
+
babel-code-frame "^6.22.0"
|
1274
|
+
chalk "^1.1.3"
|
1275
|
+
concat-stream "^1.6.0"
|
1276
|
+
cross-spawn "^5.1.0"
|
1277
|
+
debug "^2.6.8"
|
1278
|
+
doctrine "^2.0.0"
|
1279
|
+
eslint-scope "^3.7.1"
|
1280
|
+
espree "^3.4.3"
|
1281
|
+
esquery "^1.0.0"
|
1282
|
+
estraverse "^4.2.0"
|
1283
|
+
esutils "^2.0.2"
|
1284
|
+
file-entry-cache "^2.0.0"
|
1285
|
+
functional-red-black-tree "^1.0.1"
|
1286
|
+
glob "^7.1.2"
|
1287
|
+
globals "^9.17.0"
|
1288
|
+
ignore "^3.3.3"
|
1289
|
+
imurmurhash "^0.1.4"
|
1290
|
+
inquirer "^3.0.6"
|
1291
|
+
is-resolvable "^1.0.0"
|
1292
|
+
js-yaml "^3.8.4"
|
1293
|
+
json-stable-stringify "^1.0.1"
|
1294
|
+
levn "^0.3.0"
|
1295
|
+
lodash "^4.17.4"
|
1296
|
+
minimatch "^3.0.2"
|
1297
|
+
mkdirp "^0.5.1"
|
1298
|
+
natural-compare "^1.4.0"
|
1299
|
+
optionator "^0.8.2"
|
1300
|
+
path-is-inside "^1.0.2"
|
1301
|
+
pluralize "^4.0.0"
|
1302
|
+
progress "^2.0.0"
|
1303
|
+
require-uncached "^1.0.3"
|
1304
|
+
semver "^5.3.0"
|
1305
|
+
strip-json-comments "~2.0.1"
|
1306
|
+
table "^4.0.1"
|
1307
|
+
text-table "~0.2.0"
|
1308
|
+
|
1309
|
+
espree@^3.4.3:
|
1310
|
+
version "3.4.3"
|
1311
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374"
|
1312
|
+
dependencies:
|
1313
|
+
acorn "^5.0.1"
|
1314
|
+
acorn-jsx "^3.0.0"
|
1315
|
+
|
1316
|
+
esprima@^4.0.0:
|
1317
|
+
version "4.0.0"
|
1318
|
+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
|
1319
|
+
|
1320
|
+
esquery@^1.0.0:
|
1321
|
+
version "1.0.0"
|
1322
|
+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
|
1323
|
+
dependencies:
|
1324
|
+
estraverse "^4.0.0"
|
1325
|
+
|
1326
|
+
esrecurse@^4.1.0:
|
1327
|
+
version "4.2.0"
|
1328
|
+
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
|
1329
|
+
dependencies:
|
1330
|
+
estraverse "^4.1.0"
|
1331
|
+
object-assign "^4.0.1"
|
1332
|
+
|
1333
|
+
estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
|
1334
|
+
version "4.2.0"
|
1335
|
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
|
1336
|
+
|
1337
|
+
esutils@^2.0.2:
|
1338
|
+
version "2.0.2"
|
1339
|
+
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
1340
|
+
|
1341
|
+
event-emitter@~0.3.5:
|
1342
|
+
version "0.3.5"
|
1343
|
+
resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
|
1344
|
+
dependencies:
|
1345
|
+
d "1"
|
1346
|
+
es5-ext "~0.10.14"
|
1347
|
+
|
1348
|
+
events@^1.0.0:
|
1349
|
+
version "1.1.1"
|
1350
|
+
resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
|
1351
|
+
|
1352
|
+
evp_bytestokey@^1.0.0:
|
1353
|
+
version "1.0.0"
|
1354
|
+
resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
|
1355
|
+
dependencies:
|
1356
|
+
create-hash "^1.1.1"
|
1357
|
+
|
1358
|
+
execa@^0.7.0:
|
1359
|
+
version "0.7.0"
|
1360
|
+
resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
|
1361
|
+
dependencies:
|
1362
|
+
cross-spawn "^5.0.1"
|
1363
|
+
get-stream "^3.0.0"
|
1364
|
+
is-stream "^1.1.0"
|
1365
|
+
npm-run-path "^2.0.0"
|
1366
|
+
p-finally "^1.0.0"
|
1367
|
+
signal-exit "^3.0.0"
|
1368
|
+
strip-eof "^1.0.0"
|
1369
|
+
|
1370
|
+
expand-brackets@^0.1.4:
|
1371
|
+
version "0.1.5"
|
1372
|
+
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
|
1373
|
+
dependencies:
|
1374
|
+
is-posix-bracket "^0.1.0"
|
1375
|
+
|
1376
|
+
expand-range@^1.8.1:
|
1377
|
+
version "1.8.2"
|
1378
|
+
resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
|
1379
|
+
dependencies:
|
1380
|
+
fill-range "^2.1.0"
|
1381
|
+
|
1382
|
+
extend@~3.0.0:
|
1383
|
+
version "3.0.1"
|
1384
|
+
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
|
1385
|
+
|
1386
|
+
external-editor@^2.0.4:
|
1387
|
+
version "2.0.4"
|
1388
|
+
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972"
|
1389
|
+
dependencies:
|
1390
|
+
iconv-lite "^0.4.17"
|
1391
|
+
jschardet "^1.4.2"
|
1392
|
+
tmp "^0.0.31"
|
1393
|
+
|
1394
|
+
extglob@^0.3.1:
|
1395
|
+
version "0.3.2"
|
1396
|
+
resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
|
1397
|
+
dependencies:
|
1398
|
+
is-extglob "^1.0.0"
|
1399
|
+
|
1400
|
+
extsprintf@1.0.2:
|
1401
|
+
version "1.0.2"
|
1402
|
+
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
|
1403
|
+
|
1404
|
+
fast-deep-equal@^1.0.0:
|
1405
|
+
version "1.0.0"
|
1406
|
+
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
|
1407
|
+
|
1408
|
+
fast-levenshtein@~2.0.4:
|
1409
|
+
version "2.0.6"
|
1410
|
+
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
1411
|
+
|
1412
|
+
figures@^2.0.0:
|
1413
|
+
version "2.0.0"
|
1414
|
+
resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
|
1415
|
+
dependencies:
|
1416
|
+
escape-string-regexp "^1.0.5"
|
1417
|
+
|
1418
|
+
file-entry-cache@^2.0.0:
|
1419
|
+
version "2.0.0"
|
1420
|
+
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
|
1421
|
+
dependencies:
|
1422
|
+
flat-cache "^1.2.1"
|
1423
|
+
object-assign "^4.0.1"
|
1424
|
+
|
1425
|
+
filename-regex@^2.0.0:
|
1426
|
+
version "2.0.1"
|
1427
|
+
resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
|
1428
|
+
|
1429
|
+
fill-range@^2.1.0:
|
1430
|
+
version "2.2.3"
|
1431
|
+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
|
1432
|
+
dependencies:
|
1433
|
+
is-number "^2.1.0"
|
1434
|
+
isobject "^2.0.0"
|
1435
|
+
randomatic "^1.1.3"
|
1436
|
+
repeat-element "^1.1.2"
|
1437
|
+
repeat-string "^1.5.2"
|
1438
|
+
|
1439
|
+
find-cache-dir@^1.0.0:
|
1440
|
+
version "1.0.0"
|
1441
|
+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
|
1442
|
+
dependencies:
|
1443
|
+
commondir "^1.0.1"
|
1444
|
+
make-dir "^1.0.0"
|
1445
|
+
pkg-dir "^2.0.0"
|
1446
|
+
|
1447
|
+
find-up@^1.0.0:
|
1448
|
+
version "1.1.2"
|
1449
|
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
|
1450
|
+
dependencies:
|
1451
|
+
path-exists "^2.0.0"
|
1452
|
+
pinkie-promise "^2.0.0"
|
1453
|
+
|
1454
|
+
find-up@^2.0.0, find-up@^2.1.0:
|
1455
|
+
version "2.1.0"
|
1456
|
+
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
|
1457
|
+
dependencies:
|
1458
|
+
locate-path "^2.0.0"
|
1459
|
+
|
1460
|
+
flat-cache@^1.2.1:
|
1461
|
+
version "1.2.2"
|
1462
|
+
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
|
1463
|
+
dependencies:
|
1464
|
+
circular-json "^0.3.1"
|
1465
|
+
del "^2.0.2"
|
1466
|
+
graceful-fs "^4.1.2"
|
1467
|
+
write "^0.2.1"
|
1468
|
+
|
1469
|
+
for-in@^1.0.1:
|
1470
|
+
version "1.0.2"
|
1471
|
+
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
1472
|
+
|
1473
|
+
for-own@^0.1.4:
|
1474
|
+
version "0.1.5"
|
1475
|
+
resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
|
1476
|
+
dependencies:
|
1477
|
+
for-in "^1.0.1"
|
1478
|
+
|
1479
|
+
forever-agent@~0.6.1:
|
1480
|
+
version "0.6.1"
|
1481
|
+
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
|
1482
|
+
|
1483
|
+
form-data@~2.1.1:
|
1484
|
+
version "2.1.4"
|
1485
|
+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
|
1486
|
+
dependencies:
|
1487
|
+
asynckit "^0.4.0"
|
1488
|
+
combined-stream "^1.0.5"
|
1489
|
+
mime-types "^2.1.12"
|
1490
|
+
|
1491
|
+
fs.realpath@^1.0.0:
|
1492
|
+
version "1.0.0"
|
1493
|
+
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
1494
|
+
|
1495
|
+
fsevents@^1.0.0:
|
1496
|
+
version "1.1.2"
|
1497
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
|
1498
|
+
dependencies:
|
1499
|
+
nan "^2.3.0"
|
1500
|
+
node-pre-gyp "^0.6.36"
|
1501
|
+
|
1502
|
+
fstream-ignore@^1.0.5:
|
1503
|
+
version "1.0.5"
|
1504
|
+
resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
|
1505
|
+
dependencies:
|
1506
|
+
fstream "^1.0.0"
|
1507
|
+
inherits "2"
|
1508
|
+
minimatch "^3.0.0"
|
1509
|
+
|
1510
|
+
fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
|
1511
|
+
version "1.0.11"
|
1512
|
+
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
|
1513
|
+
dependencies:
|
1514
|
+
graceful-fs "^4.1.2"
|
1515
|
+
inherits "~2.0.0"
|
1516
|
+
mkdirp ">=0.5 0"
|
1517
|
+
rimraf "2"
|
1518
|
+
|
1519
|
+
function-bind@^1.0.2:
|
1520
|
+
version "1.1.0"
|
1521
|
+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
|
1522
|
+
|
1523
|
+
functional-red-black-tree@^1.0.1:
|
1524
|
+
version "1.0.1"
|
1525
|
+
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
1526
|
+
|
1527
|
+
gauge@~2.7.3:
|
1528
|
+
version "2.7.4"
|
1529
|
+
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
1530
|
+
dependencies:
|
1531
|
+
aproba "^1.0.3"
|
1532
|
+
console-control-strings "^1.0.0"
|
1533
|
+
has-unicode "^2.0.0"
|
1534
|
+
object-assign "^4.1.0"
|
1535
|
+
signal-exit "^3.0.0"
|
1536
|
+
string-width "^1.0.1"
|
1537
|
+
strip-ansi "^3.0.1"
|
1538
|
+
wide-align "^1.1.0"
|
1539
|
+
|
1540
|
+
get-caller-file@^1.0.1:
|
1541
|
+
version "1.0.2"
|
1542
|
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
|
1543
|
+
|
1544
|
+
get-stream@^3.0.0:
|
1545
|
+
version "3.0.0"
|
1546
|
+
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
|
1547
|
+
|
1548
|
+
getpass@^0.1.1:
|
1549
|
+
version "0.1.7"
|
1550
|
+
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
|
1551
|
+
dependencies:
|
1552
|
+
assert-plus "^1.0.0"
|
1553
|
+
|
1554
|
+
glob-base@^0.3.0:
|
1555
|
+
version "0.3.0"
|
1556
|
+
resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
|
1557
|
+
dependencies:
|
1558
|
+
glob-parent "^2.0.0"
|
1559
|
+
is-glob "^2.0.0"
|
1560
|
+
|
1561
|
+
glob-parent@^2.0.0:
|
1562
|
+
version "2.0.0"
|
1563
|
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
|
1564
|
+
dependencies:
|
1565
|
+
is-glob "^2.0.0"
|
1566
|
+
|
1567
|
+
glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
|
1568
|
+
version "7.1.2"
|
1569
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
1570
|
+
dependencies:
|
1571
|
+
fs.realpath "^1.0.0"
|
1572
|
+
inflight "^1.0.4"
|
1573
|
+
inherits "2"
|
1574
|
+
minimatch "^3.0.4"
|
1575
|
+
once "^1.3.0"
|
1576
|
+
path-is-absolute "^1.0.0"
|
1577
|
+
|
1578
|
+
globals@^9.0.0, globals@^9.17.0:
|
1579
|
+
version "9.18.0"
|
1580
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
1581
|
+
|
1582
|
+
globby@^5.0.0:
|
1583
|
+
version "5.0.0"
|
1584
|
+
resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
|
1585
|
+
dependencies:
|
1586
|
+
array-union "^1.0.1"
|
1587
|
+
arrify "^1.0.0"
|
1588
|
+
glob "^7.0.3"
|
1589
|
+
object-assign "^4.0.1"
|
1590
|
+
pify "^2.0.0"
|
1591
|
+
pinkie-promise "^2.0.0"
|
1592
|
+
|
1593
|
+
graceful-fs@^4.1.2:
|
1594
|
+
version "4.1.11"
|
1595
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
1596
|
+
|
1597
|
+
har-schema@^1.0.5:
|
1598
|
+
version "1.0.5"
|
1599
|
+
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
|
1600
|
+
|
1601
|
+
har-validator@~4.2.1:
|
1602
|
+
version "4.2.1"
|
1603
|
+
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
|
1604
|
+
dependencies:
|
1605
|
+
ajv "^4.9.1"
|
1606
|
+
har-schema "^1.0.5"
|
1607
|
+
|
1608
|
+
has-ansi@^2.0.0:
|
1609
|
+
version "2.0.0"
|
1610
|
+
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
1611
|
+
dependencies:
|
1612
|
+
ansi-regex "^2.0.0"
|
1613
|
+
|
1614
|
+
has-flag@^2.0.0:
|
1615
|
+
version "2.0.0"
|
1616
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
|
1617
|
+
|
1618
|
+
has-unicode@^2.0.0:
|
1619
|
+
version "2.0.1"
|
1620
|
+
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
1621
|
+
|
1622
|
+
has@^1.0.1:
|
1623
|
+
version "1.0.1"
|
1624
|
+
resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
|
1625
|
+
dependencies:
|
1626
|
+
function-bind "^1.0.2"
|
1627
|
+
|
1628
|
+
hash-base@^2.0.0:
|
1629
|
+
version "2.0.2"
|
1630
|
+
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
|
1631
|
+
dependencies:
|
1632
|
+
inherits "^2.0.1"
|
1633
|
+
|
1634
|
+
hash.js@^1.0.0, hash.js@^1.0.3:
|
1635
|
+
version "1.1.3"
|
1636
|
+
resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
|
1637
|
+
dependencies:
|
1638
|
+
inherits "^2.0.3"
|
1639
|
+
minimalistic-assert "^1.0.0"
|
1640
|
+
|
1641
|
+
hawk@~3.1.3:
|
1642
|
+
version "3.1.3"
|
1643
|
+
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
|
1644
|
+
dependencies:
|
1645
|
+
boom "2.x.x"
|
1646
|
+
cryptiles "2.x.x"
|
1647
|
+
hoek "2.x.x"
|
1648
|
+
sntp "1.x.x"
|
1649
|
+
|
1650
|
+
hmac-drbg@^1.0.0:
|
1651
|
+
version "1.0.1"
|
1652
|
+
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
1653
|
+
dependencies:
|
1654
|
+
hash.js "^1.0.3"
|
1655
|
+
minimalistic-assert "^1.0.0"
|
1656
|
+
minimalistic-crypto-utils "^1.0.1"
|
1657
|
+
|
1658
|
+
hoek@2.x.x:
|
1659
|
+
version "2.16.3"
|
1660
|
+
resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
|
1661
|
+
|
1662
|
+
home-or-tmp@^2.0.0:
|
1663
|
+
version "2.0.0"
|
1664
|
+
resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
|
1665
|
+
dependencies:
|
1666
|
+
os-homedir "^1.0.0"
|
1667
|
+
os-tmpdir "^1.0.1"
|
1668
|
+
|
1669
|
+
hosted-git-info@^2.1.4:
|
1670
|
+
version "2.5.0"
|
1671
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
|
1672
|
+
|
1673
|
+
http-signature@~1.1.0:
|
1674
|
+
version "1.1.1"
|
1675
|
+
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
|
1676
|
+
dependencies:
|
1677
|
+
assert-plus "^0.2.0"
|
1678
|
+
jsprim "^1.2.2"
|
1679
|
+
sshpk "^1.7.0"
|
1680
|
+
|
1681
|
+
https-browserify@0.0.1:
|
1682
|
+
version "0.0.1"
|
1683
|
+
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
|
1684
|
+
|
1685
|
+
iconv-lite@^0.4.17:
|
1686
|
+
version "0.4.18"
|
1687
|
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2"
|
1688
|
+
|
1689
|
+
ieee754@^1.1.4:
|
1690
|
+
version "1.1.8"
|
1691
|
+
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
|
1692
|
+
|
1693
|
+
ignore@^3.3.3:
|
1694
|
+
version "3.3.3"
|
1695
|
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d"
|
1696
|
+
|
1697
|
+
imurmurhash@^0.1.4:
|
1698
|
+
version "0.1.4"
|
1699
|
+
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
1700
|
+
|
1701
|
+
indexof@0.0.1:
|
1702
|
+
version "0.0.1"
|
1703
|
+
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
|
1704
|
+
|
1705
|
+
inflight@^1.0.4:
|
1706
|
+
version "1.0.6"
|
1707
|
+
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
1708
|
+
dependencies:
|
1709
|
+
once "^1.3.0"
|
1710
|
+
wrappy "1"
|
1711
|
+
|
1712
|
+
inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
|
1713
|
+
version "2.0.3"
|
1714
|
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
1715
|
+
|
1716
|
+
inherits@2.0.1:
|
1717
|
+
version "2.0.1"
|
1718
|
+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
|
1719
|
+
|
1720
|
+
ini@~1.3.0:
|
1721
|
+
version "1.3.4"
|
1722
|
+
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
|
1723
|
+
|
1724
|
+
inquirer@^3.0.6:
|
1725
|
+
version "3.2.1"
|
1726
|
+
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175"
|
1727
|
+
dependencies:
|
1728
|
+
ansi-escapes "^2.0.0"
|
1729
|
+
chalk "^2.0.0"
|
1730
|
+
cli-cursor "^2.1.0"
|
1731
|
+
cli-width "^2.0.0"
|
1732
|
+
external-editor "^2.0.4"
|
1733
|
+
figures "^2.0.0"
|
1734
|
+
lodash "^4.3.0"
|
1735
|
+
mute-stream "0.0.7"
|
1736
|
+
run-async "^2.2.0"
|
1737
|
+
rx-lite "^4.0.8"
|
1738
|
+
rx-lite-aggregates "^4.0.8"
|
1739
|
+
string-width "^2.1.0"
|
1740
|
+
strip-ansi "^4.0.0"
|
1741
|
+
through "^2.3.6"
|
1742
|
+
|
1743
|
+
interpret@^1.0.0:
|
1744
|
+
version "1.0.3"
|
1745
|
+
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
|
1746
|
+
|
1747
|
+
invariant@^2.2.0, invariant@^2.2.2:
|
1748
|
+
version "2.2.2"
|
1749
|
+
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
|
1750
|
+
dependencies:
|
1751
|
+
loose-envify "^1.0.0"
|
1752
|
+
|
1753
|
+
invert-kv@^1.0.0:
|
1754
|
+
version "1.0.0"
|
1755
|
+
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
|
1756
|
+
|
1757
|
+
is-arrayish@^0.2.1:
|
1758
|
+
version "0.2.1"
|
1759
|
+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
1760
|
+
|
1761
|
+
is-binary-path@^1.0.0:
|
1762
|
+
version "1.0.1"
|
1763
|
+
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
|
1764
|
+
dependencies:
|
1765
|
+
binary-extensions "^1.0.0"
|
1766
|
+
|
1767
|
+
is-buffer@^1.1.5:
|
1768
|
+
version "1.1.5"
|
1769
|
+
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
|
1770
|
+
|
1771
|
+
is-builtin-module@^1.0.0:
|
1772
|
+
version "1.0.0"
|
1773
|
+
resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
|
1774
|
+
dependencies:
|
1775
|
+
builtin-modules "^1.0.0"
|
1776
|
+
|
1777
|
+
is-dotfile@^1.0.0:
|
1778
|
+
version "1.0.3"
|
1779
|
+
resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
|
1780
|
+
|
1781
|
+
is-equal-shallow@^0.1.3:
|
1782
|
+
version "0.1.3"
|
1783
|
+
resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
|
1784
|
+
dependencies:
|
1785
|
+
is-primitive "^2.0.0"
|
1786
|
+
|
1787
|
+
is-extendable@^0.1.1:
|
1788
|
+
version "0.1.1"
|
1789
|
+
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
|
1790
|
+
|
1791
|
+
is-extglob@^1.0.0:
|
1792
|
+
version "1.0.0"
|
1793
|
+
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
|
1794
|
+
|
1795
|
+
is-finite@^1.0.0:
|
1796
|
+
version "1.0.2"
|
1797
|
+
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
|
1798
|
+
dependencies:
|
1799
|
+
number-is-nan "^1.0.0"
|
1800
|
+
|
1801
|
+
is-fullwidth-code-point@^1.0.0:
|
1802
|
+
version "1.0.0"
|
1803
|
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
|
1804
|
+
dependencies:
|
1805
|
+
number-is-nan "^1.0.0"
|
1806
|
+
|
1807
|
+
is-fullwidth-code-point@^2.0.0:
|
1808
|
+
version "2.0.0"
|
1809
|
+
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
1810
|
+
|
1811
|
+
is-glob@^2.0.0, is-glob@^2.0.1:
|
1812
|
+
version "2.0.1"
|
1813
|
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
|
1814
|
+
dependencies:
|
1815
|
+
is-extglob "^1.0.0"
|
1816
|
+
|
1817
|
+
is-number@^2.1.0:
|
1818
|
+
version "2.1.0"
|
1819
|
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
|
1820
|
+
dependencies:
|
1821
|
+
kind-of "^3.0.2"
|
1822
|
+
|
1823
|
+
is-number@^3.0.0:
|
1824
|
+
version "3.0.0"
|
1825
|
+
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
|
1826
|
+
dependencies:
|
1827
|
+
kind-of "^3.0.2"
|
1828
|
+
|
1829
|
+
is-path-cwd@^1.0.0:
|
1830
|
+
version "1.0.0"
|
1831
|
+
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
|
1832
|
+
|
1833
|
+
is-path-in-cwd@^1.0.0:
|
1834
|
+
version "1.0.0"
|
1835
|
+
resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
|
1836
|
+
dependencies:
|
1837
|
+
is-path-inside "^1.0.0"
|
1838
|
+
|
1839
|
+
is-path-inside@^1.0.0:
|
1840
|
+
version "1.0.0"
|
1841
|
+
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
|
1842
|
+
dependencies:
|
1843
|
+
path-is-inside "^1.0.1"
|
1844
|
+
|
1845
|
+
is-posix-bracket@^0.1.0:
|
1846
|
+
version "0.1.1"
|
1847
|
+
resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
|
1848
|
+
|
1849
|
+
is-primitive@^2.0.0:
|
1850
|
+
version "2.0.0"
|
1851
|
+
resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
|
1852
|
+
|
1853
|
+
is-promise@^2.1.0:
|
1854
|
+
version "2.1.0"
|
1855
|
+
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
|
1856
|
+
|
1857
|
+
is-resolvable@^1.0.0:
|
1858
|
+
version "1.0.0"
|
1859
|
+
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
|
1860
|
+
dependencies:
|
1861
|
+
tryit "^1.0.1"
|
1862
|
+
|
1863
|
+
is-stream@^1.1.0:
|
1864
|
+
version "1.1.0"
|
1865
|
+
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
1866
|
+
|
1867
|
+
is-typedarray@~1.0.0:
|
1868
|
+
version "1.0.0"
|
1869
|
+
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
1870
|
+
|
1871
|
+
isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
1872
|
+
version "1.0.0"
|
1873
|
+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
1874
|
+
|
1875
|
+
isexe@^2.0.0:
|
1876
|
+
version "2.0.0"
|
1877
|
+
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
1878
|
+
|
1879
|
+
isobject@^2.0.0:
|
1880
|
+
version "2.1.0"
|
1881
|
+
resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
|
1882
|
+
dependencies:
|
1883
|
+
isarray "1.0.0"
|
1884
|
+
|
1885
|
+
isstream@~0.1.2:
|
1886
|
+
version "0.1.2"
|
1887
|
+
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
1888
|
+
|
1889
|
+
js-tokens@^3.0.0:
|
1890
|
+
version "3.0.2"
|
1891
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
1892
|
+
|
1893
|
+
js-yaml@^3.8.4:
|
1894
|
+
version "3.9.0"
|
1895
|
+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.0.tgz#4ffbbf25c2ac963b8299dc74da7e3740de1c18ce"
|
1896
|
+
dependencies:
|
1897
|
+
argparse "^1.0.7"
|
1898
|
+
esprima "^4.0.0"
|
1899
|
+
|
1900
|
+
jsbn@~0.1.0:
|
1901
|
+
version "0.1.1"
|
1902
|
+
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
|
1903
|
+
|
1904
|
+
jschardet@^1.4.2:
|
1905
|
+
version "1.5.0"
|
1906
|
+
resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.0.tgz#a61f310306a5a71188e1b1acd08add3cfbb08b1e"
|
1907
|
+
|
1908
|
+
jsesc@^1.3.0:
|
1909
|
+
version "1.3.0"
|
1910
|
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
|
1911
|
+
|
1912
|
+
jsesc@~0.5.0:
|
1913
|
+
version "0.5.0"
|
1914
|
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
1915
|
+
|
1916
|
+
json-loader@^0.5.4:
|
1917
|
+
version "0.5.7"
|
1918
|
+
resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
|
1919
|
+
|
1920
|
+
json-schema-traverse@^0.3.0:
|
1921
|
+
version "0.3.1"
|
1922
|
+
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
|
1923
|
+
|
1924
|
+
json-schema@0.2.3:
|
1925
|
+
version "0.2.3"
|
1926
|
+
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
1927
|
+
|
1928
|
+
json-stable-stringify@^1.0.1:
|
1929
|
+
version "1.0.1"
|
1930
|
+
resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
|
1931
|
+
dependencies:
|
1932
|
+
jsonify "~0.0.0"
|
1933
|
+
|
1934
|
+
json-stringify-safe@~5.0.1:
|
1935
|
+
version "5.0.1"
|
1936
|
+
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
|
1937
|
+
|
1938
|
+
json5@^0.5.0, json5@^0.5.1:
|
1939
|
+
version "0.5.1"
|
1940
|
+
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
|
1941
|
+
|
1942
|
+
jsonify@~0.0.0:
|
1943
|
+
version "0.0.0"
|
1944
|
+
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
|
1945
|
+
|
1946
|
+
jsprim@^1.2.2:
|
1947
|
+
version "1.4.0"
|
1948
|
+
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
|
1949
|
+
dependencies:
|
1950
|
+
assert-plus "1.0.0"
|
1951
|
+
extsprintf "1.0.2"
|
1952
|
+
json-schema "0.2.3"
|
1953
|
+
verror "1.3.6"
|
1954
|
+
|
1955
|
+
kind-of@^3.0.2:
|
1956
|
+
version "3.2.2"
|
1957
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
|
1958
|
+
dependencies:
|
1959
|
+
is-buffer "^1.1.5"
|
1960
|
+
|
1961
|
+
kind-of@^4.0.0:
|
1962
|
+
version "4.0.0"
|
1963
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
|
1964
|
+
dependencies:
|
1965
|
+
is-buffer "^1.1.5"
|
1966
|
+
|
1967
|
+
lazy-cache@^1.0.3:
|
1968
|
+
version "1.0.4"
|
1969
|
+
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
|
1970
|
+
|
1971
|
+
lcid@^1.0.0:
|
1972
|
+
version "1.0.0"
|
1973
|
+
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
|
1974
|
+
dependencies:
|
1975
|
+
invert-kv "^1.0.0"
|
1976
|
+
|
1977
|
+
levn@^0.3.0, levn@~0.3.0:
|
1978
|
+
version "0.3.0"
|
1979
|
+
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
1980
|
+
dependencies:
|
1981
|
+
prelude-ls "~1.1.2"
|
1982
|
+
type-check "~0.3.2"
|
1983
|
+
|
1984
|
+
load-json-file@^2.0.0:
|
1985
|
+
version "2.0.0"
|
1986
|
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
|
1987
|
+
dependencies:
|
1988
|
+
graceful-fs "^4.1.2"
|
1989
|
+
parse-json "^2.2.0"
|
1990
|
+
pify "^2.0.0"
|
1991
|
+
strip-bom "^3.0.0"
|
1992
|
+
|
1993
|
+
loader-runner@^2.3.0:
|
1994
|
+
version "2.3.0"
|
1995
|
+
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
|
1996
|
+
|
1997
|
+
loader-utils@^1.0.2, loader-utils@^1.1.0:
|
1998
|
+
version "1.1.0"
|
1999
|
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
|
2000
|
+
dependencies:
|
2001
|
+
big.js "^3.1.3"
|
2002
|
+
emojis-list "^2.0.0"
|
2003
|
+
json5 "^0.5.0"
|
2004
|
+
|
2005
|
+
locate-path@^2.0.0:
|
2006
|
+
version "2.0.0"
|
2007
|
+
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
|
2008
|
+
dependencies:
|
2009
|
+
p-locate "^2.0.0"
|
2010
|
+
path-exists "^3.0.0"
|
2011
|
+
|
2012
|
+
lodash.cond@^4.3.0:
|
2013
|
+
version "4.5.2"
|
2014
|
+
resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
|
2015
|
+
|
2016
|
+
lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0:
|
2017
|
+
version "4.17.4"
|
2018
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
2019
|
+
|
2020
|
+
longest@^1.0.1:
|
2021
|
+
version "1.0.1"
|
2022
|
+
resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
|
2023
|
+
|
2024
|
+
loose-envify@^1.0.0:
|
2025
|
+
version "1.3.1"
|
2026
|
+
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
|
2027
|
+
dependencies:
|
2028
|
+
js-tokens "^3.0.0"
|
2029
|
+
|
2030
|
+
lru-cache@^4.0.1:
|
2031
|
+
version "4.1.1"
|
2032
|
+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
|
2033
|
+
dependencies:
|
2034
|
+
pseudomap "^1.0.2"
|
2035
|
+
yallist "^2.1.2"
|
2036
|
+
|
2037
|
+
make-dir@^1.0.0:
|
2038
|
+
version "1.0.0"
|
2039
|
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
|
2040
|
+
dependencies:
|
2041
|
+
pify "^2.3.0"
|
2042
|
+
|
2043
|
+
mem@^1.1.0:
|
2044
|
+
version "1.1.0"
|
2045
|
+
resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
|
2046
|
+
dependencies:
|
2047
|
+
mimic-fn "^1.0.0"
|
2048
|
+
|
2049
|
+
memory-fs@^0.4.0, memory-fs@~0.4.1:
|
2050
|
+
version "0.4.1"
|
2051
|
+
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
|
2052
|
+
dependencies:
|
2053
|
+
errno "^0.1.3"
|
2054
|
+
readable-stream "^2.0.1"
|
2055
|
+
|
2056
|
+
micromatch@^2.1.5:
|
2057
|
+
version "2.3.11"
|
2058
|
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
|
2059
|
+
dependencies:
|
2060
|
+
arr-diff "^2.0.0"
|
2061
|
+
array-unique "^0.2.1"
|
2062
|
+
braces "^1.8.2"
|
2063
|
+
expand-brackets "^0.1.4"
|
2064
|
+
extglob "^0.3.1"
|
2065
|
+
filename-regex "^2.0.0"
|
2066
|
+
is-extglob "^1.0.0"
|
2067
|
+
is-glob "^2.0.1"
|
2068
|
+
kind-of "^3.0.2"
|
2069
|
+
normalize-path "^2.0.1"
|
2070
|
+
object.omit "^2.0.0"
|
2071
|
+
parse-glob "^3.0.4"
|
2072
|
+
regex-cache "^0.4.2"
|
2073
|
+
|
2074
|
+
miller-rabin@^4.0.0:
|
2075
|
+
version "4.0.0"
|
2076
|
+
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
|
2077
|
+
dependencies:
|
2078
|
+
bn.js "^4.0.0"
|
2079
|
+
brorand "^1.0.1"
|
2080
|
+
|
2081
|
+
mime-db@~1.29.0:
|
2082
|
+
version "1.29.0"
|
2083
|
+
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878"
|
2084
|
+
|
2085
|
+
mime-types@^2.1.12, mime-types@~2.1.7:
|
2086
|
+
version "2.1.16"
|
2087
|
+
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23"
|
2088
|
+
dependencies:
|
2089
|
+
mime-db "~1.29.0"
|
2090
|
+
|
2091
|
+
mimic-fn@^1.0.0:
|
2092
|
+
version "1.1.0"
|
2093
|
+
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
|
2094
|
+
|
2095
|
+
minimalistic-assert@^1.0.0:
|
2096
|
+
version "1.0.0"
|
2097
|
+
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
|
2098
|
+
|
2099
|
+
minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
2100
|
+
version "1.0.1"
|
2101
|
+
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
2102
|
+
|
2103
|
+
minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
|
2104
|
+
version "3.0.4"
|
2105
|
+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
2106
|
+
dependencies:
|
2107
|
+
brace-expansion "^1.1.7"
|
2108
|
+
|
2109
|
+
minimist@0.0.8:
|
2110
|
+
version "0.0.8"
|
2111
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
2112
|
+
|
2113
|
+
minimist@^1.2.0:
|
2114
|
+
version "1.2.0"
|
2115
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
2116
|
+
|
2117
|
+
"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
|
2118
|
+
version "0.5.1"
|
2119
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
2120
|
+
dependencies:
|
2121
|
+
minimist "0.0.8"
|
2122
|
+
|
2123
|
+
ms@2.0.0:
|
2124
|
+
version "2.0.0"
|
2125
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
2126
|
+
|
2127
|
+
mute-stream@0.0.7:
|
2128
|
+
version "0.0.7"
|
2129
|
+
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
2130
|
+
|
2131
|
+
nan@^2.3.0:
|
2132
|
+
version "2.6.2"
|
2133
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
|
2134
|
+
|
2135
|
+
natural-compare@^1.4.0:
|
2136
|
+
version "1.4.0"
|
2137
|
+
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
2138
|
+
|
2139
|
+
node-libs-browser@^2.0.0:
|
2140
|
+
version "2.0.0"
|
2141
|
+
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
|
2142
|
+
dependencies:
|
2143
|
+
assert "^1.1.1"
|
2144
|
+
browserify-zlib "^0.1.4"
|
2145
|
+
buffer "^4.3.0"
|
2146
|
+
console-browserify "^1.1.0"
|
2147
|
+
constants-browserify "^1.0.0"
|
2148
|
+
crypto-browserify "^3.11.0"
|
2149
|
+
domain-browser "^1.1.1"
|
2150
|
+
events "^1.0.0"
|
2151
|
+
https-browserify "0.0.1"
|
2152
|
+
os-browserify "^0.2.0"
|
2153
|
+
path-browserify "0.0.0"
|
2154
|
+
process "^0.11.0"
|
2155
|
+
punycode "^1.2.4"
|
2156
|
+
querystring-es3 "^0.2.0"
|
2157
|
+
readable-stream "^2.0.5"
|
2158
|
+
stream-browserify "^2.0.1"
|
2159
|
+
stream-http "^2.3.1"
|
2160
|
+
string_decoder "^0.10.25"
|
2161
|
+
timers-browserify "^2.0.2"
|
2162
|
+
tty-browserify "0.0.0"
|
2163
|
+
url "^0.11.0"
|
2164
|
+
util "^0.10.3"
|
2165
|
+
vm-browserify "0.0.4"
|
2166
|
+
|
2167
|
+
node-pre-gyp@^0.6.36:
|
2168
|
+
version "0.6.36"
|
2169
|
+
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786"
|
2170
|
+
dependencies:
|
2171
|
+
mkdirp "^0.5.1"
|
2172
|
+
nopt "^4.0.1"
|
2173
|
+
npmlog "^4.0.2"
|
2174
|
+
rc "^1.1.7"
|
2175
|
+
request "^2.81.0"
|
2176
|
+
rimraf "^2.6.1"
|
2177
|
+
semver "^5.3.0"
|
2178
|
+
tar "^2.2.1"
|
2179
|
+
tar-pack "^3.4.0"
|
2180
|
+
|
2181
|
+
nopt@^4.0.1:
|
2182
|
+
version "4.0.1"
|
2183
|
+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
2184
|
+
dependencies:
|
2185
|
+
abbrev "1"
|
2186
|
+
osenv "^0.1.4"
|
2187
|
+
|
2188
|
+
normalize-package-data@^2.3.2:
|
2189
|
+
version "2.4.0"
|
2190
|
+
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
|
2191
|
+
dependencies:
|
2192
|
+
hosted-git-info "^2.1.4"
|
2193
|
+
is-builtin-module "^1.0.0"
|
2194
|
+
semver "2 || 3 || 4 || 5"
|
2195
|
+
validate-npm-package-license "^3.0.1"
|
2196
|
+
|
2197
|
+
normalize-path@^2.0.1:
|
2198
|
+
version "2.1.1"
|
2199
|
+
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
|
2200
|
+
dependencies:
|
2201
|
+
remove-trailing-separator "^1.0.1"
|
2202
|
+
|
2203
|
+
npm-run-path@^2.0.0:
|
2204
|
+
version "2.0.2"
|
2205
|
+
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
|
2206
|
+
dependencies:
|
2207
|
+
path-key "^2.0.0"
|
2208
|
+
|
2209
|
+
npmlog@^4.0.2:
|
2210
|
+
version "4.1.2"
|
2211
|
+
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
2212
|
+
dependencies:
|
2213
|
+
are-we-there-yet "~1.1.2"
|
2214
|
+
console-control-strings "~1.1.0"
|
2215
|
+
gauge "~2.7.3"
|
2216
|
+
set-blocking "~2.0.0"
|
2217
|
+
|
2218
|
+
number-is-nan@^1.0.0:
|
2219
|
+
version "1.0.1"
|
2220
|
+
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
2221
|
+
|
2222
|
+
oauth-sign@~0.8.1:
|
2223
|
+
version "0.8.2"
|
2224
|
+
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
|
2225
|
+
|
2226
|
+
object-assign@^4.0.1, object-assign@^4.1.0:
|
2227
|
+
version "4.1.1"
|
2228
|
+
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
2229
|
+
|
2230
|
+
object.omit@^2.0.0:
|
2231
|
+
version "2.0.1"
|
2232
|
+
resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
|
2233
|
+
dependencies:
|
2234
|
+
for-own "^0.1.4"
|
2235
|
+
is-extendable "^0.1.1"
|
2236
|
+
|
2237
|
+
once@^1.3.0, once@^1.3.3:
|
2238
|
+
version "1.4.0"
|
2239
|
+
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
2240
|
+
dependencies:
|
2241
|
+
wrappy "1"
|
2242
|
+
|
2243
|
+
onetime@^2.0.0:
|
2244
|
+
version "2.0.1"
|
2245
|
+
resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
|
2246
|
+
dependencies:
|
2247
|
+
mimic-fn "^1.0.0"
|
2248
|
+
|
2249
|
+
optionator@^0.8.2:
|
2250
|
+
version "0.8.2"
|
2251
|
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
|
2252
|
+
dependencies:
|
2253
|
+
deep-is "~0.1.3"
|
2254
|
+
fast-levenshtein "~2.0.4"
|
2255
|
+
levn "~0.3.0"
|
2256
|
+
prelude-ls "~1.1.2"
|
2257
|
+
type-check "~0.3.2"
|
2258
|
+
wordwrap "~1.0.0"
|
2259
|
+
|
2260
|
+
os-browserify@^0.2.0:
|
2261
|
+
version "0.2.1"
|
2262
|
+
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
|
2263
|
+
|
2264
|
+
os-homedir@^1.0.0:
|
2265
|
+
version "1.0.2"
|
2266
|
+
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
2267
|
+
|
2268
|
+
os-locale@^2.0.0:
|
2269
|
+
version "2.1.0"
|
2270
|
+
resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
|
2271
|
+
dependencies:
|
2272
|
+
execa "^0.7.0"
|
2273
|
+
lcid "^1.0.0"
|
2274
|
+
mem "^1.1.0"
|
2275
|
+
|
2276
|
+
os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
|
2277
|
+
version "1.0.2"
|
2278
|
+
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
2279
|
+
|
2280
|
+
osenv@^0.1.4:
|
2281
|
+
version "0.1.4"
|
2282
|
+
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
|
2283
|
+
dependencies:
|
2284
|
+
os-homedir "^1.0.0"
|
2285
|
+
os-tmpdir "^1.0.0"
|
2286
|
+
|
2287
|
+
p-finally@^1.0.0:
|
2288
|
+
version "1.0.0"
|
2289
|
+
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
2290
|
+
|
2291
|
+
p-limit@^1.1.0:
|
2292
|
+
version "1.1.0"
|
2293
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
|
2294
|
+
|
2295
|
+
p-locate@^2.0.0:
|
2296
|
+
version "2.0.0"
|
2297
|
+
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
|
2298
|
+
dependencies:
|
2299
|
+
p-limit "^1.1.0"
|
2300
|
+
|
2301
|
+
pako@~0.2.0:
|
2302
|
+
version "0.2.9"
|
2303
|
+
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
|
2304
|
+
|
2305
|
+
parse-asn1@^5.0.0:
|
2306
|
+
version "5.1.0"
|
2307
|
+
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
|
2308
|
+
dependencies:
|
2309
|
+
asn1.js "^4.0.0"
|
2310
|
+
browserify-aes "^1.0.0"
|
2311
|
+
create-hash "^1.1.0"
|
2312
|
+
evp_bytestokey "^1.0.0"
|
2313
|
+
pbkdf2 "^3.0.3"
|
2314
|
+
|
2315
|
+
parse-glob@^3.0.4:
|
2316
|
+
version "3.0.4"
|
2317
|
+
resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
|
2318
|
+
dependencies:
|
2319
|
+
glob-base "^0.3.0"
|
2320
|
+
is-dotfile "^1.0.0"
|
2321
|
+
is-extglob "^1.0.0"
|
2322
|
+
is-glob "^2.0.0"
|
2323
|
+
|
2324
|
+
parse-json@^2.2.0:
|
2325
|
+
version "2.2.0"
|
2326
|
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
|
2327
|
+
dependencies:
|
2328
|
+
error-ex "^1.2.0"
|
2329
|
+
|
2330
|
+
path-browserify@0.0.0:
|
2331
|
+
version "0.0.0"
|
2332
|
+
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
|
2333
|
+
|
2334
|
+
path-exists@^2.0.0:
|
2335
|
+
version "2.1.0"
|
2336
|
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
|
2337
|
+
dependencies:
|
2338
|
+
pinkie-promise "^2.0.0"
|
2339
|
+
|
2340
|
+
path-exists@^3.0.0:
|
2341
|
+
version "3.0.0"
|
2342
|
+
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
|
2343
|
+
|
2344
|
+
path-is-absolute@^1.0.0:
|
2345
|
+
version "1.0.1"
|
2346
|
+
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
2347
|
+
|
2348
|
+
path-is-inside@^1.0.1, path-is-inside@^1.0.2:
|
2349
|
+
version "1.0.2"
|
2350
|
+
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
|
2351
|
+
|
2352
|
+
path-key@^2.0.0:
|
2353
|
+
version "2.0.1"
|
2354
|
+
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
|
2355
|
+
|
2356
|
+
path-parse@^1.0.5:
|
2357
|
+
version "1.0.5"
|
2358
|
+
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
|
2359
|
+
|
2360
|
+
path-type@^2.0.0:
|
2361
|
+
version "2.0.0"
|
2362
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
|
2363
|
+
dependencies:
|
2364
|
+
pify "^2.0.0"
|
2365
|
+
|
2366
|
+
pbkdf2@^3.0.3:
|
2367
|
+
version "3.0.12"
|
2368
|
+
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2"
|
2369
|
+
dependencies:
|
2370
|
+
create-hash "^1.1.2"
|
2371
|
+
create-hmac "^1.1.4"
|
2372
|
+
ripemd160 "^2.0.1"
|
2373
|
+
safe-buffer "^5.0.1"
|
2374
|
+
sha.js "^2.4.8"
|
2375
|
+
|
2376
|
+
performance-now@^0.2.0:
|
2377
|
+
version "0.2.0"
|
2378
|
+
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
|
2379
|
+
|
2380
|
+
pify@^2.0.0, pify@^2.3.0:
|
2381
|
+
version "2.3.0"
|
2382
|
+
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
2383
|
+
|
2384
|
+
pinkie-promise@^2.0.0:
|
2385
|
+
version "2.0.1"
|
2386
|
+
resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
|
2387
|
+
dependencies:
|
2388
|
+
pinkie "^2.0.0"
|
2389
|
+
|
2390
|
+
pinkie@^2.0.0:
|
2391
|
+
version "2.0.4"
|
2392
|
+
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
2393
|
+
|
2394
|
+
pkg-dir@^1.0.0:
|
2395
|
+
version "1.0.0"
|
2396
|
+
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
|
2397
|
+
dependencies:
|
2398
|
+
find-up "^1.0.0"
|
2399
|
+
|
2400
|
+
pkg-dir@^2.0.0:
|
2401
|
+
version "2.0.0"
|
2402
|
+
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
|
2403
|
+
dependencies:
|
2404
|
+
find-up "^2.1.0"
|
2405
|
+
|
2406
|
+
pluralize@^4.0.0:
|
2407
|
+
version "4.0.0"
|
2408
|
+
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762"
|
2409
|
+
|
2410
|
+
prelude-ls@~1.1.2:
|
2411
|
+
version "1.1.2"
|
2412
|
+
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
2413
|
+
|
2414
|
+
preserve@^0.2.0:
|
2415
|
+
version "0.2.0"
|
2416
|
+
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
2417
|
+
|
2418
|
+
private@^0.1.6:
|
2419
|
+
version "0.1.7"
|
2420
|
+
resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
|
2421
|
+
|
2422
|
+
process-nextick-args@~1.0.6:
|
2423
|
+
version "1.0.7"
|
2424
|
+
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
2425
|
+
|
2426
|
+
process@^0.11.0:
|
2427
|
+
version "0.11.10"
|
2428
|
+
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
|
2429
|
+
|
2430
|
+
progress@^2.0.0:
|
2431
|
+
version "2.0.0"
|
2432
|
+
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
|
2433
|
+
|
2434
|
+
prr@~0.0.0:
|
2435
|
+
version "0.0.0"
|
2436
|
+
resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
|
2437
|
+
|
2438
|
+
pseudomap@^1.0.2:
|
2439
|
+
version "1.0.2"
|
2440
|
+
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
2441
|
+
|
2442
|
+
public-encrypt@^4.0.0:
|
2443
|
+
version "4.0.0"
|
2444
|
+
resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
|
2445
|
+
dependencies:
|
2446
|
+
bn.js "^4.1.0"
|
2447
|
+
browserify-rsa "^4.0.0"
|
2448
|
+
create-hash "^1.1.0"
|
2449
|
+
parse-asn1 "^5.0.0"
|
2450
|
+
randombytes "^2.0.1"
|
2451
|
+
|
2452
|
+
punycode@1.3.2:
|
2453
|
+
version "1.3.2"
|
2454
|
+
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
|
2455
|
+
|
2456
|
+
punycode@^1.2.4, punycode@^1.4.1:
|
2457
|
+
version "1.4.1"
|
2458
|
+
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
|
2459
|
+
|
2460
|
+
qs@~6.4.0:
|
2461
|
+
version "6.4.0"
|
2462
|
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
|
2463
|
+
|
2464
|
+
querystring-es3@^0.2.0:
|
2465
|
+
version "0.2.1"
|
2466
|
+
resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
|
2467
|
+
|
2468
|
+
querystring@0.2.0:
|
2469
|
+
version "0.2.0"
|
2470
|
+
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
2471
|
+
|
2472
|
+
randomatic@^1.1.3:
|
2473
|
+
version "1.1.7"
|
2474
|
+
resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
|
2475
|
+
dependencies:
|
2476
|
+
is-number "^3.0.0"
|
2477
|
+
kind-of "^4.0.0"
|
2478
|
+
|
2479
|
+
randombytes@^2.0.0, randombytes@^2.0.1:
|
2480
|
+
version "2.0.5"
|
2481
|
+
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
|
2482
|
+
dependencies:
|
2483
|
+
safe-buffer "^5.1.0"
|
2484
|
+
|
2485
|
+
rc@^1.1.7:
|
2486
|
+
version "1.2.1"
|
2487
|
+
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
|
2488
|
+
dependencies:
|
2489
|
+
deep-extend "~0.4.0"
|
2490
|
+
ini "~1.3.0"
|
2491
|
+
minimist "^1.2.0"
|
2492
|
+
strip-json-comments "~2.0.1"
|
2493
|
+
|
2494
|
+
read-pkg-up@^2.0.0:
|
2495
|
+
version "2.0.0"
|
2496
|
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
|
2497
|
+
dependencies:
|
2498
|
+
find-up "^2.0.0"
|
2499
|
+
read-pkg "^2.0.0"
|
2500
|
+
|
2501
|
+
read-pkg@^2.0.0:
|
2502
|
+
version "2.0.0"
|
2503
|
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
|
2504
|
+
dependencies:
|
2505
|
+
load-json-file "^2.0.0"
|
2506
|
+
normalize-package-data "^2.3.2"
|
2507
|
+
path-type "^2.0.0"
|
2508
|
+
|
2509
|
+
readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6:
|
2510
|
+
version "2.3.3"
|
2511
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
|
2512
|
+
dependencies:
|
2513
|
+
core-util-is "~1.0.0"
|
2514
|
+
inherits "~2.0.3"
|
2515
|
+
isarray "~1.0.0"
|
2516
|
+
process-nextick-args "~1.0.6"
|
2517
|
+
safe-buffer "~5.1.1"
|
2518
|
+
string_decoder "~1.0.3"
|
2519
|
+
util-deprecate "~1.0.1"
|
2520
|
+
|
2521
|
+
readdirp@^2.0.0:
|
2522
|
+
version "2.1.0"
|
2523
|
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
|
2524
|
+
dependencies:
|
2525
|
+
graceful-fs "^4.1.2"
|
2526
|
+
minimatch "^3.0.2"
|
2527
|
+
readable-stream "^2.0.2"
|
2528
|
+
set-immediate-shim "^1.0.1"
|
2529
|
+
|
2530
|
+
regenerate@^1.2.1:
|
2531
|
+
version "1.3.2"
|
2532
|
+
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
|
2533
|
+
|
2534
|
+
regenerator-runtime@^0.10.0:
|
2535
|
+
version "0.10.5"
|
2536
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
|
2537
|
+
|
2538
|
+
regenerator-transform@0.9.11:
|
2539
|
+
version "0.9.11"
|
2540
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283"
|
2541
|
+
dependencies:
|
2542
|
+
babel-runtime "^6.18.0"
|
2543
|
+
babel-types "^6.19.0"
|
2544
|
+
private "^0.1.6"
|
2545
|
+
|
2546
|
+
regex-cache@^0.4.2:
|
2547
|
+
version "0.4.3"
|
2548
|
+
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
|
2549
|
+
dependencies:
|
2550
|
+
is-equal-shallow "^0.1.3"
|
2551
|
+
is-primitive "^2.0.0"
|
2552
|
+
|
2553
|
+
regexpu-core@^2.0.0:
|
2554
|
+
version "2.0.0"
|
2555
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
|
2556
|
+
dependencies:
|
2557
|
+
regenerate "^1.2.1"
|
2558
|
+
regjsgen "^0.2.0"
|
2559
|
+
regjsparser "^0.1.4"
|
2560
|
+
|
2561
|
+
regjsgen@^0.2.0:
|
2562
|
+
version "0.2.0"
|
2563
|
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
|
2564
|
+
|
2565
|
+
regjsparser@^0.1.4:
|
2566
|
+
version "0.1.5"
|
2567
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
|
2568
|
+
dependencies:
|
2569
|
+
jsesc "~0.5.0"
|
2570
|
+
|
2571
|
+
remove-trailing-separator@^1.0.1:
|
2572
|
+
version "1.0.2"
|
2573
|
+
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511"
|
2574
|
+
|
2575
|
+
repeat-element@^1.1.2:
|
2576
|
+
version "1.1.2"
|
2577
|
+
resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
|
2578
|
+
|
2579
|
+
repeat-string@^1.5.2:
|
2580
|
+
version "1.6.1"
|
2581
|
+
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
2582
|
+
|
2583
|
+
repeating@^2.0.0:
|
2584
|
+
version "2.0.1"
|
2585
|
+
resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
|
2586
|
+
dependencies:
|
2587
|
+
is-finite "^1.0.0"
|
2588
|
+
|
2589
|
+
request@^2.81.0:
|
2590
|
+
version "2.81.0"
|
2591
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
|
2592
|
+
dependencies:
|
2593
|
+
aws-sign2 "~0.6.0"
|
2594
|
+
aws4 "^1.2.1"
|
2595
|
+
caseless "~0.12.0"
|
2596
|
+
combined-stream "~1.0.5"
|
2597
|
+
extend "~3.0.0"
|
2598
|
+
forever-agent "~0.6.1"
|
2599
|
+
form-data "~2.1.1"
|
2600
|
+
har-validator "~4.2.1"
|
2601
|
+
hawk "~3.1.3"
|
2602
|
+
http-signature "~1.1.0"
|
2603
|
+
is-typedarray "~1.0.0"
|
2604
|
+
isstream "~0.1.2"
|
2605
|
+
json-stringify-safe "~5.0.1"
|
2606
|
+
mime-types "~2.1.7"
|
2607
|
+
oauth-sign "~0.8.1"
|
2608
|
+
performance-now "^0.2.0"
|
2609
|
+
qs "~6.4.0"
|
2610
|
+
safe-buffer "^5.0.1"
|
2611
|
+
stringstream "~0.0.4"
|
2612
|
+
tough-cookie "~2.3.0"
|
2613
|
+
tunnel-agent "^0.6.0"
|
2614
|
+
uuid "^3.0.0"
|
2615
|
+
|
2616
|
+
require-directory@^2.1.1:
|
2617
|
+
version "2.1.1"
|
2618
|
+
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
2619
|
+
|
2620
|
+
require-main-filename@^1.0.1:
|
2621
|
+
version "1.0.1"
|
2622
|
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
2623
|
+
|
2624
|
+
require-uncached@^1.0.3:
|
2625
|
+
version "1.0.3"
|
2626
|
+
resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
|
2627
|
+
dependencies:
|
2628
|
+
caller-path "^0.1.0"
|
2629
|
+
resolve-from "^1.0.0"
|
2630
|
+
|
2631
|
+
resolve-from@^1.0.0:
|
2632
|
+
version "1.0.1"
|
2633
|
+
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
|
2634
|
+
|
2635
|
+
resolve@^1.2.0:
|
2636
|
+
version "1.4.0"
|
2637
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
|
2638
|
+
dependencies:
|
2639
|
+
path-parse "^1.0.5"
|
2640
|
+
|
2641
|
+
restore-cursor@^2.0.0:
|
2642
|
+
version "2.0.0"
|
2643
|
+
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
2644
|
+
dependencies:
|
2645
|
+
onetime "^2.0.0"
|
2646
|
+
signal-exit "^3.0.2"
|
2647
|
+
|
2648
|
+
right-align@^0.1.1:
|
2649
|
+
version "0.1.3"
|
2650
|
+
resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
|
2651
|
+
dependencies:
|
2652
|
+
align-text "^0.1.1"
|
2653
|
+
|
2654
|
+
rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
|
2655
|
+
version "2.6.1"
|
2656
|
+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
|
2657
|
+
dependencies:
|
2658
|
+
glob "^7.0.5"
|
2659
|
+
|
2660
|
+
ripemd160@^2.0.0, ripemd160@^2.0.1:
|
2661
|
+
version "2.0.1"
|
2662
|
+
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
|
2663
|
+
dependencies:
|
2664
|
+
hash-base "^2.0.0"
|
2665
|
+
inherits "^2.0.1"
|
2666
|
+
|
2667
|
+
run-async@^2.2.0:
|
2668
|
+
version "2.3.0"
|
2669
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
|
2670
|
+
dependencies:
|
2671
|
+
is-promise "^2.1.0"
|
2672
|
+
|
2673
|
+
rx-lite-aggregates@^4.0.8:
|
2674
|
+
version "4.0.8"
|
2675
|
+
resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
|
2676
|
+
dependencies:
|
2677
|
+
rx-lite "*"
|
2678
|
+
|
2679
|
+
rx-lite@*, rx-lite@^4.0.8:
|
2680
|
+
version "4.0.8"
|
2681
|
+
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
|
2682
|
+
|
2683
|
+
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
|
2684
|
+
version "5.1.1"
|
2685
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
|
2686
|
+
|
2687
|
+
"semver@2 || 3 || 4 || 5", semver@^5.3.0:
|
2688
|
+
version "5.4.1"
|
2689
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
2690
|
+
|
2691
|
+
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
2692
|
+
version "2.0.0"
|
2693
|
+
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
2694
|
+
|
2695
|
+
set-immediate-shim@^1.0.1:
|
2696
|
+
version "1.0.1"
|
2697
|
+
resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
|
2698
|
+
|
2699
|
+
setimmediate@^1.0.4:
|
2700
|
+
version "1.0.5"
|
2701
|
+
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
2702
|
+
|
2703
|
+
sha.js@^2.4.0, sha.js@^2.4.8:
|
2704
|
+
version "2.4.8"
|
2705
|
+
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
|
2706
|
+
dependencies:
|
2707
|
+
inherits "^2.0.1"
|
2708
|
+
|
2709
|
+
shebang-command@^1.2.0:
|
2710
|
+
version "1.2.0"
|
2711
|
+
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
|
2712
|
+
dependencies:
|
2713
|
+
shebang-regex "^1.0.0"
|
2714
|
+
|
2715
|
+
shebang-regex@^1.0.0:
|
2716
|
+
version "1.0.0"
|
2717
|
+
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
|
2718
|
+
|
2719
|
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
|
2720
|
+
version "3.0.2"
|
2721
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
2722
|
+
|
2723
|
+
slash@^1.0.0:
|
2724
|
+
version "1.0.0"
|
2725
|
+
resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
|
2726
|
+
|
2727
|
+
slice-ansi@0.0.4:
|
2728
|
+
version "0.0.4"
|
2729
|
+
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
|
2730
|
+
|
2731
|
+
sntp@1.x.x:
|
2732
|
+
version "1.0.9"
|
2733
|
+
resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
|
2734
|
+
dependencies:
|
2735
|
+
hoek "2.x.x"
|
2736
|
+
|
2737
|
+
source-list-map@^2.0.0:
|
2738
|
+
version "2.0.0"
|
2739
|
+
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
|
2740
|
+
|
2741
|
+
source-map-support@^0.4.2:
|
2742
|
+
version "0.4.15"
|
2743
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1"
|
2744
|
+
dependencies:
|
2745
|
+
source-map "^0.5.6"
|
2746
|
+
|
2747
|
+
source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
|
2748
|
+
version "0.5.6"
|
2749
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
|
2750
|
+
|
2751
|
+
spark-md5@^3.0.0:
|
2752
|
+
version "3.0.0"
|
2753
|
+
resolved "https://registry.yarnpkg.com/spark-md5/-/spark-md5-3.0.0.tgz#3722227c54e2faf24b1dc6d933cc144e6f71bfef"
|
2754
|
+
|
2755
|
+
spdx-correct@~1.0.0:
|
2756
|
+
version "1.0.2"
|
2757
|
+
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
|
2758
|
+
dependencies:
|
2759
|
+
spdx-license-ids "^1.0.2"
|
2760
|
+
|
2761
|
+
spdx-expression-parse@~1.0.0:
|
2762
|
+
version "1.0.4"
|
2763
|
+
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
|
2764
|
+
|
2765
|
+
spdx-license-ids@^1.0.2:
|
2766
|
+
version "1.2.2"
|
2767
|
+
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
|
2768
|
+
|
2769
|
+
sprintf-js@~1.0.2:
|
2770
|
+
version "1.0.3"
|
2771
|
+
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
2772
|
+
|
2773
|
+
sshpk@^1.7.0:
|
2774
|
+
version "1.13.1"
|
2775
|
+
resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
|
2776
|
+
dependencies:
|
2777
|
+
asn1 "~0.2.3"
|
2778
|
+
assert-plus "^1.0.0"
|
2779
|
+
dashdash "^1.12.0"
|
2780
|
+
getpass "^0.1.1"
|
2781
|
+
optionalDependencies:
|
2782
|
+
bcrypt-pbkdf "^1.0.0"
|
2783
|
+
ecc-jsbn "~0.1.1"
|
2784
|
+
jsbn "~0.1.0"
|
2785
|
+
tweetnacl "~0.14.0"
|
2786
|
+
|
2787
|
+
stream-browserify@^2.0.1:
|
2788
|
+
version "2.0.1"
|
2789
|
+
resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
|
2790
|
+
dependencies:
|
2791
|
+
inherits "~2.0.1"
|
2792
|
+
readable-stream "^2.0.2"
|
2793
|
+
|
2794
|
+
stream-http@^2.3.1:
|
2795
|
+
version "2.7.2"
|
2796
|
+
resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
|
2797
|
+
dependencies:
|
2798
|
+
builtin-status-codes "^3.0.0"
|
2799
|
+
inherits "^2.0.1"
|
2800
|
+
readable-stream "^2.2.6"
|
2801
|
+
to-arraybuffer "^1.0.0"
|
2802
|
+
xtend "^4.0.0"
|
2803
|
+
|
2804
|
+
string-width@^1.0.1, string-width@^1.0.2:
|
2805
|
+
version "1.0.2"
|
2806
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
|
2807
|
+
dependencies:
|
2808
|
+
code-point-at "^1.0.0"
|
2809
|
+
is-fullwidth-code-point "^1.0.0"
|
2810
|
+
strip-ansi "^3.0.0"
|
2811
|
+
|
2812
|
+
string-width@^2.0.0, string-width@^2.1.0:
|
2813
|
+
version "2.1.1"
|
2814
|
+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
|
2815
|
+
dependencies:
|
2816
|
+
is-fullwidth-code-point "^2.0.0"
|
2817
|
+
strip-ansi "^4.0.0"
|
2818
|
+
|
2819
|
+
string_decoder@^0.10.25:
|
2820
|
+
version "0.10.31"
|
2821
|
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
|
2822
|
+
|
2823
|
+
string_decoder@~1.0.3:
|
2824
|
+
version "1.0.3"
|
2825
|
+
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
|
2826
|
+
dependencies:
|
2827
|
+
safe-buffer "~5.1.0"
|
2828
|
+
|
2829
|
+
stringstream@~0.0.4:
|
2830
|
+
version "0.0.5"
|
2831
|
+
resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
|
2832
|
+
|
2833
|
+
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
|
2834
|
+
version "3.0.1"
|
2835
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
2836
|
+
dependencies:
|
2837
|
+
ansi-regex "^2.0.0"
|
2838
|
+
|
2839
|
+
strip-ansi@^4.0.0:
|
2840
|
+
version "4.0.0"
|
2841
|
+
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
|
2842
|
+
dependencies:
|
2843
|
+
ansi-regex "^3.0.0"
|
2844
|
+
|
2845
|
+
strip-bom@^3.0.0:
|
2846
|
+
version "3.0.0"
|
2847
|
+
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
2848
|
+
|
2849
|
+
strip-eof@^1.0.0:
|
2850
|
+
version "1.0.0"
|
2851
|
+
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
|
2852
|
+
|
2853
|
+
strip-json-comments@~2.0.1:
|
2854
|
+
version "2.0.1"
|
2855
|
+
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
2856
|
+
|
2857
|
+
supports-color@^2.0.0:
|
2858
|
+
version "2.0.0"
|
2859
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
2860
|
+
|
2861
|
+
supports-color@^4.0.0, supports-color@^4.2.1:
|
2862
|
+
version "4.2.1"
|
2863
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836"
|
2864
|
+
dependencies:
|
2865
|
+
has-flag "^2.0.0"
|
2866
|
+
|
2867
|
+
table@^4.0.1:
|
2868
|
+
version "4.0.1"
|
2869
|
+
resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435"
|
2870
|
+
dependencies:
|
2871
|
+
ajv "^4.7.0"
|
2872
|
+
ajv-keywords "^1.0.0"
|
2873
|
+
chalk "^1.1.1"
|
2874
|
+
lodash "^4.0.0"
|
2875
|
+
slice-ansi "0.0.4"
|
2876
|
+
string-width "^2.0.0"
|
2877
|
+
|
2878
|
+
tapable@^0.2.7:
|
2879
|
+
version "0.2.7"
|
2880
|
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.7.tgz#e46c0daacbb2b8a98b9b0cea0f4052105817ed5c"
|
2881
|
+
|
2882
|
+
tar-pack@^3.4.0:
|
2883
|
+
version "3.4.0"
|
2884
|
+
resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
|
2885
|
+
dependencies:
|
2886
|
+
debug "^2.2.0"
|
2887
|
+
fstream "^1.0.10"
|
2888
|
+
fstream-ignore "^1.0.5"
|
2889
|
+
once "^1.3.3"
|
2890
|
+
readable-stream "^2.1.4"
|
2891
|
+
rimraf "^2.5.1"
|
2892
|
+
tar "^2.2.1"
|
2893
|
+
uid-number "^0.0.6"
|
2894
|
+
|
2895
|
+
tar@^2.2.1:
|
2896
|
+
version "2.2.1"
|
2897
|
+
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
|
2898
|
+
dependencies:
|
2899
|
+
block-stream "*"
|
2900
|
+
fstream "^1.0.2"
|
2901
|
+
inherits "2"
|
2902
|
+
|
2903
|
+
text-table@~0.2.0:
|
2904
|
+
version "0.2.0"
|
2905
|
+
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
2906
|
+
|
2907
|
+
through@^2.3.6:
|
2908
|
+
version "2.3.8"
|
2909
|
+
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
2910
|
+
|
2911
|
+
timers-browserify@^2.0.2:
|
2912
|
+
version "2.0.2"
|
2913
|
+
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86"
|
2914
|
+
dependencies:
|
2915
|
+
setimmediate "^1.0.4"
|
2916
|
+
|
2917
|
+
tmp@^0.0.31:
|
2918
|
+
version "0.0.31"
|
2919
|
+
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"
|
2920
|
+
dependencies:
|
2921
|
+
os-tmpdir "~1.0.1"
|
2922
|
+
|
2923
|
+
to-arraybuffer@^1.0.0:
|
2924
|
+
version "1.0.1"
|
2925
|
+
resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
|
2926
|
+
|
2927
|
+
to-fast-properties@^1.0.1:
|
2928
|
+
version "1.0.3"
|
2929
|
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
2930
|
+
|
2931
|
+
tough-cookie@~2.3.0:
|
2932
|
+
version "2.3.2"
|
2933
|
+
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
2934
|
+
dependencies:
|
2935
|
+
punycode "^1.4.1"
|
2936
|
+
|
2937
|
+
trim-right@^1.0.1:
|
2938
|
+
version "1.0.1"
|
2939
|
+
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
|
2940
|
+
|
2941
|
+
tryit@^1.0.1:
|
2942
|
+
version "1.0.3"
|
2943
|
+
resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
|
2944
|
+
|
2945
|
+
tty-browserify@0.0.0:
|
2946
|
+
version "0.0.0"
|
2947
|
+
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
2948
|
+
|
2949
|
+
tunnel-agent@^0.6.0:
|
2950
|
+
version "0.6.0"
|
2951
|
+
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
|
2952
|
+
dependencies:
|
2953
|
+
safe-buffer "^5.0.1"
|
2954
|
+
|
2955
|
+
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
|
2956
|
+
version "0.14.5"
|
2957
|
+
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
|
2958
|
+
|
2959
|
+
type-check@~0.3.2:
|
2960
|
+
version "0.3.2"
|
2961
|
+
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
|
2962
|
+
dependencies:
|
2963
|
+
prelude-ls "~1.1.2"
|
2964
|
+
|
2965
|
+
typedarray@^0.0.6:
|
2966
|
+
version "0.0.6"
|
2967
|
+
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
2968
|
+
|
2969
|
+
uglify-js@^2.8.29:
|
2970
|
+
version "2.8.29"
|
2971
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
|
2972
|
+
dependencies:
|
2973
|
+
source-map "~0.5.1"
|
2974
|
+
yargs "~3.10.0"
|
2975
|
+
optionalDependencies:
|
2976
|
+
uglify-to-browserify "~1.0.0"
|
2977
|
+
|
2978
|
+
uglify-to-browserify@~1.0.0:
|
2979
|
+
version "1.0.2"
|
2980
|
+
resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
|
2981
|
+
|
2982
|
+
uglifyjs-webpack-plugin@^0.4.6:
|
2983
|
+
version "0.4.6"
|
2984
|
+
resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
|
2985
|
+
dependencies:
|
2986
|
+
source-map "^0.5.6"
|
2987
|
+
uglify-js "^2.8.29"
|
2988
|
+
webpack-sources "^1.0.1"
|
2989
|
+
|
2990
|
+
uid-number@^0.0.6:
|
2991
|
+
version "0.0.6"
|
2992
|
+
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
|
2993
|
+
|
2994
|
+
url@^0.11.0:
|
2995
|
+
version "0.11.0"
|
2996
|
+
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
|
2997
|
+
dependencies:
|
2998
|
+
punycode "1.3.2"
|
2999
|
+
querystring "0.2.0"
|
3000
|
+
|
3001
|
+
util-deprecate@~1.0.1:
|
3002
|
+
version "1.0.2"
|
3003
|
+
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
3004
|
+
|
3005
|
+
util@0.10.3, util@^0.10.3:
|
3006
|
+
version "0.10.3"
|
3007
|
+
resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
|
3008
|
+
dependencies:
|
3009
|
+
inherits "2.0.1"
|
3010
|
+
|
3011
|
+
uuid@^3.0.0:
|
3012
|
+
version "3.1.0"
|
3013
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
|
3014
|
+
|
3015
|
+
validate-npm-package-license@^3.0.1:
|
3016
|
+
version "3.0.1"
|
3017
|
+
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
|
3018
|
+
dependencies:
|
3019
|
+
spdx-correct "~1.0.0"
|
3020
|
+
spdx-expression-parse "~1.0.0"
|
3021
|
+
|
3022
|
+
verror@1.3.6:
|
3023
|
+
version "1.3.6"
|
3024
|
+
resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
|
3025
|
+
dependencies:
|
3026
|
+
extsprintf "1.0.2"
|
3027
|
+
|
3028
|
+
vm-browserify@0.0.4:
|
3029
|
+
version "0.0.4"
|
3030
|
+
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
|
3031
|
+
dependencies:
|
3032
|
+
indexof "0.0.1"
|
3033
|
+
|
3034
|
+
watchpack@^1.4.0:
|
3035
|
+
version "1.4.0"
|
3036
|
+
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
|
3037
|
+
dependencies:
|
3038
|
+
async "^2.1.2"
|
3039
|
+
chokidar "^1.7.0"
|
3040
|
+
graceful-fs "^4.1.2"
|
3041
|
+
|
3042
|
+
webpack-sources@^1.0.1:
|
3043
|
+
version "1.0.1"
|
3044
|
+
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf"
|
3045
|
+
dependencies:
|
3046
|
+
source-list-map "^2.0.0"
|
3047
|
+
source-map "~0.5.3"
|
3048
|
+
|
3049
|
+
webpack@^3.4.0:
|
3050
|
+
version "3.4.0"
|
3051
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.4.0.tgz#e9465b660ad79dd2d33874d968b31746ea9a8e63"
|
3052
|
+
dependencies:
|
3053
|
+
acorn "^5.0.0"
|
3054
|
+
acorn-dynamic-import "^2.0.0"
|
3055
|
+
ajv "^5.1.5"
|
3056
|
+
ajv-keywords "^2.0.0"
|
3057
|
+
async "^2.1.2"
|
3058
|
+
enhanced-resolve "^3.4.0"
|
3059
|
+
escope "^3.6.0"
|
3060
|
+
interpret "^1.0.0"
|
3061
|
+
json-loader "^0.5.4"
|
3062
|
+
json5 "^0.5.1"
|
3063
|
+
loader-runner "^2.3.0"
|
3064
|
+
loader-utils "^1.1.0"
|
3065
|
+
memory-fs "~0.4.1"
|
3066
|
+
mkdirp "~0.5.0"
|
3067
|
+
node-libs-browser "^2.0.0"
|
3068
|
+
source-map "^0.5.3"
|
3069
|
+
supports-color "^4.2.1"
|
3070
|
+
tapable "^0.2.7"
|
3071
|
+
uglifyjs-webpack-plugin "^0.4.6"
|
3072
|
+
watchpack "^1.4.0"
|
3073
|
+
webpack-sources "^1.0.1"
|
3074
|
+
yargs "^8.0.2"
|
3075
|
+
|
3076
|
+
which-module@^2.0.0:
|
3077
|
+
version "2.0.0"
|
3078
|
+
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
3079
|
+
|
3080
|
+
which@^1.2.9:
|
3081
|
+
version "1.2.14"
|
3082
|
+
resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
|
3083
|
+
dependencies:
|
3084
|
+
isexe "^2.0.0"
|
3085
|
+
|
3086
|
+
wide-align@^1.1.0:
|
3087
|
+
version "1.1.2"
|
3088
|
+
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
|
3089
|
+
dependencies:
|
3090
|
+
string-width "^1.0.2"
|
3091
|
+
|
3092
|
+
window-size@0.1.0:
|
3093
|
+
version "0.1.0"
|
3094
|
+
resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
|
3095
|
+
|
3096
|
+
wordwrap@0.0.2:
|
3097
|
+
version "0.0.2"
|
3098
|
+
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
|
3099
|
+
|
3100
|
+
wordwrap@~1.0.0:
|
3101
|
+
version "1.0.0"
|
3102
|
+
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
3103
|
+
|
3104
|
+
wrap-ansi@^2.0.0:
|
3105
|
+
version "2.1.0"
|
3106
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
|
3107
|
+
dependencies:
|
3108
|
+
string-width "^1.0.1"
|
3109
|
+
strip-ansi "^3.0.1"
|
3110
|
+
|
3111
|
+
wrappy@1:
|
3112
|
+
version "1.0.2"
|
3113
|
+
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
3114
|
+
|
3115
|
+
write@^0.2.1:
|
3116
|
+
version "0.2.1"
|
3117
|
+
resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
|
3118
|
+
dependencies:
|
3119
|
+
mkdirp "^0.5.1"
|
3120
|
+
|
3121
|
+
xtend@^4.0.0:
|
3122
|
+
version "4.0.1"
|
3123
|
+
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
3124
|
+
|
3125
|
+
y18n@^3.2.1:
|
3126
|
+
version "3.2.1"
|
3127
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
|
3128
|
+
|
3129
|
+
yallist@^2.1.2:
|
3130
|
+
version "2.1.2"
|
3131
|
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|
3132
|
+
|
3133
|
+
yargs-parser@^7.0.0:
|
3134
|
+
version "7.0.0"
|
3135
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
|
3136
|
+
dependencies:
|
3137
|
+
camelcase "^4.1.0"
|
3138
|
+
|
3139
|
+
yargs@^8.0.2:
|
3140
|
+
version "8.0.2"
|
3141
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
|
3142
|
+
dependencies:
|
3143
|
+
camelcase "^4.1.0"
|
3144
|
+
cliui "^3.2.0"
|
3145
|
+
decamelize "^1.1.1"
|
3146
|
+
get-caller-file "^1.0.1"
|
3147
|
+
os-locale "^2.0.0"
|
3148
|
+
read-pkg-up "^2.0.0"
|
3149
|
+
require-directory "^2.1.1"
|
3150
|
+
require-main-filename "^1.0.1"
|
3151
|
+
set-blocking "^2.0.0"
|
3152
|
+
string-width "^2.0.0"
|
3153
|
+
which-module "^2.0.0"
|
3154
|
+
y18n "^3.2.1"
|
3155
|
+
yargs-parser "^7.0.0"
|
3156
|
+
|
3157
|
+
yargs@~3.10.0:
|
3158
|
+
version "3.10.0"
|
3159
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
|
3160
|
+
dependencies:
|
3161
|
+
camelcase "^1.0.2"
|
3162
|
+
cliui "^2.1.0"
|
3163
|
+
decamelize "^1.0.0"
|
3164
|
+
window-size "0.1.0"
|