Sha256: 711ffa885877edd03db661b06fd9766a02c76f56c78025c14e593392de970746
Contents?: true
Size: 829 Bytes
Versions: 3
Compression:
Stored size: 829 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "temp/version" Gem::Specification.new do |s| s.name = "temp" s.version = Temp::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Austin Gatchell"] s.email = ["austin@ausgat.com"] s.homepage = "https://github.com/ausgat/temp" s.summary = 'A small project creation utility.' s.description = 'Temp is a simple command line utility for creating ' \ 'projects from templates.' s.license = 'MIT' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency('rspec') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
temp-0.0.4 | temp.gemspec |
temp-0.0.3 | temp.gemspec |
temp-0.0.2 | temp.gemspec |