-
Notifications
You must be signed in to change notification settings - Fork 71
/
plist.gemspec
24 lines (19 loc) · 951 Bytes
/
plist.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "plist/version"
Gem::Specification.new do |spec|
spec.name = "plist"
spec.version = Plist::VERSION
spec.authors = ["Ben Bleything", "Patrick May"]
spec.summary = "All-purpose Property List manipulation library"
spec.description = "Plist is a library to manipulate Property List files, "\
"also known as plists. It can parse plist files into "\
"native Ruby data structures as well as generating new "\
"plist files from your Ruby objects."
spec.homepage = "https://github.com/patsplat/plist"
spec.license = "MIT"
spec.files = %w{LICENSE.txt} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 1.9.3"
end