-
Notifications
You must be signed in to change notification settings - Fork 3
/
daedalus-core.gemspec
34 lines (29 loc) · 1.75 KB
/
daedalus-core.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
33
34
# -*- encoding: utf-8 -*-
require './lib/daedalus/version'
Gem::Specification.new do |gem|
gem.name = "daedalus-core"
gem.version = "#{Daedalus::VERSION}"
gem.authors = ["Brian Shirai"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/rubinius/daedalus-core"
gem.license = "BSD"
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 = <<-EOS
Daedalus is a build system extracted from Rubinius. Almost no functionality has been implemented. This is very alpha.
EOS
gem.description = <<-EOD
Daedalus is a build system based on years of attempting to build Rubinus with a collection of Rake tasks. Rubinius is a complex system. It has dependencies on external C libraries (some of which are vendored), internal C/C++ libraries, Ruby C-extensions, and compiled Ruby code. The Rubinius bytecode compiler is written in Ruby, so we have to bootstrap compiling it.
Rake fails at this task because there is no way to manage multiple, independent dependency trees without subprocessing another Rake process. This results in unreasonable and unmanagable complexity.
EOD
gem.has_rdoc = true
gem.extra_rdoc_files = %w[ README.md LICENSE ]
gem.rubygems_version = %q{1.3.5}
gem.rdoc_options << '--title' << 'Daedalus Gem' <<
'--main' << 'README' <<
'--line-numbers'
gem.add_development_dependency "rake", ">= 12.3.3"
gem.add_development_dependency "rspec", "~> 2.8"
end