File: plist.gemspec

package info (click to toggle)
ruby-plist 3.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: ruby: 753; xml: 203; makefile: 6; sh: 4
file content (24 lines) | stat: -rw-r--r-- 951 bytes parent folder | download | duplicates (2)
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