israkel 0.1.0 → 0.1.1
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/README.md +7 -8
- data/Rakefile +0 -2
- data/VERSION +1 -1
- data/israkel.gemspec +2 -2
- data/lib/israkel/tasks.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -9,24 +9,25 @@ for the iPhone Simulator on Mac OS like ...
|
|
9
9
|
* Start the iPhone Simulator
|
10
10
|
* Stop the iPhone Simulator
|
11
11
|
|
12
|
+
Some of them are stolen from [RestKit](https://github.com/RestKit/RestKit).
|
13
|
+
|
12
14
|
## Example Usage
|
13
15
|
|
14
16
|
You will need to install the gem:
|
15
17
|
|
16
18
|
gem install israkel
|
17
19
|
|
18
|
-
and then
|
20
|
+
and then your `Rakefile` in your project might look like:
|
19
21
|
|
20
22
|
require 'israkel'
|
21
|
-
|
22
|
-
and finally load the rake tasks
|
23
|
-
|
24
23
|
ISRakel::Tasks.new
|
25
24
|
|
25
|
+
That's it. After that you can just run `rake -T` to list the available tasks.
|
26
|
+
|
26
27
|
You can also change the default prefix `simulator`:
|
27
28
|
|
28
|
-
ISRakel::Tasks.new do |
|
29
|
-
|
29
|
+
ISRakel::Tasks.new do |i|
|
30
|
+
i.name = 'ios'
|
30
31
|
end
|
31
32
|
|
32
33
|
## Edit (global) Preferences
|
@@ -38,7 +39,6 @@ tasks to change some settings:
|
|
38
39
|
desc "Change keyboard preferences"
|
39
40
|
task :set_keyboard_preferences do
|
40
41
|
i.edit_preferences do |p|
|
41
|
-
puts p
|
42
42
|
p.merge!({
|
43
43
|
:KeyboardAutocapitalization => false,
|
44
44
|
:KeyboardAutocorrection => false,
|
@@ -46,7 +46,6 @@ tasks to change some settings:
|
|
46
46
|
:KeyboardCheckSpelling => false,
|
47
47
|
:KeyboardPeriodShortcut => false,
|
48
48
|
})
|
49
|
-
puts p
|
50
49
|
end
|
51
50
|
end
|
52
51
|
|
data/Rakefile
CHANGED
@@ -17,7 +17,6 @@ i = ISRakel::Tasks.new
|
|
17
17
|
desc "Change keyboard preferences"
|
18
18
|
task :set_keyboard_preferences do
|
19
19
|
i.edit_preferences do |p|
|
20
|
-
puts p
|
21
20
|
p.merge!({
|
22
21
|
:KeyboardAutocapitalization => false,
|
23
22
|
:KeyboardAutocorrection => false,
|
@@ -25,7 +24,6 @@ task :set_keyboard_preferences do
|
|
25
24
|
:KeyboardCheckSpelling => false,
|
26
25
|
:KeyboardPeriodShortcut => false,
|
27
26
|
})
|
28
|
-
puts p
|
29
27
|
end
|
30
28
|
end
|
31
29
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.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.1.
|
8
|
+
s.version = "0.1.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-01-
|
12
|
+
s.date = "2013-01-18"
|
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
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.1.
|
4
|
+
version: 0.1.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-01-
|
12
|
+
date: 2013-01-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -90,7 +90,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
90
|
version: '0'
|
91
91
|
segments:
|
92
92
|
- 0
|
93
|
-
hash:
|
93
|
+
hash: -2530798291742470515
|
94
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
95
|
none: false
|
96
96
|
requirements:
|