forked from spotify/duck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
duck.gemspec
25 lines (20 loc) · 950 Bytes
/
duck.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'duck/version'
Gem::Specification.new do |s|
s.name = "duck-installer"
s.version = Duck::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["John-John Tedro", "Nathan Ferch", "Martin Parm"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/udoprog/duck"
s.summary = "Tool for generating a minimalistic initramfs installer system"
s.description = "Duck takes a configuration and generates a bootable initramfs that gives over to a minimalistic installation environment based on (em)debian."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "duck"
s.add_development_dependency "rspec"
s.files = Dir.glob("{lib,files,fixes}/**/*") + %w(LICENSE README duck.yaml)
s.executables << 'duck'
s.require_path = 'lib'
end