forked from rayh/xcoder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
xcoder.gemspec
28 lines (24 loc) · 1.13 KB
/
xcoder.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "xcode/version"
Gem::Specification.new do |s|
s.name = "xcoder"
s.version = Xcode::VERSION
s.authors = ["Ray Hilton", "Frank Webber"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/rayh/xcoder"
s.summary = %q{Ruby wrapper around xcodebuild, xcrun, agvtool and pbxproj files}
s.description = %q{Provides a ruby based object-model for parsing project structures and invoking builds}
s.rubyforge_project = "xcoder"
s.files = `git ls-files`.split("\n").reject {|f| f=~/^(?:spec|examples)\//} # Ignore example files
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "multi_json"
s.add_runtime_dependency "plist"
s.add_runtime_dependency "nokogiri"
s.add_runtime_dependency "builder"
s.add_runtime_dependency "rest-client"
s.add_runtime_dependency "colorize"
s.add_runtime_dependency "aws-sdk"
end