update parser and new version

This commit is contained in:
Torsten Ruger 2015-11-30 20:11:11 +02:00
parent c7d1f9ec99
commit 597fa2c8f3
2 changed files with 7 additions and 5 deletions

View File

@ -27,9 +27,9 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
salama (0.3.0) salama (0.5.0)
salama-object-file (~> 0.3) salama-object-file (~> 0.3)
salama-reader (~> 0.3) soml-parser (~> 0.5)
GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
@ -102,6 +102,9 @@ GEM
simplecov-html (~> 0.10.0) simplecov-html (~> 0.10.0)
simplecov-html (0.10.0) simplecov-html (0.10.0)
slop (3.6.0) slop (3.6.0)
soml-parser (0.5.0)
ast (~> 2.1.0)
parslet (~> 1.7.1)
storable (0.8.9) storable (0.8.9)
sysinfo (0.8.1) sysinfo (0.8.1)
drydock drydock

View File

@ -2,7 +2,7 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = 'salama' s.name = 'salama'
s.version = '0.3.0' s.version = '0.5.0'
s.authors = ['Torsten Ruger'] s.authors = ['Torsten Ruger']
s.email = 'torsten@villataika.fi' s.email = 'torsten@villataika.fi'
@ -13,7 +13,6 @@ Gem::Specification.new do |s|
s.require_paths = ['lib'] s.require_paths = ['lib']
s.summary = 'Salama is a native object vm without any c, one day possibly a ruby vm' s.summary = 'Salama is a native object vm without any c, one day possibly a ruby vm'
s.add_dependency "salama-reader" , "~> 0.3" s.add_dependency "soml-parser" , "~> 0.5"
s.add_dependency "salama-object-file" , "~> 0.3" s.add_dependency "salama-object-file" , "~> 0.3"
end end