Sha256: d2181ed1ca8774ab3fa8661b590287128c7737fa6eb728408ecef5ca450fdcfd

Contents?: true

Size: 611 Bytes

Versions: 1

Compression:

Stored size: 611 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.add_dependency('httparty', '=0.4.5')
  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.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stencil-0.1.0 gemspec.rb