Sha256: df3eb00556e8008f0d70786fe3b79283825c5bd428a7edef4effc8fc9d6677cd

Contents?: true

Size: 1.43 KB

Versions: 2

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "abstract_notifier/version"

Gem::Specification.new do |spec|
  spec.name = "abstract_notifier"
  spec.version = AbstractNotifier::VERSION
  spec.authors = ["Vladimir Dementyev"]
  spec.email = ["dementiev.vm@gmail.com"]

  spec.summary = "ActionMailer-like interface for any type of notifications"
  spec.description = "ActionMailer-like interface for any type of notifications"
  spec.homepage = "https://github.com/palkan/abstract_notifier"
  spec.license = "MIT"

  spec.required_ruby_version = ">= 2.4"

  spec.metadata = {
    "bug_tracker_uri" => "http://github.com/palkan/abstract_notifier/issues",
    "changelog_uri" => "https://github.com/palkan/abstract_notifier/blob/master/CHANGELOG.md",
    "documentation_uri" => "http://github.com/palkan/abstract_notifier",
    "homepage_uri" => "http://github.com/palkan/abstract_notifier",
    "source_code_uri" => "http://github.com/palkan/abstract_notifier"
  }

  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "active_delivery"

  spec.add_development_dependency "bundler", ">= 1.16"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec-rails", "~> 3.0"
  spec.add_development_dependency "standard", "~> 0.2.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
abstract_notifier-0.3.1 abstract_notifier.gemspec
abstract_notifier-0.3.0 abstract_notifier.gemspec