Sha256: e1da50e90e31358fb71ebf2b95ed7cad481a1346cdd3bbe16edbd2465ad94964
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 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 "rspec" spec.add_development_dependency "rubocop", "~> 1.7" spec.add_dependency "dotenv-rails", "~> 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.1.8 | mailersend-ruby.gemspec |
mailersend-ruby-0.1.7 | mailersend-ruby.gemspec |