Sha256: cca43b6ea466ecc5c77d40e5f504e06cf40a897c3e4a2e74be251f4b43efd4ff
Contents?: true
Size: 1.4 KB
Versions: 2
Compression:
Stored size: 1.4 KB
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "mailersend/version" Gem::Specification.new do |spec| spec.name = "mailersend-ruby" spec.version = Mailersend::VERSION spec.authors = ["Nikola Milojević"] spec.email = ["info@mailersend.com"] spec.summary = "MailerSend's official Ruby SDK" spec.description = "MailerSend's official Ruby SDK. Interacts with all endpoints at MailerSend API." spec.homepage = "https://www.mailersend.com" spec.license = "MIT" spec.required_ruby_version = ">= 2.5.0" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/mailersend/mailersend-ruby" spec.metadata["changelog_uri"] = "https://github.com/mailersend/mailersend-ruby/blob/main/CHANGELOG.md" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 2.2.15" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rubocop", "~> 1.7" spec.add_dependency "dotenv", "~> 2.7" spec.add_dependency "http", "~> 5.0" spec.add_dependency "json", "~> 2.5" spec.add_dependency "uri", "~> 0.10.1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mailersend-ruby-0.2.0 | mailersend-ruby.gemspec |
mailersend-ruby-0.1.9 | mailersend-ruby.gemspec |