israkel 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/israkel.gemspec +2 -2
- data/lib/israkel/tasks.rb +2 -4
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/israkel.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "israkel"
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Johannes Plunien"]
|
12
|
-
s.date = "2013-02-
|
12
|
+
s.date = "2013-02-12"
|
13
13
|
s.description = "Collection of common rake tasks for the iPhone Simulator like start/stop and some more."
|
14
14
|
s.email = "plu@pqpq.de"
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/israkel/tasks.rb
CHANGED
@@ -15,10 +15,6 @@ module ISRakel
|
|
15
15
|
|
16
16
|
yield self if block_given?
|
17
17
|
|
18
|
-
# Make sure all external commands are in the PATH.
|
19
|
-
xcode_path
|
20
|
-
ios_sim_path
|
21
|
-
|
22
18
|
define_reset_task
|
23
19
|
define_set_language_task
|
24
20
|
define_start_task
|
@@ -96,6 +92,7 @@ module ISRakel
|
|
96
92
|
|
97
93
|
def ios_sim_path
|
98
94
|
@ios_sim_path ||= `which ios-sim`.chomp
|
95
|
+
abort "please install ios-sim" if @ios_sim_path.empty?
|
99
96
|
end
|
100
97
|
|
101
98
|
def plist_to_hash(path)
|
@@ -134,6 +131,7 @@ module ISRakel
|
|
134
131
|
|
135
132
|
def xcode_path
|
136
133
|
@xcode_path ||= `xcode-select --print-path`.chomp
|
134
|
+
abort "please install xcode and the command line tools" if @xcode_path.empty?
|
137
135
|
end
|
138
136
|
|
139
137
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: israkel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: highline
|
@@ -106,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
106
|
version: '0'
|
107
107
|
segments:
|
108
108
|
- 0
|
109
|
-
hash:
|
109
|
+
hash: -3688861042344638997
|
110
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
111
|
none: false
|
112
112
|
requirements:
|