-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroasted.gemspec
24 lines (21 loc) · 974 Bytes
/
roasted.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/roasted/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Mikko Kokkonen"]
gem.email = ["[email protected]"]
gem.description = %q{
Roasted is a simple bootstrapping library to install
all necessary applications and requirements to freshly
installed OS X. Roasted install not only applications
but also preferences and licenses if possible.}
gem.summary = %q{Simple application installation and configuration library for OS X}
gem.homepage = "http://www.github.com/owlforestry/roasted"
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.name = "roasted"
gem.require_paths = ["lib"]
gem.version = Roasted::VERSION
gem.add_dependency 'thor'
gem.add_dependency 'plist'
end