-
Notifications
You must be signed in to change notification settings - Fork 2
/
poison.gemspec
32 lines (27 loc) · 1.21 KB
/
poison.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
30
31
32
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/poison/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "poison"
gem.version = "#{Poison::VERSION}"
gem.authors = ["Brian Shirai"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/brixen/poison"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) unless File.extname(f) == ".bat" }.compact
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ["lib"]
gem.summary = "Poison is an interpretation of Potion on the Rubinius VM."
gem.description = <<EOS
Poison is a programming language based on Potion by Why The Lucky Stiff
that runs on the Rubinius VM.
EOS
gem.has_rdoc = true
gem.extra_rdoc_files = %w[ README.md LICENSE ]
gem.rubygems_version = %q{1.3.5}
gem.rdoc_options << '--title' << 'Poison Gem' <<
'--main' << 'README' <<
'--line-numbers'
gem.add_runtime_dependency 'redcard', '~> 1.0'
gem.add_development_dependency 'mspec', '~> 1.5.0'
gem.add_development_dependency 'kpeg', '~> 0.10'
end