Sha256: 4ad1269a29c1c1aa93bfab2ddeb0563c7fce202d302e25d0d35a32c5503ab54d
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'downterm/version' Gem::Specification.new do |gem| gem.name = 'downterm' gem.version = Downterm::VERSION gem.licenses = ['MIT'] gem.authors = ['Michael Dippery'] gem.email = ['michael@monkey-robot.com'] gem.homepage = 'https://github.com/mdippery/downterm' gem.description = 'Converts Markdown into text suitable for output to a terminal' gem.summary = 'Displays blocks of Markdown text in a manner that is easy to read in the terminal.' gem.metadata = { 'build_date' => Time.now.strftime("%Y-%m-%d %H:%M:%S %Z"), 'commit' => `git describe`.chomp, 'commit_hash' => `git rev-parse HEAD`.chomp, } 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.required_ruby_version = '>= 1.9.3' gem.add_runtime_dependency('highline', '~> 1.7') gem.add_runtime_dependency('rainbow', '~> 2.0') gem.add_runtime_dependency('redcarpet', '~> 3.3') gem.add_development_dependency('rspec', '~> 3.3') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
downterm-0.1.3 | downterm.gemspec |
downterm-0.1.2 | downterm.gemspec |