-
Notifications
You must be signed in to change notification settings - Fork 5
/
cocoapods-meitu-bin.gemspec
29 lines (25 loc) · 1.27 KB
/
cocoapods-meitu-bin.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
25
26
27
28
29
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cocoapods-meitu-bin/gem_version.rb'
Gem::Specification.new do |spec|
spec.name = 'cocoapods-meitu-bin'
spec.version = CBin::VERSION
spec.authors = ['Jensen']
spec.email = ['[email protected]']
spec.description = %q{cocoapods-meitu-bin is a plugin which helps develpers switching pods between source code and binary.}
spec.summary = %q{cocoapods-meitu-bin is a plugin which helps develpers switching pods between source code and binary.}
spec.homepage = 'https://github.com/meitu/cocoapods-meitu-bin.git'
spec.license = 'MIT'
spec.files = Dir["lib/**/*.rb","spec/**/*.rb","lib/**/*.plist"] + %w{README.md LICENSE.txt }
# spec.files = `git ls-files`.split($/)
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.add_dependency 'parallel', '~> 1.22.0'
spec.add_dependency 'cocoapods'
# spec.add_dependency 'cocoapods', '1.10.2'
spec.add_dependency "cocoapods-generate",'~> 2.0.1'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
end