├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .rspec ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── gemfiles ├── rails_6_1.gemfile ├── rails_7_0.gemfile └── rails_7_1.gemfile ├── lib ├── warning_signs.rb └── warning_signs │ ├── behavior │ ├── base.rb │ ├── ignore.rb │ ├── log.rb │ ├── raise.rb │ ├── stderr.rb │ └── stdout.rb │ ├── caller_helper.rb │ ├── deprecation.rb │ ├── environment.rb │ ├── handler.rb │ ├── message_formatter │ ├── base.rb │ ├── hash.rb │ ├── json.rb │ ├── text.rb │ └── yaml.rb │ ├── message_formatter_list.rb │ ├── only_except.rb │ ├── pattern.rb │ ├── rails_deprecation_catcher.rb │ ├── railtie.rb │ ├── regex_pattern.rb │ ├── ruby_category_matcher.rb │ ├── ruby_deprecation_catcher.rb │ ├── string_pattern.rb │ ├── unhandled_deprecation_error.rb │ ├── version.rb │ └── world.rb ├── spec ├── end_to_end │ ├── different_filter_behaviors_spec.rb │ ├── environments_spec.rb │ ├── except_spec.rb │ ├── log_in_hash_format_spec.rb │ ├── log_spec.rb │ ├── log_with_backtrace_spec.rb │ ├── multiple_environment_behaviors_spec.rb │ ├── multiple_formatters_by_env_spec.rb │ ├── multiple_formatters_spec.rb │ ├── multiple_top_behaviors_spec.rb │ ├── only_spec.rb │ ├── only_with_regular_expressions_spec.rb │ ├── other_spec.rb │ ├── raise_spec.rb │ ├── raise_with_backtrace_spec.rb │ ├── readme.md │ ├── ruby_warnings_except_spec.rb │ ├── ruby_warnings_only_spec.rb │ ├── simple_spec.rb │ ├── source_spec.rb │ ├── stderr_spec.rb │ ├── stderr_with_backtrace_spec.rb │ └── stdout_spec.rb ├── fixtures │ ├── different_filter_behaviors.yml │ ├── environments.yml │ ├── except.yml │ ├── log.yml │ ├── log_in_hash_format.yml │ ├── log_with_backtrace.yml │ ├── multiple_environment_behaviors.yml │ ├── multiple_formatters.yml │ ├── multiple_formatters_by_env.yml │ ├── multiple_top_behaviors.yml │ ├── only.yml │ ├── only_with_regular_expressions.yml │ ├── other.yml │ ├── raise.yml │ ├── raise_with_backtrace.yml │ ├── ruby_warnings_except.yml │ ├── ruby_warnings_only.yml │ ├── simple.yml │ ├── source.yml │ ├── stderr.yml │ ├── stderr_with_backtrace.yml │ └── stdout.yml ├── spec_helper.rb ├── support │ ├── logger.rb │ ├── rails_stub_application.rb │ └── redirect_output.rb ├── warning_signs │ ├── caller_helper_spec.rb │ ├── deprecation_spec.rb │ ├── handler_spec.rb │ ├── message_formatter │ │ ├── hash_spec.rb │ │ ├── json_spec.rb │ │ ├── text_spec.rb │ │ └── yaml_spec.rb │ ├── ruby_category_matcher_spec.rb │ ├── unhandled_deprecation_error_spec.rb │ └── world_spec.rb └── warning_signs_spec.rb └── warning_signs.gemspec /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/rails_6_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/gemfiles/rails_6_1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/gemfiles/rails_7_0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/gemfiles/rails_7_1.gemfile -------------------------------------------------------------------------------- /lib/warning_signs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs.rb -------------------------------------------------------------------------------- /lib/warning_signs/behavior/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/behavior/base.rb -------------------------------------------------------------------------------- /lib/warning_signs/behavior/ignore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/behavior/ignore.rb -------------------------------------------------------------------------------- /lib/warning_signs/behavior/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/behavior/log.rb -------------------------------------------------------------------------------- /lib/warning_signs/behavior/raise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/behavior/raise.rb -------------------------------------------------------------------------------- /lib/warning_signs/behavior/stderr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/behavior/stderr.rb -------------------------------------------------------------------------------- /lib/warning_signs/behavior/stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/behavior/stdout.rb -------------------------------------------------------------------------------- /lib/warning_signs/caller_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/caller_helper.rb -------------------------------------------------------------------------------- /lib/warning_signs/deprecation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/deprecation.rb -------------------------------------------------------------------------------- /lib/warning_signs/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/environment.rb -------------------------------------------------------------------------------- /lib/warning_signs/handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/handler.rb -------------------------------------------------------------------------------- /lib/warning_signs/message_formatter/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/message_formatter/base.rb -------------------------------------------------------------------------------- /lib/warning_signs/message_formatter/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/message_formatter/hash.rb -------------------------------------------------------------------------------- /lib/warning_signs/message_formatter/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/message_formatter/json.rb -------------------------------------------------------------------------------- /lib/warning_signs/message_formatter/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/message_formatter/text.rb -------------------------------------------------------------------------------- /lib/warning_signs/message_formatter/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/message_formatter/yaml.rb -------------------------------------------------------------------------------- /lib/warning_signs/message_formatter_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/message_formatter_list.rb -------------------------------------------------------------------------------- /lib/warning_signs/only_except.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/only_except.rb -------------------------------------------------------------------------------- /lib/warning_signs/pattern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/pattern.rb -------------------------------------------------------------------------------- /lib/warning_signs/rails_deprecation_catcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/rails_deprecation_catcher.rb -------------------------------------------------------------------------------- /lib/warning_signs/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/railtie.rb -------------------------------------------------------------------------------- /lib/warning_signs/regex_pattern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/regex_pattern.rb -------------------------------------------------------------------------------- /lib/warning_signs/ruby_category_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/ruby_category_matcher.rb -------------------------------------------------------------------------------- /lib/warning_signs/ruby_deprecation_catcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/ruby_deprecation_catcher.rb -------------------------------------------------------------------------------- /lib/warning_signs/string_pattern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/string_pattern.rb -------------------------------------------------------------------------------- /lib/warning_signs/unhandled_deprecation_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/unhandled_deprecation_error.rb -------------------------------------------------------------------------------- /lib/warning_signs/version.rb: -------------------------------------------------------------------------------- 1 | module WarningSigns 2 | VERSION = "0.7.2" 3 | end 4 | -------------------------------------------------------------------------------- /lib/warning_signs/world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/lib/warning_signs/world.rb -------------------------------------------------------------------------------- /spec/end_to_end/different_filter_behaviors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/different_filter_behaviors_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/environments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/environments_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/except_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/except_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/log_in_hash_format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/log_in_hash_format_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/log_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/log_with_backtrace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/log_with_backtrace_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/multiple_environment_behaviors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/multiple_environment_behaviors_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/multiple_formatters_by_env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/multiple_formatters_by_env_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/multiple_formatters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/multiple_formatters_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/multiple_top_behaviors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/multiple_top_behaviors_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/only_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/only_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/only_with_regular_expressions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/only_with_regular_expressions_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/other_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/other_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/raise_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/raise_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/raise_with_backtrace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/raise_with_backtrace_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/readme.md -------------------------------------------------------------------------------- /spec/end_to_end/ruby_warnings_except_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/ruby_warnings_except_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/ruby_warnings_only_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/ruby_warnings_only_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/simple_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/simple_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/source_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/stderr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/stderr_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/stderr_with_backtrace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/stderr_with_backtrace_spec.rb -------------------------------------------------------------------------------- /spec/end_to_end/stdout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/end_to_end/stdout_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/different_filter_behaviors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/different_filter_behaviors.yml -------------------------------------------------------------------------------- /spec/fixtures/environments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/environments.yml -------------------------------------------------------------------------------- /spec/fixtures/except.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/except.yml -------------------------------------------------------------------------------- /spec/fixtures/log.yml: -------------------------------------------------------------------------------- 1 | handlers: 2 | - environment: all 3 | behavior: log 4 | -------------------------------------------------------------------------------- /spec/fixtures/log_in_hash_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/log_in_hash_format.yml -------------------------------------------------------------------------------- /spec/fixtures/log_with_backtrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/log_with_backtrace.yml -------------------------------------------------------------------------------- /spec/fixtures/multiple_environment_behaviors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/multiple_environment_behaviors.yml -------------------------------------------------------------------------------- /spec/fixtures/multiple_formatters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/multiple_formatters.yml -------------------------------------------------------------------------------- /spec/fixtures/multiple_formatters_by_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/multiple_formatters_by_env.yml -------------------------------------------------------------------------------- /spec/fixtures/multiple_top_behaviors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/multiple_top_behaviors.yml -------------------------------------------------------------------------------- /spec/fixtures/only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/only.yml -------------------------------------------------------------------------------- /spec/fixtures/only_with_regular_expressions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/only_with_regular_expressions.yml -------------------------------------------------------------------------------- /spec/fixtures/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/other.yml -------------------------------------------------------------------------------- /spec/fixtures/raise.yml: -------------------------------------------------------------------------------- 1 | handlers: 2 | - environment: all 3 | behavior: raise 4 | -------------------------------------------------------------------------------- /spec/fixtures/raise_with_backtrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/raise_with_backtrace.yml -------------------------------------------------------------------------------- /spec/fixtures/ruby_warnings_except.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/ruby_warnings_except.yml -------------------------------------------------------------------------------- /spec/fixtures/ruby_warnings_only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/ruby_warnings_only.yml -------------------------------------------------------------------------------- /spec/fixtures/simple.yml: -------------------------------------------------------------------------------- 1 | handlers: 2 | - environment: all 3 | behavior: ignore 4 | -------------------------------------------------------------------------------- /spec/fixtures/source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/source.yml -------------------------------------------------------------------------------- /spec/fixtures/stderr.yml: -------------------------------------------------------------------------------- 1 | handlers: 2 | - environment: all 3 | behavior: stderr 4 | -------------------------------------------------------------------------------- /spec/fixtures/stderr_with_backtrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/fixtures/stderr_with_backtrace.yml -------------------------------------------------------------------------------- /spec/fixtures/stdout.yml: -------------------------------------------------------------------------------- 1 | handlers: 2 | - environment: all 3 | behavior: stdout 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/support/logger.rb -------------------------------------------------------------------------------- /spec/support/rails_stub_application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/support/rails_stub_application.rb -------------------------------------------------------------------------------- /spec/support/redirect_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/support/redirect_output.rb -------------------------------------------------------------------------------- /spec/warning_signs/caller_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/caller_helper_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/deprecation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/deprecation_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/handler_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/message_formatter/hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/message_formatter/hash_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/message_formatter/json_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/message_formatter/json_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/message_formatter/text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/message_formatter/text_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/message_formatter/yaml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/message_formatter/yaml_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/ruby_category_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/ruby_category_matcher_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/unhandled_deprecation_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/unhandled_deprecation_error_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs/world_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs/world_spec.rb -------------------------------------------------------------------------------- /spec/warning_signs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/spec/warning_signs_spec.rb -------------------------------------------------------------------------------- /warning_signs.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrappin/warning_signs/HEAD/warning_signs.gemspec --------------------------------------------------------------------------------