sendgrid_webapi 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff233662151a27ee1fc9a7b97b76ca8a94c31dce74a1bf2a1cf9988ac8bc7b91
4
- data.tar.gz: 0b3726d98a4eb9addceeeea27beabafd89a2cabaab00c3ced99e0ff0086448bd
3
+ metadata.gz: 2c4750102028a182ab7e513792ca0f127684c5ce2f59562dbe1997869c7099e9
4
+ data.tar.gz: 406420e68b953fca19e900acd80ab5914c689941588c4b056239f2f5f64f6971
5
5
  SHA512:
6
- metadata.gz: a2f836e58f0fca1c0d413e9d0f32a78d1c9b3cea13286b5e0e0801db5be02124cded1ba17a98d784a1bfc98e5a5ca55d09d6d73b90055a5906c7e41ac566706c
7
- data.tar.gz: 67531dc60c343fa706200db2ae2de1468483bcbd06833a73dd5a69d8a9f01b11867bdd36b1e876ca5c0ba0e576deb81b0e9d0a50541b73748f77ca606a58d316
6
+ metadata.gz: d912c4463cb6cf6b77d55444e31302450e395c4b2c0eb14bbd4345b77d83dfbba7b3b5b9b563b0e0fff577a5989a00255c69d731d56c08495bd727eb3f15c358
7
+ data.tar.gz: 445d7ef45b7cb2b7325405120ef271ab1c6b13d50a902e83c63e5bebe16f95889c722f06555adedabb08ba4e70eb652eeec810a6a29f4d285dea64ec51def652
data/Gemfile CHANGED
@@ -1,5 +1,4 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in send_grid.gemspec
4
-
5
4
  gemspec
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
@@ -1,3 +1,3 @@
1
1
  module SendGridWebApi
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -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.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-04-28 00:00:00.000000000 Z
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: []