combat 0.8.1 → 0.8.2
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.
- data/bin/combat +2 -2
- metadata +4 -14
data/bin/combat
CHANGED
|
@@ -22,7 +22,7 @@ class Combat < Thor
|
|
|
22
22
|
name = Dir['*.xcodeproj']
|
|
23
23
|
|
|
24
24
|
if name.size == 1
|
|
25
|
-
name.first.gsub(/.xcodeproj/, '')
|
|
25
|
+
name = name.first.gsub(/.xcodeproj/, '')
|
|
26
26
|
type = 'iphone'
|
|
27
27
|
else
|
|
28
28
|
name = Dir['AndroidManifest.xml']
|
|
@@ -55,7 +55,7 @@ class Combat < Thor
|
|
|
55
55
|
system "mkdir -p deployed"
|
|
56
56
|
|
|
57
57
|
if settings[:type] == 'iphone'
|
|
58
|
-
say "Combat has been setup for #{name}. Copy your #{name}.mobileprovision, #{name}.plist and #{name}.ipa to the
|
|
58
|
+
say "Combat has been setup for #{name}. Copy your #{name}.mobileprovision, #{name}.plist and #{name}.ipa to the deployed/ folder"
|
|
59
59
|
else
|
|
60
60
|
say "Combat has been setup for #{name}."
|
|
61
61
|
end
|
metadata
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: combat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 8
|
|
8
|
-
- 1
|
|
9
|
-
version: 0.8.1
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.8.2
|
|
10
6
|
platform: ruby
|
|
11
7
|
authors:
|
|
12
8
|
- Tomislav Car
|
|
@@ -14,8 +10,7 @@ autorequire:
|
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
12
|
|
|
17
|
-
date: 2011-07-28 00:00:00
|
|
18
|
-
default_executable:
|
|
13
|
+
date: 2011-07-28 00:00:00 Z
|
|
19
14
|
dependencies: []
|
|
20
15
|
|
|
21
16
|
description: Deploy your iPhone and Android apps to clients with ease. It's like Capistrano, only for mobile apps.
|
|
@@ -36,7 +31,6 @@ files:
|
|
|
36
31
|
- bin/combat
|
|
37
32
|
- lib/settings.rb
|
|
38
33
|
- templates/template.erb
|
|
39
|
-
has_rdoc: true
|
|
40
34
|
homepage: http://github.com/infinum/combat
|
|
41
35
|
licenses: []
|
|
42
36
|
|
|
@@ -53,21 +47,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
53
47
|
requirements:
|
|
54
48
|
- - ">="
|
|
55
49
|
- !ruby/object:Gem::Version
|
|
56
|
-
segments:
|
|
57
|
-
- 0
|
|
58
50
|
version: "0"
|
|
59
51
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
52
|
none: false
|
|
61
53
|
requirements:
|
|
62
54
|
- - ">="
|
|
63
55
|
- !ruby/object:Gem::Version
|
|
64
|
-
segments:
|
|
65
|
-
- 0
|
|
66
56
|
version: "0"
|
|
67
57
|
requirements: []
|
|
68
58
|
|
|
69
59
|
rubyforge_project:
|
|
70
|
-
rubygems_version: 1.
|
|
60
|
+
rubygems_version: 1.8.6
|
|
71
61
|
signing_key:
|
|
72
62
|
specification_version: 3
|
|
73
63
|
summary: Deploy your iPhone and Android apps to clients with ease. It's like Capistrano, only for mobile apps.
|