-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxcodeproject.gemspec
30 lines (26 loc) · 1.25 KB
/
xcodeproject.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/xcodeproject/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'xcodeproject'
gem.version = XcodeProject::VERSION
gem.summary = 'Read, write and build xcode projects'
gem.description = 'XcodeProject is the Ruby API for working with Xcode project files'
gem.author = 'Andrei Nesterov'
gem.email = '[email protected]'
gem.homepage = 'https://github.com/manifest/xcodeproject'
gem.rubyforge_project = 'xcodeproject'
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.0.0'
gem.add_runtime_dependency 'rake', '>= 10.0'
gem.add_runtime_dependency 'json', '~> 1.8'
gem.add_runtime_dependency 'uuid', '~> 2.3'
gem.add_runtime_dependency 'xcodebuild-rb', '~> 0.2.0'
gem.add_development_dependency 'rspec', '~> 2.0'
gem.add_development_dependency 'rr', '~> 1.0.4'
gem.add_development_dependency 'redcarpet', '~> 2.1.1'
gem.add_development_dependency 'yard', '~> 0.8.2'
end