Sha256: 6d808ce5fd1dd2bca77718efaaefeb23a4a924dd9f959aa41dad37f2afab2955

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'shen_ruby/version'

Gem::Specification.new do |s|
  s.name        = "shen-ruby"
  s.version     = ShenRuby::VERSION
  s.platform    = Gem::Platform::RUBY
  s.license     = "Shen License"
  s.authors     = ["Greg Spurrier", "Mark Tarver"]
  s.email       = ["greg@sourcematters.org"]
  s.homepage    = "https://github.com/gregspurrier/shen-ruby"
  s.summary     = %q{ShenRuby is a Ruby port of the Shen programming language}
  s.description = %q{ShenRuby is a port of the Shen programming language to Ruby. It currently supports Shen version 16.}

  s.required_ruby_version     = ">= 1.9.3"

  s.add_runtime_dependency 'klam', '0.0.5', '0.0.5'

  s.add_development_dependency 'rake', '~> 10.4.2', '>= 10.4.2'
  s.add_development_dependency 'rspec', '~> 3.1', '>= 3.1.0'

  git_files            = `git ls-files`.split("\n") rescue ''
  s.files              = git_files
  s.test_files         = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables        = %w(srrepl)
  s.require_paths      = ["lib", "shen/lib"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shen-ruby-0.12.0 shen-ruby.gemspec