Sha256: 651d3773de360a5e7e0d0250701478c98e3febe1d3c7f950d63db53be27d7af6
Contents?: true
Size: 1.4 KB
Versions: 3
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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mailersend-ruby-0.2.3 | mailersend-ruby.gemspec |
mailersend-ruby-0.2.2 | mailersend-ruby.gemspec |
mailersend-ruby-0.2.1 | mailersend-ruby.gemspec |