smtpapi 0.1.5 → 0.1.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: 9ffd2d43fd3ac65eaf3907885578d80fa88a7336cf32a1d4ae13d235be01a5b8
4
- data.tar.gz: 077d3581f8534fecc641aabff3f03680422255e8dd89ed7e7e44040e905070c2
3
+ metadata.gz: af640577636ac62deb6984eb06d9eb7839c5277dcd8313500034403e61740797
4
+ data.tar.gz: 39947511c7fcc7ebd71226a43308f19c36afde3e111042ff29bcbf060e71c2b4
5
5
  SHA512:
6
- metadata.gz: ea6f7df2c4ea4082b6d3249413b404d2dc8a94582c5e7c6d0427f35f7117ddaa8027217670b7d196140cfe8ad905363f6a1986a946decebcd8fa67421039f349
7
- data.tar.gz: b10e8d4b76194f0cc38ff91f70cc323984a7b1f196561817a3b5f50e4779d302d659766fca4a136864b84dfc9f8aa7bf9292608359e6a11390b43dae1a865677
6
+ metadata.gz: 806488937861caee70a5d8f3b5aa7da3716f43a9daf44677c60f574e83daa124837238cbb0dcf838d83a4a201705301e77db7a90f3e190b301270a792a075a24
7
+ data.tar.gz: 2c6c7ef3634c8ac3b5cda1bc24915864bb48fa803dd7c1abfc1ff02bf0fb90a453dffdb23469f26d8fa25b8c43abd49f6765ad1a0fa8d2a64eccce292ce06194
@@ -5,7 +5,7 @@ rvm:
5
5
  - 2.6
6
6
  - 2.5
7
7
  - 2.4
8
- - jruby
8
+ - jruby-9.2
9
9
  before_script:
10
10
  - bundle install
11
11
  script:
@@ -24,3 +24,12 @@ deploy:
24
24
  tags: true
25
25
  rvm: '2.4'
26
26
  skip_cleanup: true
