rmetzler/render-as-markdown

View on GitHub
render-as-markdown.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/render-as-markdown/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Richard Metzler"]
  gem.email         = ["richard@launchco.com"]
  gem.description   = %q{
    RenderAsMarkdown is a small Ruby gem featuring simple to use objects to turn data into Markdown.
    }
  gem.summary       = %q{
    Currently implemented is a table in GitHub-flavoured Markdown.
    It works perfectly fine, but is not fully featured yet.
    }
  gem.homepage      = "https://github.com/rmetzler/render-as-markdown"
  gem.license       = "MIT"

  gem.name          = "render-as-markdown"
  gem.require_paths = ["lib"]
  gem.version       = RenderAsMarkdown::VERSION

  gem.add_development_dependency 'bundler'
  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'minitest'
  gem.add_development_dependency 'minitest-reporters'
  # gem.add_development_dependency 'sandi_meter'

  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")

end