-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcocoapods-ppbuild.gemspec
More file actions
26 lines (23 loc) · 976 Bytes
/
cocoapods-ppbuild.gemspec
File metadata and controls
26 lines (23 loc) · 976 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cocoapods-ppbuild/gem_version.rb'
Gem::Specification.new do |spec|
spec.name = 'cocoapods-ppbuild'
spec.version = CocoapodsPpbuild::VERSION
spec.authors = ['彭懂']
spec.email = ['pengdong2014@xiaochuankeji.cn']
spec.description = %q{工程静态库编译,提高编译速度.}
spec.summary = %q{工程静态库编译,提高编译速度.}
spec.homepage = 'https://github.com/pdcodeunder/cocoapods-ppbuild.git'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.metadata = {
'cocoapods_plugin' => 'true'
}
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
end