Sha256: dce550c98a0583eb335456e2dc7ea19ae70136c1165007be8d82f1134b2febc0
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
require_relative 'lib/standup_md/version' Gem::Specification.new do |spec| spec.name = 'standup_md' spec.version = StandupMD::VERSION spec.authors = ['Evan Gray'] spec.email = 'evanthegrayt@vivaldi.net' spec.license = 'MIT' spec.date = Time.now.strftime('%Y-%m-%d') spec.summary = %q{The cure for all your standup woes} spec.description = %q{Generate and edit standups in markdown format} spec.homepage = 'https://github.com/evanthegrayt/standup_md' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = spec.homepage else raise 'RubyGems 2.0 or newer is required to protect against ' \ 'public gem pushes.' end # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. # spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do # `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } # end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
standup_md-0.0.10 | standup_md.gemspec |