forked from grab/cocoapods-pod-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cocoapods-pod-merge.gemspec
26 lines (22 loc) · 1.19 KB
/
cocoapods-pod-merge.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
# Copyright 2019 Grabtaxi Holdings PTE LTE (GRAB), All rights reserved.
# Use of this source code is governed by an MIT-style license that can be found in the LICENSE file
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cocoapods-pod-merge/gem_version.rb'
Gem::Specification.new do |spec|
spec.name = 'cocoapods-pod-merge'
spec.version = CocoapodsPodMerge::VERSION
spec.authors = ['Siddharth Gupta']
spec.email = ['[email protected]']
spec.description = %q{Cocoapods plugin to merge your pods into one framework, to reduce dylib loading time on app startup.}
spec.summary = %q{Cocoapods plugin to merge your pods into one framework, to reduce dylib loading time on app startup.}
spec.homepage = 'https://github.com/grab/cocoapods-pod-merge'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake', '~> 10.0'
end