notification-pusher-actionmailer 1.2.5 → 1.2.6

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: 25146467a290aa8c050f4a1d5293c52bf8a882dfdbf5b32bc0e7d8508f567304
4
- data.tar.gz: 75f3dc70e13d29a80a62f9e9b5096a3e8b9c509f140a3d392ac1dc4b1336f1e3
3
+ metadata.gz: 8712a4c61c9fbc50771a3a8b4b8df266df08a9bc157b8ff8f4417e679a925504
4
+ data.tar.gz: eb81367f4f3f529ef51dc90db4037bd83f57b395c0192281ad788923a41e6e29
5
5
  SHA512:
6
- metadata.gz: d418cbffb0ce8118c34f9b09abc36d260ab61931bf8161f685d5b0f60f45f1e69c42a171c00ec12bca2a5768792c539d9da299ba9583fccd4dd7277a20a1b77d
7
- data.tar.gz: 8a27d143b5f485dac4ee4e8755b526d36ff4154e13ca96823f200948d8703e02df534b14d57156639ef7a93fa330a348a9c7aa4c9d80304826fdc85692e25427
6
+ metadata.gz: 9e7fab7423b084d66edb15968f662ba7bfce4f278632a5a9cbdc2a7f492a7114c39cff9a78e655a4d21b8f170c6d5a0ab3337aed8f02a420104b6610060bc130
7
+ data.tar.gz: cd01d224c4813cb8732ab18648d9960232b19a378ddd1c6d2dc8f6d9f60c40ec8a86c378e960bffa962901590cc582b43db309a4c952384c4b02f0ef925c737a
data/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2017 Jonas Hübotter
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2017 Jonas Hübotter
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,135 +1,135 @@
1
- # NotificationPusher for ActionMailer
2
-
3
- [![Gem Version](https://badge.fury.io/rb/notification-pusher-actionmailer.svg)](https://badge.fury.io/rb/notification-pusher-actionmailer) <img src="https://travis-ci.org/jonhue/notifications-rails.svg?branch=master" />
4
-
5
- A pusher to send your notifications via email utilizing ActionMailer.
6
-
7
- ---
8
-
9
- ## Table of Contents
10
-
11
- * [Installation](#installation)
12
- * [Usage](#usage)
13
- * [Options](#options)
14
- * [To Do](#to-do)
15
- * [Contributing](#contributing)
16
- * [Contributors](#contributors)
17
- * [Semantic versioning](#semantic-versioning)
18
- * [License](#license)
19
-
20
- ---
21
-
22
- ## Installation
23
-
24
- NotificationPusher for ActionMailer works with Rails 5 onwards. You can add it to your `Gemfile` with:
25
-
26
- ```ruby
27
- gem 'notification-pusher-actionmailer'
28
- ```
29
-
30
- And then execute:
31
-
32
- $ bundle
33
-
34
- Or install it yourself as:
35
-
36
- $ gem install notification-pusher-actionmailer
37
-
38
- If you always want to be up to date fetch the latest from GitHub in your `Gemfile`:
39
-
40
- ```ruby
41
- gem 'notification-pusher-actionmailer', github: 'jonhue/notifications-rails'
42
- ```
43
-
44
- ---
45
-
46
- ## Usage
47
-
48
- Define this pusher in your `NotificationPusher` configuration:
49
-
50
- ```ruby
51
- NotificationPusher.configure do |config|
52
- config.define_pusher :ActionMailer
53
- end
54
- ```
55
-
56
- You can pass a `from` parameter, which will override the default email address specified in `ApplicationMailer`:
57
-
58
- ```ruby
59
- NotificationPusher.configure do |config|
60
- config.define_pusher :ActionMailer, from: 'my@email.com'
61
- end
62
- ```
63
-
64
- Then add a renderer called `_actionmailer.html.erb` to every notification type you aim to support. Learn more [here](https://github.com/jonhue/notifications-rails/tree/master/notification-renderer).
65
-
66
- Now you can push your notifications:
67
-
68
- ```ruby
69
- notification = Notification.create target: User.first, object: Recipe.first
70
- notification.push :ActionMailer, to: 'another@email.com'
71
- ```
72
-
73
- **Note:** If the email address, you want to push to, is the same as `notification.target.email` you can omit the `to` parameter.
74
-
75
- It is also possible to override the email address sending this notification, by passing a `from` parameter.
76
-
77
- ### Options
78
-
79
- **`to`** Receiver email address. Takes a string.
80
-
81
- **`from`** Sender email address. Takes a string. Defaults to email specified in `ApplicationMailer`.
82
-
83
- **`renderer`** Specify a renderer. Takes a string. Defaults to `'actionmailer'`.
84
-
85
- **`layout`** Layout used for template rendering. Takes a string. Defaults to layout specified in `ApplicationMailer`.
86
-
87
- ---
88
-
89
- ## To Do
90
-
91
- [Here](https://github.com/jonhue/notifications-rails/projects/6) is the full list of current projects.
92
-
93
- To propose your ideas, initiate the discussion by adding a [new issue](https://github.com/jonhue/notifications-rails/issues/new).
94
-
95
- ---
96
-
97
- ## Contributing
98
-
99
- We hope that you will consider contributing to NotificationPusher for ActionMailer. Please read this short overview for some information about how to get started:
100
-
101
- [Learn more about contributing to this repository](https://github.com/jonhue/notifications-rails/blob/master/CONTRIBUTING.md), [Code of Conduct](https://github.com/jonhue/notifications-rails/blob/master/CODE_OF_CONDUCT.md)
102
-
103
- ### Contributors
104
-
105
- Give the people some :heart: who are working on this project. See them all at:
106
-
107
- https://github.com/jonhue/notifications-rails/graphs/contributors
108
-
109
- ### Semantic Versioning
110
-
111
- NotificationPusher for ActionMailer follows Semantic Versioning 2.0 as defined at http://semver.org.
112
-
113
- ## License
114
-
115
- MIT License
116
-
117
- Copyright (c) 2017 Jonas Hübotter
118
-
119
- Permission is hereby granted, free of charge, to any person obtaining a copy
120
- of this software and associated documentation files (the "Software"), to deal
121
- in the Software without restriction, including without limitation the rights
122
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
123
- copies of the Software, and to permit persons to whom the Software is
124
- furnished to do so, subject to the following conditions:
125
-
126
- The above copyright notice and this permission notice shall be included in all
127
- copies or substantial portions of the Software.
128
-
129
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
130
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
131
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
132
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
133
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
134
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
135
- SOFTWARE.
1
+ # NotificationPusher for ActionMailer
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/notification-pusher-actionmailer.svg)](https://badge.fury.io/rb/notification-pusher-actionmailer) <img src="https://travis-ci.org/jonhue/notifications-rails.svg?branch=master" />
4
+
5
+ A pusher to send your notifications via email utilizing ActionMailer.
6
+
7
+ ---
8
+
9
+ ## Table of Contents
10
+
11
+ * [Installation](#installation)
12
+ * [Usage](#usage)
13
+ * [Options](#options)
14
+ * [To Do](#to-do)
15
+ * [Contributing](#contributing)
16
+ * [Contributors](#contributors)
17
+ * [Semantic versioning](#semantic-versioning)
18
+ * [License](#license)
19
+
20
+ ---
21
+
22
+ ## Installation
23
+
24
+ NotificationPusher for ActionMailer works with Rails 5 onwards. You can add it to your `Gemfile` with:
25
+
26
+ ```ruby
27
+ gem 'notification-pusher-actionmailer'
28
+ ```
29
+
30
+ And then execute:
31
+
32
+ $ bundle
33
+
34
+ Or install it yourself as:
35
+
36
+ $ gem install notification-pusher-actionmailer
37
+
38
+ If you always want to be up to date fetch the latest from GitHub in your `Gemfile`:
39
+
40
+ ```ruby
41
+ gem 'notification-pusher-actionmailer', github: 'jonhue/notifications-rails'
42
+ ```
43
+
44
+ ---
45
+
46
+ ## Usage
47
+
48
+ Define this pusher in your `NotificationPusher` configuration:
49
+
50
+ ```ruby
51
+ NotificationPusher.configure do |config|
52
+ config.define_pusher :ActionMailer
53
+ end
54
+ ```
55
+
56
+ You can pass a `from` parameter, which will override the default email address specified in `ApplicationMailer`:
57
+
58
+ ```ruby
59
+ NotificationPusher.configure do |config|
60
+ config.define_pusher :ActionMailer, from: 'my@email.com'
61
+ end
62
+ ```
63
+
64
+ Then add a renderer called `_actionmailer.html.erb` to every notification type you aim to support. Learn more [here](https://github.com/jonhue/notifications-rails/tree/master/notification-renderer).
65
+
66
+ Now you can push your notifications:
67
+
68
+ ```ruby
69
+ notification = Notification.create target: User.first, object: Recipe.first
70
+ notification.push :ActionMailer, to: 'another@email.com'
71
+ ```
72
+
73
+ **Note:** If the email address, you want to push to, is the same as `notification.target.email` you can omit the `to` parameter.
74
+
75
+ It is also possible to override the email address sending this notification, by passing a `from` parameter.
76
+
77
+ ### Options
78
+
79
+ **`to`** Receiver email address. Takes a string.
80
+
81
+ **`from`** Sender email address. Takes a string. Defaults to email specified in `ApplicationMailer`.
82
+
83
+ **`renderer`** Specify a renderer. Takes a string. Defaults to `'actionmailer'`.
84
+
85
+ **`layout`** Layout used for template rendering. Takes a string. Defaults to layout specified in `ApplicationMailer`.
86
+
87
+ ---
88
+
89
+ ## To Do
90
+
91
+ [Here](https://github.com/jonhue/notifications-rails/projects/6) is the full list of current projects.
92
+
93
+ To propose your ideas, initiate the discussion by adding a [new issue](https://github.com/jonhue/notifications-rails/issues/new).
94
+
95
+ ---
96
+
97
+ ## Contributing
98
+
99
+ We hope that you will consider contributing to NotificationPusher for ActionMailer. Please read this short overview for some information about how to get started:
100
+
101
+ [Learn more about contributing to this repository](https://github.com/jonhue/notifications-rails/blob/master/CONTRIBUTING.md), [Code of Conduct](https://github.com/jonhue/notifications-rails/blob/master/CODE_OF_CONDUCT.md)
102
+
103
+ ### Contributors
104
+
105
+ Give the people some :heart: who are working on this project. See them all at:
106
+
107
+ https://github.com/jonhue/notifications-rails/graphs/contributors
108
+
109
+ ### Semantic Versioning
110
+
111
+ NotificationPusher for ActionMailer follows Semantic Versioning 2.0 as defined at http://semver.org.
112
+
113
+ ## License
114
+
115
+ MIT License
116
+
117
+ Copyright (c) 2017 Jonas Hübotter
118
+
119
+ Permission is hereby granted, free of charge, to any person obtaining a copy
120
+ of this software and associated documentation files (the "Software"), to deal
121
+ in the Software without restriction, including without limitation the rights
122
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
123
+ copies of the Software, and to permit persons to whom the Software is
124
+ furnished to do so, subject to the following conditions:
125
+
126
+ The above copyright notice and this permission notice shall be included in all
127
+ copies or substantial portions of the Software.
128
+
129
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
130
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
131
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
132
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
133
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
134
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
135
+ SOFTWARE.
@@ -1,10 +1,15 @@
1
- class NotificationPusher::ActionMailer::NotificationMailer < ApplicationMailer
2
-
3
- def push notification, options = {}
4
- render(layout: options[:layout]) if options.has_key?(:layout)
5
- @notification = notification
6
- @renderer = options[:renderer] || 'actionmailer'
7
- mail to: options[:to] || notification.target.email, from: options[:from]
8
- end
9
-
10
- end
1
+ # frozen_string_literal: true
2
+
3
+ module NotificationPusher
4
+ class ActionMailer
5
+ class NotificationMailer < ApplicationMailer
6
+ def push(notification,
7
+ from:, to: nil, renderer: 'actionmailer', layout: nil)
8
+ render(layout: layout) unless layout.nil?
9
+ @notification = notification
10
+ @renderer = renderer
11
+ mail(to: to || notification.target.email, from: from)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -1 +1 @@
1
- <%= render_notification @notification, @renderer %>
1
+ <%= render_notification @notification, @renderer %>
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'notification-pusher'
2
4
  require 'notification_pusher/action_mailer'
@@ -1,11 +1,15 @@
1
- require 'notification-renderer'
1
+ # frozen_string_literal: true
2
2
 
3
- class NotificationPusher::ActionMailer
3
+ require 'notification-renderer'
4
4
 
5
+ module NotificationPusher
6
+ class ActionMailer
5
7
  require 'notification_pusher/action_mailer/engine'
6
8
 
7
- def initialize notification, options = {}
8
- ::NotificationPusher::ActionMailer::NotificationMailer.push notification, options
9
+ def initialize(notification, options = {})
10
+ ::NotificationPusher::ActionMailer::NotificationMailer.push(
11
+ notification, options
12
+ )
9
13
  end
10
-
14
+ end
11
15
  end
@@ -1,9 +1,11 @@
1
- require 'rails/railtie'
2
- require 'action_mailer'
3
-
4
- module NotificationPusher
5
- class ActionMailer
6
- class Engine < ::Rails::Engine
7
- end
8
- end
9
- end
1
+ # frozen_string_literal: true
2
+
3
+ require 'rails/railtie'
4
+ require 'action_mailer'
5
+
6
+ module NotificationPusher
7
+ class ActionMailer
8
+ class Engine < ::Rails::Engine
9
+ end
10
+ end
11
+ end
metadata CHANGED
@@ -1,106 +1,119 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notification-pusher-actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.5
4
+ version: 1.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Hübotter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-25 00:00:00.000000000 Z
11
+ date: 2018-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: railties
14
+ name: actionmailer
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '5.0'
19
+ version: '5.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '5.0'
26
+ version: '5.2'
27
27
  - !ruby/object:Gem::Dependency
28
- name: actionmailer
28
+ name: notification-pusher
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: '5.0'
33
+ version: 1.2.6
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: '5.0'
40
+ version: 1.2.6
41
41
  - !ruby/object:Gem::Dependency
42
- name: notification-pusher
42
+ name: notification-renderer
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 1.2.5
47
+ version: 1.2.6
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.2.5
54
+ version: 1.2.6
55
55
  - !ruby/object:Gem::Dependency
56
- name: notification-renderer
56
+ name: railties
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '='
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.2.5
61
+ version: '5.2'
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.2.5
68
+ version: '5.2'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '3.7'
75
+ version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: '3.7'
82
+ version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubocop
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: '0.52'
89
+ version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - "~>"
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
95
109
  - !ruby/object:Gem::Version
96
- version: '0.52'
110
+ version: '0'
97
111
  description: A pusher to send your notifications via email utilizing ActionMailer.
98
112
  email: me@jonhue.me
99
113
  executables: []
100
114
  extensions: []
101
115
  extra_rdoc_files: []
102
116
  files:
103
- - CHANGELOG.md
104
117
  - LICENSE
105
118
  - README.md
106
119
  - app/mailers/notification_pusher/action_mailer/notification_mailer.rb
@@ -120,7 +133,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
120
133
  requirements:
121
134
  - - ">="
122
135
  - !ruby/object:Gem::Version
123
- version: '2.3'
136
+ version: 2.2.2
124
137
  required_rubygems_version: !ruby/object:Gem::Requirement
125
138
  requirements:
126
139
  - - ">="
@@ -128,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
141
  version: '0'
129
142
  requirements: []
130
143
  rubyforge_project:
131
- rubygems_version: 2.7.4
144
+ rubygems_version: 2.7.6
132
145
  signing_key:
133
146
  specification_version: 4
134
147
  summary: A pusher to send your notifications via email utilizing ActionMailer
data/CHANGELOG.md DELETED
@@ -1,23 +0,0 @@
1
- # Changelog
2
-
3
- ### master
4
-
5
- * nothing yet
6
-
7
- ### 1.0.0 - 2017/12/28
8
-
9
- * bugfixes
10
-
11
- ### 1.0.0.beta6 - 2017/12/28
12
-
13
- * bugfixes
14
- * fix lib loading problems
15
-
16
- ### 1.0.0.beta4 - 2017/12/27
17
-
18
- * features
19
- * add functionality
20
-
21
- ### 1.0.0.beta1 - 2017/12/22
22
-
23
- * initial release