sendgrid_webapi 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/MIT-LICENSE +20 -0
- data/lib/version.rb +1 -1
- data/sendgrid_webapi.gemspec +7 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c4750102028a182ab7e513792ca0f127684c5ce2f59562dbe1997869c7099e9
|
4
|
+
data.tar.gz: 406420e68b953fca19e900acd80ab5914c689941588c4b056239f2f5f64f6971
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d912c4463cb6cf6b77d55444e31302450e395c4b2c0eb14bbd4345b77d83dfbba7b3b5b9b563b0e0fff577a5989a00255c69d731d56c08495bd727eb3f15c358
|
7
|
+
data.tar.gz: 445d7ef45b7cb2b7325405120ef271ab1c6b13d50a902e83c63e5bebe16f95889c722f06555adedabb08ba4e70eb652eeec810a6a29f4d285dea64ec51def652
|
data/Gemfile
CHANGED
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2021 Kyle Ginavan
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/version.rb
CHANGED
data/sendgrid_webapi.gemspec
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
3
3
|
require "version"
|
4
|
+
|
4
5
|
Gem::Specification.new do |s|
|
5
6
|
s.name = "sendgrid_webapi"
|
6
7
|
s.version = SendGridWebApi::VERSION
|
@@ -10,16 +11,21 @@ Gem::Specification.new do |s|
|
|
10
11
|
s.homepage = "https://github.com/kylejginavan/sendgrid_webapi"
|
11
12
|
s.summary = %q{SendGrid WEB API gem fo Rails}
|
12
13
|
s.description = %q{Gem for access to SendGrid WEB API from rails}
|
14
|
+
s.license = "MIT"
|
15
|
+
|
13
16
|
s.rubyforge_project = "sendgrid_webapi"
|
17
|
+
|
14
18
|
s.files = `git ls-files`.split("\n")
|
15
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
17
21
|
s.require_paths = ["lib"]
|
22
|
+
|
18
23
|
s.add_dependency "faraday", "~> 1.0"
|
19
24
|
s.add_dependency "faraday_middleware", "~> 1.0"
|
20
25
|
s.add_dependency "json", "~> 2.0"
|
26
|
+
|
21
27
|
s.add_development_dependency "rspec", "~> 3.4"
|
22
28
|
s.add_development_dependency "webmock", "~> 3.12"
|
23
29
|
s.add_development_dependency "vcr", "~> 6.0"
|
24
30
|
s.add_development_dependency "rspec_junit_formatter", "~> 0.3", ">= 0.3.0"
|
25
|
-
end
|
31
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sendgrid_webapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kylejginavan
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-
|
12
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
@@ -130,6 +130,7 @@ files:
|
|
130
130
|
- ".ruby-version"
|
131
131
|
- ".tool-versions"
|
132
132
|
- Gemfile
|
133
|
+
- MIT-LICENSE
|
133
134
|
- README.rdoc
|
134
135
|
- Rakefile
|
135
136
|
- lib/api_key/management.rb
|
@@ -244,7 +245,8 @@ files:
|
|
244
245
|
- spec/sub_user_spec.rb
|
245
246
|
- test.rb
|
246
247
|
homepage: https://github.com/kylejginavan/sendgrid_webapi
|
247
|
-
licenses:
|
248
|
+
licenses:
|
249
|
+
- MIT
|
248
250
|
metadata: {}
|
249
251
|
post_install_message:
|
250
252
|
rdoc_options: []
|