Sha256: 10848e0aca590987ec9472a155f4c6ef739a9277950bbb95335fbe854c72da0a

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spamspanify/version'

Gem::Specification.new do |gem|
  gem.name          = "spamspanify"
  gem.version       = Spamspanify::VERSION
  gem.authors       = ["Corné Verbruggen"]
  gem.email         = ["info@corneverbruggen.com"]
  gem.description   = %q{
    Spamspanify extends the String class with a spamspanify method that
    replaces all email addresses in a string with HTML markup that can be
    handled by the SpamSpan javascript library.
  }
  gem.summary       = "Transforms email addresses in a string into SpamSpam markup"
  gem.homepage      = "https://github.com/corneverbruggen/spamspanify"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_development_dependency "rake"
  gem.add_development_dependency "rspec", "~> 2.12"
  gem.add_development_dependency "yard", "~> 0.8.3"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spamspanify-1.2.2 spamspanify.gemspec
spamspanify-1.2.1 spamspanify.gemspec