├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── issue_template.md ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── publish_gem.yml ├── .gitignore ├── .standard.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── UPGRADE.md ├── app ├── jobs │ ├── .keep │ └── noticed │ │ ├── application_job.rb │ │ └── event_job.rb └── models │ ├── .keep │ ├── concerns │ ├── .keep │ └── noticed │ │ ├── deliverable.rb │ │ ├── notification_methods.rb │ │ └── readable.rb │ └── noticed │ ├── application_record.rb │ ├── deliverable │ └── deliver_by.rb │ ├── ephemeral.rb │ ├── event.rb │ └── notification.rb ├── bin ├── rails └── test ├── db └── migrate │ ├── 20231215190233_create_noticed_tables.rb │ └── 20240129184740_add_notifications_count_to_noticed_event.rb ├── docs ├── bulk_delivery_methods │ ├── bluesky.md │ ├── discord.md │ ├── slack.md │ └── webhook.md ├── delivery_methods │ ├── action_cable.md │ ├── action_push_native.md │ ├── discord.md │ ├── email.md │ ├── fcm.md │ ├── ios.md │ ├── microsoft_teams.md │ ├── slack.md │ ├── test.md │ ├── twilio_messaging.md │ ├── vonage.md │ └── vonage_sms.md ├── extending-noticed.md └── images │ ├── fcm-credentials-json.png │ └── fcm-project-settings.png ├── gemfiles ├── rails_6_1.gemfile ├── rails_6_1.gemfile.lock ├── rails_7_0.gemfile ├── rails_7_0.gemfile.lock ├── rails_7_1.gemfile ├── rails_7_1.gemfile.lock ├── rails_7_2.gemfile ├── rails_7_2.gemfile.lock ├── rails_8_0.gemfile ├── rails_8_0.gemfile.lock ├── rails_8_1.gemfile ├── rails_8_1.gemfile.lock ├── rails_main.gemfile └── rails_main.gemfile.lock ├── lib ├── generators │ └── noticed │ │ ├── delivery_method_generator.rb │ │ ├── install_generator.rb │ │ ├── notifier_generator.rb │ │ └── templates │ │ ├── README │ │ ├── application_bulk_delivery_method.rb.tt │ │ ├── application_delivery_method.rb.tt │ │ ├── application_notifier.rb.tt │ │ ├── bulk_delivery_method.rb.tt │ │ ├── delivery_method.rb.tt │ │ └── notifier.rb.tt ├── noticed.rb └── noticed │ ├── api_client.rb │ ├── bulk_delivery_method.rb │ ├── bulk_delivery_methods │ ├── bluesky.rb │ ├── discord.rb │ ├── slack.rb │ ├── test.rb │ └── webhook.rb │ ├── coder.rb │ ├── delivery_method.rb │ ├── delivery_methods │ ├── action_cable.rb │ ├── action_push_native.rb │ ├── discord.rb │ ├── email.rb │ ├── fcm.rb │ ├── ios.rb │ ├── microsoft_teams.rb │ ├── slack.rb │ ├── test.rb │ ├── twilio_messaging.rb │ ├── vonage_sms.rb │ └── webhook.rb │ ├── engine.rb │ ├── has_notifications.rb │ ├── notification_channel.rb │ ├── required_options.rb │ ├── translation.rb │ └── version.rb ├── noticed.gemspec └── test ├── bulk_delivery_methods └── webhook_test.rb ├── delivery_method_test.rb ├── delivery_methods ├── action_cable_test.rb ├── email_test.rb ├── fcm_test.rb ├── ios_test.rb ├── microsoft_teams_test.rb ├── slack_test.rb ├── twilio_messaging_test.rb ├── vonage_sms_test.rb └── webhook_test.rb ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ ├── application_mailer.rb │ │ └── user_mailer.rb │ ├── models │ │ ├── account.rb │ │ ├── admin.rb │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── user.rb │ ├── notifiers │ │ ├── application_delivery_method.rb │ │ ├── application_notifier.rb │ │ ├── bulk_notifier.rb │ │ ├── comment_notifier.rb │ │ ├── deprecated_notifier.rb │ │ ├── ephemeral_notifier.rb │ │ ├── inherited_notifier.rb │ │ ├── priority_notifier.rb │ │ ├── queue_notifier.rb │ │ ├── receipt_notifier.rb │ │ ├── record_notifier.rb │ │ ├── simple_notifier.rb │ │ ├── test_notifier.rb │ │ ├── wait_notifier.rb │ │ └── wait_until_notifier.rb │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── permissions_policy.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── storage.yml ├── db │ ├── migrate │ │ ├── 20231215202921_create_users.rb │ │ └── 20231215202924_create_accounts.rb │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico ├── ephemeral_notifier_test.rb ├── fixtures ├── accounts.yml ├── files │ └── .keep ├── noticed │ ├── events.yml │ └── notifications.yml └── users.yml ├── has_notifications_test.rb ├── jobs └── event_job_test.rb ├── models ├── .keep └── noticed │ ├── deliverable │ └── deliver_by_test.rb │ ├── event_test.rb │ └── notification_test.rb ├── noticed_test.rb ├── notifier_test.rb ├── test_helper.rb └── translation_test.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.github/workflows/publish_gem.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.gitignore -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/.standard.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/Rakefile -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /app/jobs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/jobs/noticed/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/jobs/noticed/application_job.rb -------------------------------------------------------------------------------- /app/jobs/noticed/event_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/jobs/noticed/event_job.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/noticed/deliverable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/concerns/noticed/deliverable.rb -------------------------------------------------------------------------------- /app/models/concerns/noticed/notification_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/concerns/noticed/notification_methods.rb -------------------------------------------------------------------------------- /app/models/concerns/noticed/readable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/concerns/noticed/readable.rb -------------------------------------------------------------------------------- /app/models/noticed/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/noticed/application_record.rb -------------------------------------------------------------------------------- /app/models/noticed/deliverable/deliver_by.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/noticed/deliverable/deliver_by.rb -------------------------------------------------------------------------------- /app/models/noticed/ephemeral.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/noticed/ephemeral.rb -------------------------------------------------------------------------------- /app/models/noticed/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/noticed/event.rb -------------------------------------------------------------------------------- /app/models/noticed/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/app/models/noticed/notification.rb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/bin/test -------------------------------------------------------------------------------- /db/migrate/20231215190233_create_noticed_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/db/migrate/20231215190233_create_noticed_tables.rb -------------------------------------------------------------------------------- /db/migrate/20240129184740_add_notifications_count_to_noticed_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/db/migrate/20240129184740_add_notifications_count_to_noticed_event.rb -------------------------------------------------------------------------------- /docs/bulk_delivery_methods/bluesky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/bulk_delivery_methods/bluesky.md -------------------------------------------------------------------------------- /docs/bulk_delivery_methods/discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/bulk_delivery_methods/discord.md -------------------------------------------------------------------------------- /docs/bulk_delivery_methods/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/bulk_delivery_methods/slack.md -------------------------------------------------------------------------------- /docs/bulk_delivery_methods/webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/bulk_delivery_methods/webhook.md -------------------------------------------------------------------------------- /docs/delivery_methods/action_cable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/action_cable.md -------------------------------------------------------------------------------- /docs/delivery_methods/action_push_native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/action_push_native.md -------------------------------------------------------------------------------- /docs/delivery_methods/discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/discord.md -------------------------------------------------------------------------------- /docs/delivery_methods/email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/email.md -------------------------------------------------------------------------------- /docs/delivery_methods/fcm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/fcm.md -------------------------------------------------------------------------------- /docs/delivery_methods/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/ios.md -------------------------------------------------------------------------------- /docs/delivery_methods/microsoft_teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/microsoft_teams.md -------------------------------------------------------------------------------- /docs/delivery_methods/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/slack.md -------------------------------------------------------------------------------- /docs/delivery_methods/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/test.md -------------------------------------------------------------------------------- /docs/delivery_methods/twilio_messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/twilio_messaging.md -------------------------------------------------------------------------------- /docs/delivery_methods/vonage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/vonage.md -------------------------------------------------------------------------------- /docs/delivery_methods/vonage_sms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/delivery_methods/vonage_sms.md -------------------------------------------------------------------------------- /docs/extending-noticed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/extending-noticed.md -------------------------------------------------------------------------------- /docs/images/fcm-credentials-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/images/fcm-credentials-json.png -------------------------------------------------------------------------------- /docs/images/fcm-project-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/docs/images/fcm-project-settings.png -------------------------------------------------------------------------------- /gemfiles/rails_6_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_6_1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_6_1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_6_1.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_7_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_7_0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7_0.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_7_0.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_7_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_7_1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7_1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_7_1.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_7_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_7_2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7_2.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_7_2.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_8_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_8_0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_8_0.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_8_0.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_8_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_8_1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_8_1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_8_1.gemfile.lock -------------------------------------------------------------------------------- /gemfiles/rails_main.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_main.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_main.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/gemfiles/rails_main.gemfile.lock -------------------------------------------------------------------------------- /lib/generators/noticed/delivery_method_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/delivery_method_generator.rb -------------------------------------------------------------------------------- /lib/generators/noticed/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/noticed/notifier_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/notifier_generator.rb -------------------------------------------------------------------------------- /lib/generators/noticed/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/README -------------------------------------------------------------------------------- /lib/generators/noticed/templates/application_bulk_delivery_method.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/application_bulk_delivery_method.rb.tt -------------------------------------------------------------------------------- /lib/generators/noticed/templates/application_delivery_method.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/application_delivery_method.rb.tt -------------------------------------------------------------------------------- /lib/generators/noticed/templates/application_notifier.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/application_notifier.rb.tt -------------------------------------------------------------------------------- /lib/generators/noticed/templates/bulk_delivery_method.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/bulk_delivery_method.rb.tt -------------------------------------------------------------------------------- /lib/generators/noticed/templates/delivery_method.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/delivery_method.rb.tt -------------------------------------------------------------------------------- /lib/generators/noticed/templates/notifier.rb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/generators/noticed/templates/notifier.rb.tt -------------------------------------------------------------------------------- /lib/noticed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed.rb -------------------------------------------------------------------------------- /lib/noticed/api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/api_client.rb -------------------------------------------------------------------------------- /lib/noticed/bulk_delivery_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/bulk_delivery_method.rb -------------------------------------------------------------------------------- /lib/noticed/bulk_delivery_methods/bluesky.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/bulk_delivery_methods/bluesky.rb -------------------------------------------------------------------------------- /lib/noticed/bulk_delivery_methods/discord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/bulk_delivery_methods/discord.rb -------------------------------------------------------------------------------- /lib/noticed/bulk_delivery_methods/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/bulk_delivery_methods/slack.rb -------------------------------------------------------------------------------- /lib/noticed/bulk_delivery_methods/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/bulk_delivery_methods/test.rb -------------------------------------------------------------------------------- /lib/noticed/bulk_delivery_methods/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/bulk_delivery_methods/webhook.rb -------------------------------------------------------------------------------- /lib/noticed/coder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/coder.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_method.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/action_cable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/action_cable.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/action_push_native.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/action_push_native.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/discord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/discord.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/email.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/fcm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/fcm.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/ios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/ios.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/microsoft_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/microsoft_teams.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/slack.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/test.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/twilio_messaging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/twilio_messaging.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/vonage_sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/vonage_sms.rb -------------------------------------------------------------------------------- /lib/noticed/delivery_methods/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/delivery_methods/webhook.rb -------------------------------------------------------------------------------- /lib/noticed/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/engine.rb -------------------------------------------------------------------------------- /lib/noticed/has_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/has_notifications.rb -------------------------------------------------------------------------------- /lib/noticed/notification_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/notification_channel.rb -------------------------------------------------------------------------------- /lib/noticed/required_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/required_options.rb -------------------------------------------------------------------------------- /lib/noticed/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/lib/noticed/translation.rb -------------------------------------------------------------------------------- /lib/noticed/version.rb: -------------------------------------------------------------------------------- 1 | module Noticed 2 | VERSION = "2.9.3" 3 | end 4 | -------------------------------------------------------------------------------- /noticed.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/noticed.gemspec -------------------------------------------------------------------------------- /test/bulk_delivery_methods/webhook_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/bulk_delivery_methods/webhook_test.rb -------------------------------------------------------------------------------- /test/delivery_method_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_method_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/action_cable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/action_cable_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/email_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/email_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/fcm_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/fcm_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/ios_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/ios_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/microsoft_teams_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/microsoft_teams_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/slack_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/slack_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/twilio_messaging_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/twilio_messaging_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/vonage_sms_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/vonage_sms_test.rb -------------------------------------------------------------------------------- /test/delivery_methods/webhook_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/delivery_methods/webhook_test.rb -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/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/excid3/noticed/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/models/account.rb -------------------------------------------------------------------------------- /test/dummy/app/models/admin.rb: -------------------------------------------------------------------------------- 1 | class Admin < User 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/models/user.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/application_delivery_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/application_delivery_method.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/application_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/application_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/bulk_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/bulk_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/comment_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/comment_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/deprecated_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/deprecated_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/ephemeral_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/ephemeral_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/inherited_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/inherited_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/priority_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/priority_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/queue_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/queue_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/receipt_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/receipt_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/record_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/record_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/simple_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/simple_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/test_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/test_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/wait_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/wait_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/notifiers/wait_until_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/notifiers/wait_until_notifier.rb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20231215202921_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/db/migrate/20231215202921_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20231215202924_create_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/db/migrate/20231215202924_create_accounts.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ephemeral_notifier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/ephemeral_notifier_test.rb -------------------------------------------------------------------------------- /test/fixtures/accounts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/fixtures/accounts.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/noticed/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/fixtures/noticed/events.yml -------------------------------------------------------------------------------- /test/fixtures/noticed/notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/fixtures/noticed/notifications.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/has_notifications_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/has_notifications_test.rb -------------------------------------------------------------------------------- /test/jobs/event_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/jobs/event_job_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/noticed/deliverable/deliver_by_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/models/noticed/deliverable/deliver_by_test.rb -------------------------------------------------------------------------------- /test/models/noticed/event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/models/noticed/event_test.rb -------------------------------------------------------------------------------- /test/models/noticed/notification_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/models/noticed/notification_test.rb -------------------------------------------------------------------------------- /test/noticed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/noticed_test.rb -------------------------------------------------------------------------------- /test/notifier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/notifier_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/translation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excid3/noticed/HEAD/test/translation_test.rb --------------------------------------------------------------------------------