defra_ruby_email 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/lib/defra_ruby_email/version.rb +1 -1
  3. metadata +14 -177
  4. data/spec/defra_ruby_email_spec.rb +0 -39
  5. data/spec/dummy/README.rdoc +0 -28
  6. data/spec/dummy/Rakefile +0 -6
  7. data/spec/dummy/app/assets/javascripts/application.js +0 -13
  8. data/spec/dummy/app/assets/stylesheets/application.css +0 -15
  9. data/spec/dummy/app/controllers/application_controller.rb +0 -5
  10. data/spec/dummy/app/helpers/application_helper.rb +0 -2
  11. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  12. data/spec/dummy/bin/bundle +0 -3
  13. data/spec/dummy/bin/rails +0 -4
  14. data/spec/dummy/bin/rake +0 -4
  15. data/spec/dummy/bin/setup +0 -29
  16. data/spec/dummy/config/application.rb +0 -29
  17. data/spec/dummy/config/boot.rb +0 -5
  18. data/spec/dummy/config/environment.rb +0 -5
  19. data/spec/dummy/config/environments/development.rb +0 -38
  20. data/spec/dummy/config/environments/production.rb +0 -76
  21. data/spec/dummy/config/environments/test.rb +0 -42
  22. data/spec/dummy/config/initializers/assets.rb +0 -11
  23. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  24. data/spec/dummy/config/initializers/cookies_serializer.rb +0 -3
  25. data/spec/dummy/config/initializers/defra_ruby_email.rb +0 -5
  26. data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  27. data/spec/dummy/config/initializers/inflections.rb +0 -16
  28. data/spec/dummy/config/initializers/mime_types.rb +0 -4
  29. data/spec/dummy/config/initializers/session_store.rb +0 -3
  30. data/spec/dummy/config/initializers/to_time_preserves_timezone.rb +0 -10
  31. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -9
  32. data/spec/dummy/config/locales/en.yml +0 -23
  33. data/spec/dummy/config/routes.rb +0 -4
  34. data/spec/dummy/config/secrets.yml +0 -22
  35. data/spec/dummy/config.ru +0 -4
  36. data/spec/dummy/log/test.log +0 -13969
  37. data/spec/dummy/public/404.html +0 -67
  38. data/spec/dummy/public/422.html +0 -67
  39. data/spec/dummy/public/500.html +0 -66
  40. data/spec/dummy/public/favicon.ico +0 -0
  41. data/spec/examples.txt +0 -38
  42. data/spec/lib/last_email_cache_spec.rb +0 -221
  43. data/spec/lib/last_notify_message_spec.rb +0 -85
  44. data/spec/rails_helper.rb +0 -46
  45. data/spec/requests/last_email_spec.rb +0 -34
  46. data/spec/requests/last_notify_message_spec.rb +0 -82
  47. data/spec/spec_helper.rb +0 -83
  48. data/spec/support/helpers/configuration.rb +0 -16
  49. data/spec/support/pry.rb +0 -7
  50. data/spec/support/simplecov.rb +0 -17
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
- # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
-
6
- # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
- # Rails.backtrace_cleaner.remove_silencers!
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- DefraRubyEmail.configure do |configuration|
4
- configuration.notify_api_key = "test"
5
- end
@@ -1,4 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Configure sensitive parameters which will be filtered from the log file.
4
- Rails.application.config.filter_parameters += [:password]
@@ -1,16 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new inflection rules using the following format. Inflections
4
- # are locale specific, and you may define rules for as many different
5
- # locales as you wish. All of these examples are active by default:
6
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
- # inflect.plural /^(ox)$/i, '\1en'
8
- # inflect.singular /^(ox)en/i, '\1'
9
- # inflect.irregular 'person', 'people'
10
- # inflect.uncountable %w( fish sheep )
11
- # end
12
-
13
- # These inflection rules are supported but not enabled by default:
14
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
- # inflect.acronym 'RESTful'
16
- # end
@@ -1,4 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new mime types for use in respond_to blocks:
4
- # Mime::Type.register "text/richtext", :rtf
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,10 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Preserve the timezone of the receiver when calling to `to_time`.
4
- # Ruby 2.4 will change the behavior of `to_time` to preserve the timezone
5
- # when converting to an instance of `Time` instead of the previous behavior
6
- # of converting to the local system timezone.
7
- #
8
- # Rails 5.0 introduced this config option so that apps made with earlier
9
- # versions of Rails are not affected when upgrading.
10
- ActiveSupport.to_time_preserves_timezone = true
@@ -1,9 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # This file contains settings for ActionController::ParamsWrapper which
4
- # is enabled by default.
5
-
6
- # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
- ActiveSupport.on_load(:action_controller) do
8
- wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
- end
@@ -1,23 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
- en:
23
- hello: "Hello world"
@@ -1,4 +0,0 @@
1
- Rails.application.routes.draw do
2
-
3
- mount DefraRubyEmail::Engine => "/defra_ruby_email"
4
- end
@@ -1,22 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: e8b6d07aeb45634b7e803ea08c579dde1f535778d3d480ba063c0ae5e6c3cf0bdf3c9db470bfba16fea45b1434bd14de709cd0f11283bedb292d6a66c0eea0b6
15
-
16
- test:
17
- secret_key_base: f8f7ac9a4a93992c1e06278b8e4d251852b0d9b8cfbebfa22fadcadf27d406be95b3d3cdae252690343e31f9dd4126fc8e67e035d8387dfc34c69c6cddc0b96a
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
data/spec/dummy/config.ru DELETED
@@ -1,4 +0,0 @@
1
- # This file is used by Rack-based servers to start the application.
2
-
3
- require ::File.expand_path('../config/environment', __FILE__)
4
- run Rails.application