israkel 0.2.5 → 0.2.6
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/Rakefile +3 -3
- data/VERSION +1 -1
- data/israkel.gemspec +5 -5
- data/lib/israkel/tasks.rb +12 -12
- metadata +7 -7
data/Rakefile
CHANGED
|
@@ -4,12 +4,12 @@ require 'israkel'
|
|
|
4
4
|
|
|
5
5
|
Jeweler::Tasks.new do |gem|
|
|
6
6
|
gem.name = 'israkel'
|
|
7
|
-
gem.homepage = 'http://github.com/
|
|
7
|
+
gem.homepage = 'http://github.com/xing/israkel'
|
|
8
8
|
gem.license = 'MIT'
|
|
9
9
|
gem.summary = %Q{Collection of common rake tasks for the iPhone Simulator.}
|
|
10
10
|
gem.description = %Q{Collection of common rake tasks for the iPhone Simulator like start/stop and some more.}
|
|
11
|
-
gem.email = '
|
|
12
|
-
gem.authors = ['Johannes Plunien']
|
|
11
|
+
gem.email = ['johannes.plunien@xing.com', 'stefan.munz@xing.com']
|
|
12
|
+
gem.authors = ['Johannes Plunien', 'Stefan Munz']
|
|
13
13
|
end
|
|
14
14
|
Jeweler::RubygemsDotOrgTasks.new
|
|
15
15
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.6
|
data/israkel.gemspec
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "israkel"
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["Johannes Plunien"]
|
|
12
|
-
s.date = "2013-02-
|
|
11
|
+
s.authors = ["Johannes Plunien", "Stefan Munz"]
|
|
12
|
+
s.date = "2013-02-27"
|
|
13
13
|
s.description = "Collection of common rake tasks for the iPhone Simulator like start/stop and some more."
|
|
14
|
-
s.email = "
|
|
14
|
+
s.email = ["johannes.plunien@xing.com", "stefan.munz@xing.com"]
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README.md"
|
|
17
17
|
]
|
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
|
25
25
|
"lib/israkel.rb",
|
|
26
26
|
"lib/israkel/tasks.rb"
|
|
27
27
|
]
|
|
28
|
-
s.homepage = "http://github.com/
|
|
28
|
+
s.homepage = "http://github.com/xing/israkel"
|
|
29
29
|
s.licenses = ["MIT"]
|
|
30
30
|
s.require_paths = ["lib"]
|
|
31
31
|
s.rubygems_version = "1.8.24"
|
data/lib/israkel/tasks.rb
CHANGED
|
@@ -65,6 +65,18 @@ module ISRakel
|
|
|
65
65
|
end
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
+
def simulator_path
|
|
69
|
+
@simulator_path ||= File.join(xcode_path, 'Platforms', 'iPhoneSimulator.platform', 'Developer', 'Applications', 'iPhone Simulator.app')
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def simulator_preferences_path
|
|
73
|
+
File.join(simulator_support_path, 'Library', 'Preferences')
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def simulator_support_path
|
|
77
|
+
@simulator_support_path ||= File.join(ENV['HOME'], 'Library', 'Application Support', 'iPhone Simulator', sdk_version)
|
|
78
|
+
end
|
|
79
|
+
|
|
68
80
|
private
|
|
69
81
|
|
|
70
82
|
def edit_file(file)
|
|
@@ -154,18 +166,6 @@ module ISRakel
|
|
|
154
166
|
result
|
|
155
167
|
end
|
|
156
168
|
|
|
157
|
-
def simulator_path
|
|
158
|
-
@simulator_path ||= File.join(xcode_path, 'Platforms', 'iPhoneSimulator.platform', 'Developer', 'Applications', 'iPhone Simulator.app')
|
|
159
|
-
end
|
|
160
|
-
|
|
161
|
-
def simulator_preferences_path
|
|
162
|
-
File.join(simulator_support_path, 'Library', 'Preferences')
|
|
163
|
-
end
|
|
164
|
-
|
|
165
|
-
def simulator_support_path
|
|
166
|
-
@simulator_support_path ||= File.join(ENV['HOME'], 'Library', 'Application Support', 'iPhone Simulator', sdk_version)
|
|
167
|
-
end
|
|
168
|
-
|
|
169
169
|
def xcode_path
|
|
170
170
|
@xcode_path ||= `xcode-select --print-path`.chomp
|
|
171
171
|
abort "please install xcode and the command line tools" if @xcode_path.empty?
|
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
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.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Johannes Plunien
|
|
9
|
+
- Stefan Munz
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2013-02-
|
|
13
|
+
date: 2013-02-27 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: highline
|
|
@@ -77,7 +78,9 @@ dependencies:
|
|
|
77
78
|
version: 1.8.4
|
|
78
79
|
description: Collection of common rake tasks for the iPhone Simulator like start/stop
|
|
79
80
|
and some more.
|
|
80
|
-
email:
|
|
81
|
+
email:
|
|
82
|
+
- johannes.plunien@xing.com
|
|
83
|
+
- stefan.munz@xing.com
|
|
81
84
|
executables: []
|
|
82
85
|
extensions: []
|
|
83
86
|
extra_rdoc_files:
|
|
@@ -91,7 +94,7 @@ files:
|
|
|
91
94
|
- israkel.gemspec
|
|
92
95
|
- lib/israkel.rb
|
|
93
96
|
- lib/israkel/tasks.rb
|
|
94
|
-
homepage: http://github.com/
|
|
97
|
+
homepage: http://github.com/xing/israkel
|
|
95
98
|
licenses:
|
|
96
99
|
- MIT
|
|
97
100
|
post_install_message:
|
|
@@ -104,9 +107,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
104
107
|
- - ! '>='
|
|
105
108
|
- !ruby/object:Gem::Version
|
|
106
109
|
version: '0'
|
|
107
|
-
segments:
|
|
108
|
-
- 0
|
|
109
|
-
hash: 232127238159647738
|
|
110
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
111
|
none: false
|
|
112
112
|
requirements:
|