Skip to content

Commit 3444cd0

Browse files
author
Carlos Derich
committed
v0.1.1
1 parent 802c865 commit 3444cd0

File tree

6 files changed

+23
-42
lines changed

6 files changed

+23
-42
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
/pkg/
77
/spec/reports/
88
/tmp/
9+
/sig/
910

1011
# rspec failure tracking
1112
.rspec_status
1213

13-
test.rb
14+
test.rb
15+
*.gem

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ gem "rspec", "~> 3.0"
1111

1212
gem "rubocop", "~> 1.21"
1313

14-
gem "httparty"
14+
gem "httparty", "~> 0.20.0"

Gemfile.lock

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
resend (0.1.0)
4+
resend (0.1.1)
5+
httparty (~> 0.20.0)
56

67
GEM
78
remote: https://rubygems.org/
@@ -55,7 +56,7 @@ PLATFORMS
5556
x86_64-darwin-20
5657

5758
DEPENDENCIES
58-
httparty
59+
httparty (~> 0.20.0)
5960
rake (~> 13.0)
6061
resend!
6162
rspec (~> 3.0)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ gem install resend
1515

1616
Via Gemfile:
1717
```
18-
gem 'resend', '~>0.0.1'
18+
gem 'resend', '~>0.1.0'
1919
```
2020

2121
## Setup

lib/resend/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Resend
4-
VERSION = "0.1.0"
4+
VERSION = "0.1.1"
55
end

resend.gemspec

+14-36
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,17 @@
1-
# frozen_string_literal: true
2-
31
require_relative "lib/resend/version"
42

53
Gem::Specification.new do |spec|
6-
spec.name = "resend"
7-
spec.version = Resend::VERSION
8-
spec.authors = ["Derich Pacheco"]
9-
spec.email = ["[email protected]"]
10-
11-
spec.summary = "Resend Ruby and Rails gem"
12-
spec.description = spec.summary
13-
spec.homepage = "https://github.com/drish/resend-ruby"
14-
spec.required_ruby_version = ">= 2.6.0"
15-
16-
spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
17-
18-
spec.metadata["homepage_uri"] = spec.homepage
19-
spec.metadata["source_code_uri"] = spec.homepage
20-
spec.metadata["changelog_uri"] = spec.homepage
21-
22-
# Specify which files should be added to the gem when it is released.
23-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24-
spec.files = Dir.chdir(__dir__) do
25-
`git ls-files -z`.split("\x0").reject do |f|
26-
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
27-
end
28-
end
29-
spec.bindir = "exe"
30-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31-
spec.require_paths = ["lib"]
32-
33-
# Uncomment to register a new dependency of your gem
34-
# spec.add_dependency "example-gem", "~> 1.0"
35-
spec.add_development_dependency "rspec", "~> 3.2"
36-
37-
# For more information and examples about making a new gem, check out our
38-
# guide at: https://bundler.io/guides/creating_gem.html
39-
end
4+
spec.name = "resend"
5+
spec.version = Resend::VERSION
6+
spec.summary = "The Ruby and Rails SDK for resend.com"
7+
spec.homepage = "https://github.com/drish/resend-ruby"
8+
spec.license = "MIT"
9+
10+
spec.author = "Derich Pacheco"
11+
spec.email = "[email protected]"
12+
13+
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
14+
spec.require_path = "lib"
15+
spec.required_ruby_version = ">= 2.6"
16+
spec.add_dependency "httparty", "~> 0.20.0"
17+
end

0 commit comments

Comments
 (0)