Sha256: 448e4e7272c65e4dfa346995296d8449657440cc8502e1497c95bb0fdcaa32a3

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 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 and MIT License. See README.md for details."
  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 7.1.}

  s.required_ruby_version     = ">= 1.9.3"

  s.add_development_dependency "rspec", "~> 2.12"

  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

3 entries across 3 versions & 1 rubygems

Version Path
shen-ruby-0.3.0 shen-ruby.gemspec
shen-ruby-0.2.0 shen-ruby.gemspec
shen-ruby-0.1.0 shen-ruby.gemspec