Sha256: da8f8c280dbbaa3cfeef74cc1bb301e376cef4ab0c9d75219328c03f9263227d

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'buildozer/version'

Gem::Specification.new do |gem|
  gem.name          = "buildozer"
  gem.version       = Buildozer::VERSION
  gem.authors       = ["Matthieu Vachon"]
  gem.email         = ["matthieu.o.vachon@gmail.com"]
  gem.homepage      = "https://github.com/maoueh/buildozer"
  gem.summary       = "Application to build and package software."
  gem.description   = <<-EOF
     Buildozer is an application that aims to ease the building
     and packaging of software.

     With this application, and with the help of the fpm library,
     you should be able to build and package any software like
     a breeze in a fully automatic manner.
  EOF

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_dependency "fpm", "~> 0.4.29"

  gem.add_development_dependency "rake", "~> 10.0.3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
buildozer-1.0.0.dev1 buildozer.gemspec