├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app └── jobs │ └── turbo_power │ └── streams │ └── action_broadcast_job.rb ├── assets ├── hero-dark.png ├── hero.png ├── icon.png └── logo.png ├── bin ├── console └── setup ├── lib ├── turbo_power.rb └── turbo_power │ ├── attribute_transformations.rb │ ├── broadcastable.rb │ ├── broadcasts.rb │ ├── engine.rb │ ├── render_helper.rb │ ├── stream_helper.rb │ └── version.rb ├── sig └── turbo_power.rbs ├── test ├── dummy │ ├── .gitignore │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ └── scaffold.css │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ └── models │ │ │ └── message.rb │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ └── test.rb │ │ ├── routes.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ └── 20240606204215_create_messages.rb │ │ └── schema.rb │ ├── log │ │ └── .gitignore │ └── public │ │ └── .keep ├── stream_helper_test_case.rb ├── test_helper.rb ├── turbo_power │ ├── attribute_transformations_test.rb │ ├── broadcastable_test.rb │ ├── helpers_test.rb │ └── stream_helper │ │ ├── add_css_class_test.rb │ │ ├── clear_local_storage_test.rb │ │ ├── clear_session_storage_test.rb │ │ ├── clear_storage_test.rb │ │ ├── console_log_test.rb │ │ ├── console_table_test.rb │ │ ├── dispatch_event_test.rb │ │ ├── graft_test.rb │ │ ├── history_back_test.rb │ │ ├── history_forward_test.rb │ │ ├── history_go_test.rb │ │ ├── inner_html_test.rb │ │ ├── insert_adjacent_html_test.rb │ │ ├── insert_adjacent_text_test.rb │ │ ├── morph_test.rb │ │ ├── notification_test.rb │ │ ├── outer_html_test.rb │ │ ├── push_state_test.rb │ │ ├── redirect_to_test.rb │ │ ├── reload_test.rb │ │ ├── remove_attribute_test.rb │ │ ├── remove_css_class_test.rb │ │ ├── remove_local_storage_item_test.rb │ │ ├── remove_session_storage_item_test.rb │ │ ├── remove_storage_item_test.rb │ │ ├── replace_css_class_test.rb │ │ ├── replace_state_test.rb │ │ ├── reset_form_test.rb │ │ ├── scroll_into_view_test.rb │ │ ├── set_attribute_test.rb │ │ ├── set_cookie_item_test.rb │ │ ├── set_cookie_test.rb │ │ ├── set_dataset_attribute_test.rb │ │ ├── set_focus_test.rb │ │ ├── set_local_storage_item_test.rb │ │ ├── set_meta_test.rb │ │ ├── set_property_test.rb │ │ ├── set_session_storage_item_test.rb │ │ ├── set_storage_item_test.rb │ │ ├── set_style_test.rb │ │ ├── set_styles_test.rb │ │ ├── set_title_test.rb │ │ ├── set_value_test.rb │ │ ├── text_content_test.rb │ │ ├── toggle_attribute_test.rb │ │ ├── toggle_css_class_test.rb │ │ ├── turbo_clear_cache_test.rb │ │ ├── turbo_frame_reload_test.rb │ │ ├── turbo_frame_set_src_test.rb │ │ ├── turbo_progress_bar_hide_test.rb │ │ ├── turbo_progress_bar_set_value_test.rb │ │ └── turbo_progress_bar_show_test.rb ├── turbo_power_test.rb └── turbo_stream_helper.rb └── turbo_power.gemspec /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.2 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /app/jobs/turbo_power/streams/action_broadcast_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/app/jobs/turbo_power/streams/action_broadcast_job.rb -------------------------------------------------------------------------------- /assets/hero-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/assets/hero-dark.png -------------------------------------------------------------------------------- /assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/assets/hero.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/assets/logo.png -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/turbo_power.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power.rb -------------------------------------------------------------------------------- /lib/turbo_power/attribute_transformations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power/attribute_transformations.rb -------------------------------------------------------------------------------- /lib/turbo_power/broadcastable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power/broadcastable.rb -------------------------------------------------------------------------------- /lib/turbo_power/broadcasts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power/broadcasts.rb -------------------------------------------------------------------------------- /lib/turbo_power/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power/engine.rb -------------------------------------------------------------------------------- /lib/turbo_power/render_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power/render_helper.rb -------------------------------------------------------------------------------- /lib/turbo_power/stream_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/lib/turbo_power/stream_helper.rb -------------------------------------------------------------------------------- /lib/turbo_power/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module TurboPower 4 | VERSION = "0.7.0" 5 | end 6 | -------------------------------------------------------------------------------- /sig/turbo_power.rbs: -------------------------------------------------------------------------------- 1 | module TurboPower 2 | VERSION: String 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/.gitignore -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/scaffold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/app/assets/stylesheets/scaffold.css -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/app/models/message.rb -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20240606204215_create_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/db/migrate/20240606204215_create_messages.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/log/.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /test/dummy/public/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stream_helper_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/stream_helper_test_case.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/turbo_power/attribute_transformations_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/attribute_transformations_test.rb -------------------------------------------------------------------------------- /test/turbo_power/broadcastable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/broadcastable_test.rb -------------------------------------------------------------------------------- /test/turbo_power/helpers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/helpers_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/add_css_class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/add_css_class_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/clear_local_storage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/clear_local_storage_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/clear_session_storage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/clear_session_storage_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/clear_storage_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/clear_storage_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/console_log_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/console_log_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/console_table_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/console_table_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/dispatch_event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/dispatch_event_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/graft_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/graft_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/history_back_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/history_back_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/history_forward_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/history_forward_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/history_go_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/history_go_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/inner_html_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/inner_html_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/insert_adjacent_html_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/insert_adjacent_html_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/insert_adjacent_text_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/insert_adjacent_text_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/morph_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/morph_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/notification_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/notification_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/outer_html_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/outer_html_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/push_state_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/push_state_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/redirect_to_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/redirect_to_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/reload_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/reload_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/remove_attribute_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/remove_attribute_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/remove_css_class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/remove_css_class_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/remove_local_storage_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/remove_local_storage_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/remove_session_storage_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/remove_session_storage_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/remove_storage_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/remove_storage_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/replace_css_class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/replace_css_class_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/replace_state_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/replace_state_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/reset_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/reset_form_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/scroll_into_view_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/scroll_into_view_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_attribute_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_attribute_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_cookie_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_cookie_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_cookie_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_cookie_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_dataset_attribute_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_dataset_attribute_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_focus_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_focus_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_local_storage_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_local_storage_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_meta_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_meta_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_property_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_property_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_session_storage_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_session_storage_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_storage_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_storage_item_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_style_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_style_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_styles_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_styles_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_title_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_title_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/set_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/set_value_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/text_content_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/text_content_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/toggle_attribute_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/toggle_attribute_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/toggle_css_class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/toggle_css_class_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/turbo_clear_cache_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/turbo_clear_cache_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/turbo_frame_reload_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/turbo_frame_reload_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/turbo_frame_set_src_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/turbo_frame_set_src_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/turbo_progress_bar_hide_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/turbo_progress_bar_hide_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/turbo_progress_bar_set_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/turbo_progress_bar_set_value_test.rb -------------------------------------------------------------------------------- /test/turbo_power/stream_helper/turbo_progress_bar_show_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power/stream_helper/turbo_progress_bar_show_test.rb -------------------------------------------------------------------------------- /test/turbo_power_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_power_test.rb -------------------------------------------------------------------------------- /test/turbo_stream_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/test/turbo_stream_helper.rb -------------------------------------------------------------------------------- /turbo_power.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoroth/turbo_power-rails/HEAD/turbo_power.gemspec --------------------------------------------------------------------------------