1
- # frozen_string_literal: true
2
-
3
1
require_relative "lib/resend/version"
4
2
5
3
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{\A exe/} ) { |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
+
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