dev 2.0.279 → 2.0.280

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/apps/xcodebuild.rb +7 -4
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a7db5d3d287bc2b579d592164b0f23c2d4eccd02
4
- data.tar.gz: b75080cdf046bceab8bc1cc7288dd627ba0d6ab5
3
+ metadata.gz: baee4013223a25473c4fadf1b8e10d4f107e272f
4
+ data.tar.gz: b0baa996a1789d7a4b8d144e0328cd0f823e3da1
5
5
  SHA512:
6
- metadata.gz: c4cfcff1f681491ae2e3a080ef4b6d869d47a2d73f7e73a880fd31d8280fda7dccb8fe8bc77d00f36e1cd2d6cab6b2f0c43fa2c796dcd2399488b708dd3de6ca
7
- data.tar.gz: de9e5276eb28639d5c5004825c9c12f087ca5c376fd579e45b89a15b2fb7a6531e6c034875cac7554a74ccc98e500000a02f95465dca3edc2849152f80be5ac6
6
+ metadata.gz: dab773ee78bbe3c4862c862179360b80dc691b22f773f0a17540bb8bc1a5a41fe05829a2f1bb94639ad77d64e10222811077f3167109cc63296fa2f013d344d9
7
+ data.tar.gz: 7cbd642fd0bd3d0c2bb1c599f05aad44df8e8530bd2420a1904f2a93c37860e83c1804099ad6bf07e630c7f9acc94c6439952aae25a30c1c1a5820ecd945ed11
@@ -5,9 +5,12 @@
5
5
  class XCodeBuild < Hash
6
6
  def self.get_build_commands xcodeproj_filename
7
7
  build_commands=Array.new
8
- name=xcodeproj_filename.gsub('.xcodeproj','')
9
- build_commands << "xcodebuild clean -scheme #{name} -destination \"name=iPhone 6\""
10
- build_commands << "xcodebuild build -scheme #{name} -destination \"name=iPhone 6\""
11
- build_commands
8
+ build_command=Command.new('xcodebuild')
9
+ build_command[:directory] = File.dirname(xcodeproj_filename)
10
+
11
+ #name=xcodeproj_filename.gsub('.xcodeproj','')
12
+ #build_commands << "xcodebuild clean -scheme #{name} -destination \"name=iPhone 6\""
13
+ #build_commands << "xcodebuild build -scheme #{name} -destination \"name=iPhone 6\""
14
+ build_commands << build_command
12
15
  end
13
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.279
4
+ version: 2.0.280
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow