Sha256: 9caab355f9b40f8a4e3ae761d7eb99201ee4aedaa1395b6ad09a958328c9f42e

Contents?: true

Size: 1.4 KB

Versions: 15

Compression:

Stored size: 1.4 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'autobuild/version'

Gem::Specification.new do |s|
    s.name = "autobuild"
    s.version = Autobuild::VERSION
    s.authors = ["Sylvain Joyeux"]
    s.email = "sylvain.joyeux@m4x.org"
    s.summary = "Library to handle build systems and import mechanisms"
    s.description = "Collection of classes to handle build systems (CMake, autotools, ...) and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj) integrated software project management tool."
    s.homepage = "http://rock-robotics.org"
    s.licenses = ["BSD"]

    s.required_ruby_version = ">= 1.9.3"
    s.require_paths = ["lib"]
    s.extensions = []
    s.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

    s.add_runtime_dependency "rake", ">= 11.1.0", '~> 11.1'
    s.add_runtime_dependency "utilrb", ">= 3.0"
    s.add_runtime_dependency 'tty-prompt', '>= 0.6.0', '~> 0.6.0'
    s.add_runtime_dependency 'pastel', '>= 0.6.0', '~> 0.6.0'
    s.add_development_dependency "flexmock", ">= 2.0.0"
    s.add_development_dependency "minitest", ">= 5.0", "~> 5.0"
    s.add_development_dependency "fakefs"
    s.add_development_dependency "simplecov"
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
autobuild-1.10.1 autobuild.gemspec
autobuild-1.10.0 autobuild.gemspec
autobuild-1.10.0.rc22 autobuild.gemspec
autobuild-1.10.0.rc21 autobuild.gemspec
autobuild-1.10.0.rc20 autobuild.gemspec
autobuild-1.10.0.rc19 autobuild.gemspec
autobuild-1.10.0.rc18 autobuild.gemspec
autobuild-1.10.0.rc17 autobuild.gemspec
autobuild-1.10.0.rc16 autobuild.gemspec
autobuild-1.10.0.rc15 autobuild.gemspec
autobuild-1.10.0.rc14 autobuild.gemspec
autobuild-1.10.0.rc13 autobuild.gemspec
autobuild-1.10.0.rc12 autobuild.gemspec
autobuild-1.10.0.rc11 autobuild.gemspec
autobuild-1.10.0.rc10 autobuild.gemspec