add a gemspec for release

This commit is contained in:
Torsten Ruger 2014-07-31 21:50:08 +03:00
parent 5e56cf5922
commit a5897563de

17
salama-reader.gemspec Normal file
View File

@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'salama-reader'
s.version = '0.0.1'
s.authors = ['Torsten Ruger']
s.email = 'torsten@villataika.fi'
s.extra_rdoc_files = ['README.md']
s.files = %w(README.md LICENSE) + Dir.glob("lib/**/*")
s.homepage = 'https://github.com/salama/salama-reader'
s.license = 'MIT'
s.require_paths = ['lib']
s.summary = 'Ruby parser for the salama machine'
s.add_dependency 'salama', '~> 0.0.1'
end