Sha256: 3af5871e66bedb269a3c2a12d5a218b8c22aa51c66303a44b2e20735a4f26ec4

Contents?: true

Size: 958 Bytes

Versions: 7

Compression:

Stored size: 958 Bytes

Contents

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

Gem::Specification.new do |gem|
  gem.name          = "has_meta"
  gem.version       = HasMeta::VERSION
  gem.authors       = ["Philip Hallstrom"]
  gem.email         = ["philip@pjkh.com"]
  gem.description   = %q{Adds convenience methods to extract "meta" (as in http meta) strings from models.}
  gem.summary       = %q{Adds convenience methods to extract "meta" (as in http meta) strings from models by using existing fields for source data. Strings are stripped of html tags and truncated to length (default 255).}
  gem.homepage      = "https://github.com/phallstrom/has_meta"

  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"]
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
has_meta-0.0.7 has_meta.gemspec
has_meta-0.0.6 has_meta.gemspec
has_meta-0.0.5 has_meta.gemspec
has_meta-0.0.4 has_meta.gemspec
has_meta-0.0.3 has_meta.gemspec
has_meta-0.0.2 has_meta.gemspec
has_meta-0.0.1 has_meta.gemspec