Sha256: c754677f6ef3347b1226d015d796e5d2d607cc22232ce45745c29cb0c1e8688b

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "status_tag"
  spec.version       = StatusTag::VERSION
  spec.authors       = ["Peter Boling"]
  spec.email         = ["peter.boling@gmail.com"]

  spec.summary       = %q{Provides content_tag_for method signature to create labels from Ruby objects}
  spec.description   = %q{Provides content_tag_for method signature to create customizable and logic-gated labels from objects.
Also includes a presenter base class to allow any Ruby web framework to create logic around HTML tags}
  spec.homepage      = "http://github.com/pboling/status_tag"

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

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "pry"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
status_tag-0.2.0 status_tag.gemspec
status_tag-0.1.3 status_tag.gemspec
status_tag-0.1.2 status_tag.gemspec
status_tag-0.1.1 status_tag.gemspec
status_tag-0.1.0 status_tag.gemspec