27
+
28
+ notifications:
29
+ slack:
30
+ if: branch = master
31
+ on_pull_requests: false
32
+ on_success: never
33
+ on_failure: change
34
+ rooms:
35
+ - secure: kyDurUDtXcp+6SfpFeszmzRZEpl2IOFqevGelhKVfx7j+M+p1wvPCkv9vnSdpKaZbQ80EKORxS4ZsnKUL9/yOP2uF9mrzB/DCfzFynw/IVfBejM8nkbf/CmosFh0SkkLuwotaPeqMhAtg1J8Avk1HVKJmihaJfkD6kzQ3PSyKlw=
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ [2020-07-22] Version 0.1.6
7
+ --------------------------
8
+ **Library - Docs**
9
+ - [PR #82](https://github.com/sendgrid/smtpapi-ruby/pull/82): Create usage.md file. Thanks to [@prathamsharma92](https://github.com/prathamsharma92)!
10
+ - [PR #83](https://github.com/sendgrid/smtpapi-ruby/pull/83): add code review section in contributions. Thanks to [@prathamsharma92](https://github.com/prathamsharma92)!
11
+
12
+
6
13
  [2020-03-04] Version 0.1.5
7
14
  --------------------------
8
15
  **Library - Chore**
@@ -1,7 +1,5 @@
1
1
  Hello! Thank you for choosing to help contribute to one of the SendGrid open source libraries. There are many ways you can contribute and help is always welcome. We simply ask that you follow the following contribution policies.
2
2
 
3
- - [CLAs and CCLAs](#cla)
4
- - [Roadmap & Milestones](#roadmap)
5
3
  - [Feature Request](#feature-request)
6
4
  - [Submit a Bug Report](#submit-a-bug-report)
7
5
  - [Improvements to the Codebase](#improvements-to-the-codebase)
@@ -9,23 +7,10 @@ Hello! Thank you for choosing to help contribute to one of the SendGrid open sou
9
7
  - [Testing](#testing)
10
8
  - [Style Guidelines & Naming Conventions](#style-guidelines-and-naming-conventions)
11
9
  - [Creating a Pull Request](#creating-a-pull-request)
10
+ - [Code Reviews](#code-reviews)
12
11
 
13
- <a name="roadmap"></a>
14
12
  We use [Milestones](https://github.com/sendgrid/smtpapi-ruby/milestones) to help define current roadmaps, please feel free to grab an issue from the current milestone. Please indicate that you have begun work on it to avoid collisions. Once a PR is made, community review, comments, suggestions and additional PRs are welcomed and encouraged.
15
13
 
16
- <a name="cla"></a>
17
- ## CLAs and CCLAs
18
-
19
- Before you get started, SendGrid requires that a SendGrid Contributor License Agreement (CLA) be filled out by every contributor to a SendGrid open source project.
20
-
21
- Our goal with the CLA is to clarify the rights of our contributors and reduce other risks arising from inappropriate contributions. The CLA also clarifies the rights SendGrid holds in each contribution and helps to avoid misunderstandings over what rights each contributor is required to grant to SendGrid when making a contribution. In this way the CLA encourages broad participation by our open source community and helps us build strong open source projects, free from any individual contributor withholding or revoking rights to any contribution.
22
-
23
- SendGrid does not merge a pull request made against a SendGrid open source project until that pull request is associated with a signed CLA. Copies of the CLA are available [here](https://gist.github.com/SendGridDX/98b42c0a5d500058357b80278fde3be8#file-sendgrid_cla).
24
-
25
- When you create a Pull Request, after a few seconds, a comment will appear with a link to the CLA. Click the link and fill out the brief form and then click the "I agree" button and you are all set. You will not be asked to re-sign the CLA unless we make a change.
26
-
27
- There are a few ways to contribute, which we'll enumerate below:
28
-
29
14
  <a name="feature-request"></a>
30
15
  ## Feature Request
31
16
 
@@ -51,7 +36,7 @@ Before you decide to create a new issue, please try the following:
51
36
 
52
37
  ### Please use our Bug Report Template
53
38
 
54
- In order to make the process easier, we've included a [sample bug report template](https://github.com/sendgrid/smtpapi-ruby/ISSUE_TEMPLATE.md) (borrowed from [Ghost](https://github.com/TryGhost/Ghost/)). The template uses [GitHub flavored markdown](https://help.github.com/articles/github-flavored-markdown/) for formatting.
39
+ In order to make the process easier, we've included a [sample bug report template](ISSUE_TEMPLATE.md).
55
40
 
56
41
  <a name="improvements-to-the-codebase"></a>
57
42
  ## Improvements to the Codebase
@@ -178,4 +163,7 @@ Please run your code through:
178
163
  7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
179
164
  with a clear title and description against the `master` branch. All tests must be passing before we will review the PR.
180
165
 
181
- If you have any additional questions, please feel free to [email](mailto:dx@sendgrid.com) us or create an issue in this repo.
166
+ <a name="code-reviews"></a>
167
+ ## Code Reviews
168
+
169
+ If you can, please look at open PRs and review them. Give feedback and help us merge these PRs much faster! If you don't know how, Github has some great <a href="https://help.github.com/articles/about-pull-request-reviews/">information on how to review a Pull Request.</a>
data/README.md CHANGED
@@ -92,8 +92,8 @@ Quick links:
92
92
 
93
93
  - [Feature Request](https://github.com/sendgrid/smtpapi-ruby/blob/master/CONTRIBUTING.md#feature_request)
94
94
  - [Bug Reports](https://github.com/sendgrid/smtpapi-ruby/blob/master/CONTRIBUTING.md#submit_a_bug_report)
95
- - [Sign the CLA to Create a Pull Request](https://github.com/sendgrid/smtpapi-ruby/blob/master/CONTRIBUTING.md#cla)
96
95
  - [Improvements to the Codebase](https://github.com/sendgrid/smtpapi-ruby/blob/master/CONTRIBUTING.md#improvements_to_the_codebase)
96
+ - [Review Pull Requests](https://github.com/sendgrid/smtpapi-ruby/blob/master/CONTRIBUTING.md#code-reviews)
97
97
 
98
98
  ## Credits
99
99
 
@@ -102,9 +102,11 @@ This library was created by [Wataru Sato](https://github.com/awwa) and is now ma
102
102
  <a name="about"></a>
103
103
  # About
104
104
 
105
- smtpapi-ruby is guided and supported by the SendGrid [Developer Experience Team](mailto:dx@sendgrid.com).
105
+ smtpapi-ruby is maintained and funded by Twilio SendGrid, Inc. The names and logos for smtpapi-ruby are trademarks of Twilio SendGrid, Inc.
106
106
 
107
- smtpapi-ruby is maintained and funded by SendGrid, Inc. The names and logos for smtpapi-ruby are trademarks of SendGrid, Inc.
107
+ If you need help installing or using the library, please check the [Twilio SendGrid Support Help Center](https://support.sendgrid.com).
108
+
109
+ If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!
108
110
 
109
111
  <a name="license"></a>
110
112
  # License
@@ -0,0 +1,4 @@
1
+ # Usage
2
+
3
+ - [SendGrid Docs](https://sendgrid.com/docs/API_Reference/SMTP_API/index.html)
4
+ - [Example Code](https://github.com/sendgrid/smtpapi-ruby/blob/master/examples)
@@ -2,5 +2,5 @@
2
2
  # SendGrid smtpapi
3
3
  #
4
4
  module Smtpapi
5
- VERSION = '0.1.5'.freeze
5
+ VERSION = '0.1.6'.freeze
6
6
  end
@@ -7,7 +7,7 @@ require './lib/smtpapi'
7
7
  #
8
8
  class SmtpapiTest < Test::Unit::TestCase
9
9
  def test_version
10
- assert_equal('0.1.5', Smtpapi::VERSION)
10
+ assert_equal('0.1.6', Smtpapi::VERSION)
11
11
  end
12
12
 
13
13
  def test_empty
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smtpapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wataru Sato
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-03-04 00:00:00.000000000 Z
12
+ date: 2020-07-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -97,6 +97,7 @@ files:
97
97
  - README.md
98
98
  - Rakefile
99
99
  - TROUBLESHOOTING.md
100
+ - USAGE.md
100
101
  - examples/example.rb
101
102
  - lib/smtpapi.rb
102
103
  - lib/smtpapi/version.rb
@@ -123,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
124
  - !ruby/object:Gem::Version
124
125
  version: '0'
125
126
  requirements: []
126
- rubygems_version: 3.0.3
127
+ rubygems_version: 3.0.8
127
128
  signing_key:
128
129
  specification_version: 4
129
130
  summary: Smtpapi library for SendGrid.