-
Notifications
You must be signed in to change notification settings - Fork 7
/
shen-ruby.gemspec
29 lines (23 loc) · 1.1 KB
/
shen-ruby.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 = "BSD/MIT"
s.authors = ["Greg Spurrier", "Mark Tarver"]
s.email = ["[email protected]"]
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 19.1.}
s.required_ruby_version = ">= 1.9.3"
s.add_runtime_dependency 'klam', '0.0.9', '0.0.9'
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(shen_ruby shen-ruby srrepl)
s.require_paths = ["lib"]
end