-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmacadmin.gemspec
More file actions
35 lines (30 loc) · 1.28 KB
/
macadmin.gemspec
File metadata and controls
35 lines (30 loc) · 1.28 KB
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
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'macadmin/version'
Gem::Specification.new do |s|
s.name = "macadmin"
s.version = MacAdmin::VERSION.to_s
s.date = '2012-07-08'
s.authors = ["Brian Warsing"]
s.email = ['dayglojesus@gmail.com']
s.description = "Gem to assist in performing common systems administration tasks in Mac OS X"
s.summary = "Ruby Mac Systems Administration Library"
s.homepage = "http://github.com/dayglojesus/macadmin"
s.license = "MIT"
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib", "ext"]
s.extensions = Dir['ext/**/extconf.rb']
s.platform = Gem::Platform::RUBY
s.add_development_dependency "bundler", "~> 1.3"
s.add_development_dependency "rake"
s.add_development_dependency "rake-compiler"
s.add_development_dependency "rspec"
s.add_development_dependency "CFPropertyList"
s.add_runtime_dependency "bundler", "~> 1.3"
s.add_runtime_dependency "rake"
s.add_runtime_dependency "rake-compiler"
s.add_runtime_dependency "CFPropertyList"
end