Sha256: 446ce9dfc32b67de9931cbdd9ab3d252940840fd2fdee3eb316fb8d05b4c9130

Contents?: true

Size: 570 Bytes

Versions: 2

Compression:

Stored size: 570 Bytes

Contents

GEM_NAME = 'stencil'
GEM_FILES = FileList['**/*'] - FileList['coverage', 'coverage/**/*', 'pkg', 'pkg/**/*']
GEM_SPEC = Gem::Specification.new do |s|
  # == CONFIGURE ==
  s.author = "Winton Welsh"
  s.email = "mail@wintoni.us"
  s.homepage = "http://github.com/winton/#{GEM_NAME}"
  s.summary = "Project template manager"
  # == CONFIGURE ==
  s.executables << GEM_NAME
  s.extra_rdoc_files = [ "README.markdown" ]
  s.files = GEM_FILES.to_a
  s.has_rdoc = false
  s.name = GEM_NAME
  s.platform = Gem::Platform::RUBY
  s.require_path = "lib"
  s.version = "0.1.3"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stencil-0.1.4 gemspec.rb
stencil-0.1.3 gemspec.rb