add a gemspec (with the madly optimistic thought of ever releasing a gem)

This commit is contained in:
Torsten Ruger 2014-05-24 14:35:06 +03:00
parent 61a60abd08
commit 6e7e7563a2
2 changed files with 17 additions and 1 deletions

View File

@ -1 +0,0 @@
0.0.0

17
crystal.gemspec Normal file
View File

@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'crystal'
s.version = '0.0.1'
s.authors = ['Torsten Ruger']
s.email = 'torsten@villataika.fi'
s.extra_rdoc_files = ['README.markdown']
s.files = %w(README.markdown LICENSE.txt Rakefile) + Dir.glob("lib/**/*")
s.homepage = 'https://github.com/ruby-in-ruby/crystal'
s.license = 'MIT'
s.require_paths = ['lib']
s.summary = 'Hey crystal, what do you want to be when you grow up: I like pink and red, i wanna be a ruby'
s.add_dependency 'parslet', '~> 1.6.1'
end