├── .gitignore ├── .travis.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── gemfiles ├── rails_3.2.gemfile ├── rails_3.2.gemfile.lock ├── rails_4.0.gemfile ├── rails_4.0.gemfile.lock ├── rails_4.1.gemfile ├── rails_4.1.gemfile.lock ├── rails_4.2.gemfile ├── rails_4.2.gemfile.lock ├── rails_5.gemfile └── rails_5.gemfile.lock ├── lib ├── assets │ ├── javascripts │ │ ├── unobtrusive_flash.js │ │ ├── unobtrusive_flash_bootstrap.js │ │ └── unobtrusive_flash_ui.js │ └── stylesheets │ │ └── unobtrusive_flash_ui.css ├── unobtrusive_flash.rb └── unobtrusive_flash │ ├── controller_mixin.rb │ ├── engine.rb │ └── version.rb ├── spec ├── domain_spec.rb ├── integration │ ├── api_spec.rb │ ├── bootstrap_spec.rb │ ├── turbolinks_spec.rb │ └── ui_spec.rb ├── sanitize_flash_spec.rb ├── spec_helper.rb └── support │ ├── assets │ └── javascripts │ │ ├── ajax_caller.js │ │ ├── api.js │ │ ├── bootstrap.js │ │ ├── jquery_turbolinks_application.js │ │ ├── turbolinks_application.js │ │ └── ui.js │ ├── rails_app.rb │ └── views │ └── test │ ├── api.html.erb │ ├── bootstrap.html.erb │ ├── jquery_turbolinks.html.erb │ ├── turbolinks.html.erb │ ├── turbolinks_target.html.erb │ └── ui.html.erb └── unobtrusive_flash.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/rails_3.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_3.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_3.2.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_3.2.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_4.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_4.0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_4.0.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_4.0.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_4.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_4.1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_4.1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_4.1.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_4.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_4.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_4.2.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_4.2.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_5.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_5.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_5.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/gemfiles/rails_5.gemfile.lock -------------------------------------------------------------------------------- /lib/assets/javascripts/unobtrusive_flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/assets/javascripts/unobtrusive_flash.js -------------------------------------------------------------------------------- /lib/assets/javascripts/unobtrusive_flash_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/assets/javascripts/unobtrusive_flash_bootstrap.js -------------------------------------------------------------------------------- /lib/assets/javascripts/unobtrusive_flash_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/assets/javascripts/unobtrusive_flash_ui.js -------------------------------------------------------------------------------- /lib/assets/stylesheets/unobtrusive_flash_ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/assets/stylesheets/unobtrusive_flash_ui.css -------------------------------------------------------------------------------- /lib/unobtrusive_flash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/unobtrusive_flash.rb -------------------------------------------------------------------------------- /lib/unobtrusive_flash/controller_mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/unobtrusive_flash/controller_mixin.rb -------------------------------------------------------------------------------- /lib/unobtrusive_flash/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/lib/unobtrusive_flash/engine.rb -------------------------------------------------------------------------------- /lib/unobtrusive_flash/version.rb: -------------------------------------------------------------------------------- 1 | module UnobtrusiveFlash 2 | VERSION = "3.3.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/domain_spec.rb -------------------------------------------------------------------------------- /spec/integration/api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/integration/api_spec.rb -------------------------------------------------------------------------------- /spec/integration/bootstrap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/integration/bootstrap_spec.rb -------------------------------------------------------------------------------- /spec/integration/turbolinks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/integration/turbolinks_spec.rb -------------------------------------------------------------------------------- /spec/integration/ui_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/integration/ui_spec.rb -------------------------------------------------------------------------------- /spec/sanitize_flash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/sanitize_flash_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/assets/javascripts/ajax_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/assets/javascripts/ajax_caller.js -------------------------------------------------------------------------------- /spec/support/assets/javascripts/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/assets/javascripts/api.js -------------------------------------------------------------------------------- /spec/support/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /spec/support/assets/javascripts/jquery_turbolinks_application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/assets/javascripts/jquery_turbolinks_application.js -------------------------------------------------------------------------------- /spec/support/assets/javascripts/turbolinks_application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/assets/javascripts/turbolinks_application.js -------------------------------------------------------------------------------- /spec/support/assets/javascripts/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/assets/javascripts/ui.js -------------------------------------------------------------------------------- /spec/support/rails_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/rails_app.rb -------------------------------------------------------------------------------- /spec/support/views/test/api.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/views/test/api.html.erb -------------------------------------------------------------------------------- /spec/support/views/test/bootstrap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/views/test/bootstrap.html.erb -------------------------------------------------------------------------------- /spec/support/views/test/jquery_turbolinks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/views/test/jquery_turbolinks.html.erb -------------------------------------------------------------------------------- /spec/support/views/test/turbolinks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/views/test/turbolinks.html.erb -------------------------------------------------------------------------------- /spec/support/views/test/turbolinks_target.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/views/test/turbolinks_target.html.erb -------------------------------------------------------------------------------- /spec/support/views/test/ui.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/spec/support/views/test/ui.html.erb -------------------------------------------------------------------------------- /unobtrusive_flash.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonid-shevtsov/unobtrusive_flash/HEAD/unobtrusive_flash.gemspec --------------------------------------------------------------------------------