├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── _art ├── awesome.svg ├── demo.gif ├── logo.png ├── logo.psd └── screen.png ├── app ├── app_delegate.rb ├── controllers │ └── main_controller.rb ├── models │ └── .gitignore ├── shared │ └── .gitignore ├── stylesheets │ ├── application_stylesheet.rb │ └── main_stylesheet.rb └── views │ └── .gitignore ├── lib ├── RedAlert.rb ├── project │ ├── action_sheet_provider.rb │ ├── alert_action.rb │ ├── alert_constants.rb │ ├── alert_controller_provider.rb │ ├── alert_field.rb │ ├── alert_view_provider.rb │ ├── button_templates.rb │ ├── field_templates.rb │ ├── ios9_fix_uialertcontroller.rb │ ├── red_alert.rb │ └── version.rb └── red_alert.rb ├── red_alert.gemspec ├── resources ├── Default-568h@2x.png ├── English.lproj │ └── Localizable.strings ├── French.lproj │ └── Localizable.strings ├── German.lproj │ └── Localizable.strings ├── Italian.lproj │ └── Localizable.strings └── Spanish.lproj │ └── Localizable.strings └── spec ├── action_sheet_provider_spec.rb ├── alert_action_spec.rb ├── alert_controller_provider_spec.rb ├── alert_field_spec.rb ├── alert_view_provider_spec.rb ├── button_template_spec.rb ├── custom_fieldset_spec.rb ├── field_template_spec.rb ├── i18n_spec.rb ├── main_spec.rb ├── map_buttons_spec.rb └── red_alert_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/Rakefile -------------------------------------------------------------------------------- /_art/awesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/_art/awesome.svg -------------------------------------------------------------------------------- /_art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/_art/demo.gif -------------------------------------------------------------------------------- /_art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/_art/logo.png -------------------------------------------------------------------------------- /_art/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/_art/logo.psd -------------------------------------------------------------------------------- /_art/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/_art/screen.png -------------------------------------------------------------------------------- /app/app_delegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/app/app_delegate.rb -------------------------------------------------------------------------------- /app/controllers/main_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/app/controllers/main_controller.rb -------------------------------------------------------------------------------- /app/models/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/shared/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/stylesheets/application_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/app/stylesheets/application_stylesheet.rb -------------------------------------------------------------------------------- /app/stylesheets/main_stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/app/stylesheets/main_stylesheet.rb -------------------------------------------------------------------------------- /app/views/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/RedAlert.rb: -------------------------------------------------------------------------------- 1 | require_relative "./red_alert.rb" 2 | -------------------------------------------------------------------------------- /lib/project/action_sheet_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/action_sheet_provider.rb -------------------------------------------------------------------------------- /lib/project/alert_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/alert_action.rb -------------------------------------------------------------------------------- /lib/project/alert_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/alert_constants.rb -------------------------------------------------------------------------------- /lib/project/alert_controller_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/alert_controller_provider.rb -------------------------------------------------------------------------------- /lib/project/alert_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/alert_field.rb -------------------------------------------------------------------------------- /lib/project/alert_view_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/alert_view_provider.rb -------------------------------------------------------------------------------- /lib/project/button_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/button_templates.rb -------------------------------------------------------------------------------- /lib/project/field_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/field_templates.rb -------------------------------------------------------------------------------- /lib/project/ios9_fix_uialertcontroller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/ios9_fix_uialertcontroller.rb -------------------------------------------------------------------------------- /lib/project/red_alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/project/red_alert.rb -------------------------------------------------------------------------------- /lib/project/version.rb: -------------------------------------------------------------------------------- 1 | module RedAlert 2 | VERSION = '1.6.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/red_alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/lib/red_alert.rb -------------------------------------------------------------------------------- /red_alert.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/red_alert.gemspec -------------------------------------------------------------------------------- /resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/resources/Default-568h@2x.png -------------------------------------------------------------------------------- /resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /resources/French.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/resources/French.lproj/Localizable.strings -------------------------------------------------------------------------------- /resources/German.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/resources/German.lproj/Localizable.strings -------------------------------------------------------------------------------- /resources/Italian.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/resources/Italian.lproj/Localizable.strings -------------------------------------------------------------------------------- /resources/Spanish.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/resources/Spanish.lproj/Localizable.strings -------------------------------------------------------------------------------- /spec/action_sheet_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/action_sheet_provider_spec.rb -------------------------------------------------------------------------------- /spec/alert_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/alert_action_spec.rb -------------------------------------------------------------------------------- /spec/alert_controller_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/alert_controller_provider_spec.rb -------------------------------------------------------------------------------- /spec/alert_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/alert_field_spec.rb -------------------------------------------------------------------------------- /spec/alert_view_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/alert_view_provider_spec.rb -------------------------------------------------------------------------------- /spec/button_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/button_template_spec.rb -------------------------------------------------------------------------------- /spec/custom_fieldset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/custom_fieldset_spec.rb -------------------------------------------------------------------------------- /spec/field_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/field_template_spec.rb -------------------------------------------------------------------------------- /spec/i18n_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/i18n_spec.rb -------------------------------------------------------------------------------- /spec/main_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/main_spec.rb -------------------------------------------------------------------------------- /spec/map_buttons_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/map_buttons_spec.rb -------------------------------------------------------------------------------- /spec/red_alert_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GantMan/RedAlert/HEAD/spec/red_alert_spec.rb --------------------------------------------------------------------------------