notification-pusher-actionmailer 1.0.0.beta9 → 1.0.0.beta10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 985c51bd0babd7473b0955c55c57d4f7fa8a3d8c033b7ec5a7c8413448b6e6dc
4
- data.tar.gz: dcca7338491ba21cd8eb64b02da9b04adedd99dde9e3a5284760a2aa1b48dc04
3
+ metadata.gz: c7193d4eae4d91b59732c025f7656a84436ca08f032fd205a210c96dd8f615bb
4
+ data.tar.gz: 9e784add8cb55086dcb9fb6f0164affcdd8f1166e42adacf51666a4e050ddcef
5
5
  SHA512:
6
- metadata.gz: 78759e78a60e2662c7bf9c94d60bb96e0f6af16359eae0e14e86e8446e955a6e9a49039b4b606f74cd795e0727313e117d67c0d769a4f783d51253d26cf76e7e
7
- data.tar.gz: 8a2b60e55900ad6c20ab152960b4ba56650be0011066b26e4a799a2833e4e55e06480d95cbb6921b480f902f37d2f7d272b4be49fdf9c32dc93d9f92dd9f9940
6
+ metadata.gz: 6eccbcbdeb6b21c7040ba51f51522d3c3dde379aba53ba2e90f5e7b93159cb72cd9c2121dc81e63af94d39fd518f9eb164db62dfb8501acf68448009fcac6248
7
+ data.tar.gz: 49e591211206d0b75901b78c35883230dc153d39c03a687d383e8b23088c0a22ca4dcd892e2561bdfeabab2fc3440f9d29346aa77d900d2e926224b89f924a7b
@@ -0,0 +1 @@
1
+ require 'notification_pusher/action_mailer'
@@ -1,7 +1,7 @@
1
- require 'railties'
1
+ require 'rails/railtie'
2
2
 
3
3
  module NotificationPusher
4
- module ActionMailer
4
+ class ActionMailer
5
5
  class Engine < ::Rails::Engine
6
6
  end
7
7
  end
@@ -1,11 +1,9 @@
1
- module NotificationPusher
2
- class ActionMailer
1
+ class NotificationPusher::ActionMailer
3
2
 
4
- require 'action_mailer'
5
-
6
- def initialize notification, options = {}
7
- NotificationPusherActionmailerMailer.push notification, options
8
- end
3
+ require 'notification_pusher/action_mailer/engine'
9
4
 
5
+ def initialize notification, options = {}
6
+ NotificationPusherActionmailerMailer.push notification, options
10
7
  end
8
+
11
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notification-pusher-actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta9
4
+ version: 1.0.0.beta10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 1.0.0.beta9
47
+ version: 1.0.0.beta10
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 1.0.0.beta9
54
+ version: 1.0.0.beta10
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: notification-renderer
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 1.0.0.beta9
61
+ version: 1.0.0.beta10
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 1.0.0.beta9
68
+ version: 1.0.0.beta10
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -103,7 +103,7 @@ files:
103
103
  - CHANGELOG.md
104
104
  - LICENSE
105
105
  - README.md
106
- - lib/notification-pusher.rb
106
+ - lib/notification-pusher-actionmailer.rb
107
107
  - lib/notification_pusher/action_mailer.rb
108
108
  - lib/notification_pusher/action_mailer/engine.rb
109
109
  homepage: https://github.com/jonhue/notifications-rails/tree/master/notification-pusher/notification-pusher-actionmailer
@@ -1,5 +0,0 @@
1
- module NotificationPusher
2
-
3
- require 'notification_pusher/action_mailer'
4
-
5
- end