Sha256: 85c96f4d372a270c67ab85803db4099bd29f763bb8bef7d1f86da60245284124
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'asciidammit/version' Gem::Specification.new do |spec| spec.name = 'asciidammit2' spec.version = Asciidammit::VERSION spec.authors = ['Forrest Chang'] spec.email = ['fkc_email-ruby@yahoo.com'] spec.summary = %q{ A straight port of asciidammit.py.} spec.description = %q{ A straight port of asciidammit.py used for a work project, made into a gem to be used elsewhere. There is an asciidammit gem which sports a different interface.} spec.homepage = 'https://github.com/fkchang/asciidammit2' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rspec-nc' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
asciidammit2-0.1.0 | asciidammit2.gemspec |
asciidammit2-0.0.1 | asciidammit2.gemspec |