forked from Cat1237/cocoapods-hmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcocoapods-hmap.gemspec
30 lines (25 loc) · 1.12 KB
/
cocoapods-hmap.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
30
# frozen_string_literal: true
require "#{File.dirname(__FILE__)}/lib/cocoapods_hmap"
Gem::Specification.new do |spec|
spec.name = 'cocoapods-mapfile'
spec.version = CocoapodsHMap::VERSION
spec.authors = ['Cat1237']
spec.email = ['[email protected]']
spec.summary = 'Read or write header map file.'
spec.description = %(
header_reader lets your read Xcode header map file.
header-writer lets your analyze the project pod dependencies and gen header map file for all pods.
).strip.gsub(/\s+/, ' ')
spec.homepage = "https://github.com/Cat1237/cocoapods-hmap.git"
spec.license = 'MIT'
spec.files = %w[README.md LICENSE] + Dir['lib/**/*.rb']
# spec.bindir = 'bin'
spec.executables = %w(hmap_reader hmap_writer)
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'coveralls', '~> 0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_dependency 'cocoapods', '>= 1.6'
spec.required_ruby_version = '>= 2.5'
end