newclear 0.3 → 0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +20 -15
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1022169eb08dd70cab3bdb7f7d113e622922ed7d
|
4
|
+
data.tar.gz: a6099492051aeef29c0e865f389b274076798d65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cf2a3708126fc2451b62c731befc9f32632700dc67db813a95d5a587b3ecb7214868f972a037b809529c91e6f498e19160604ec45ee54355bd415f78944b858
|
7
|
+
data.tar.gz: 05e55d56e0a2d668922b9323740c91531aa290481f3c4ae6e031aef47ef06cead009d0741077b06b1eaca88f322a1389db6f1558365edd43dc0f6bed930bc549
|
data/README.md
CHANGED
@@ -1,33 +1,38 @@
|
|
1
|
-
|
1
|
+
![newclear gem logo](http://i.imgur.com/9zP1VGD.png)
|
2
2
|
|
3
|
-
|
3
|
+
**newclear gem** - Your one line and walk solution to a ground up rebuild.
|
4
4
|
|
5
|
-
##
|
5
|
+
## Usage
|
6
6
|
|
7
|
-
|
7
|
+
### Run either of these lovely commands and then take a _LONG_ walk.
|
8
8
|
|
9
|
-
|
9
|
+
#### nuke
|
10
|
+
`[bundle exec] rake nuke`
|
10
11
|
|
11
|
-
|
12
|
+
`nuke` clears everything. Which actually just runs `rake clean:all && reset-sim && bundle && pod setup && rake pod:install`
|
12
13
|
|
13
|
-
|
14
|
+
#### newclear
|
15
|
+
`[bundle exec] rake newclear`
|
14
16
|
|
15
|
-
|
17
|
+
`newclear` gives you a new and clear run of your build. This runs `nuke` and then `rake`.
|
16
18
|
|
17
|
-
$ gem install newclear
|
18
19
|
|
19
|
-
##
|
20
|
+
## Install
|
20
21
|
|
21
|
-
|
22
|
+
Add this line to your application's Gemfile:
|
22
23
|
|
23
|
-
|
24
|
+
gem 'newclear'
|
24
25
|
|
25
|
-
|
26
|
+
And then execute:
|
26
27
|
|
28
|
+
$ bundle
|
27
29
|
|
28
|
-
|
30
|
+
Or install it yourself as:
|
29
31
|
|
30
|
-
|
32
|
+
$ gem install newclear
|
33
|
+
|
34
|
+
## Dependency
|
35
|
+
We're using Rickert's lovely `reset-sim` gem in our nuke. So be sure to have accessibility turned on for your terminal, as suggested on [the gem's github page](https://github.com/OTGApps/reset-sim#usage)
|
31
36
|
|
32
37
|
## Contributing
|
33
38
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newclear
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.4'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gant
|
@@ -38,7 +38,8 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description: Add the nuke/newclear rake tasks to completely rebuild your RubyMotion
|
42
|
+
project.
|
42
43
|
email:
|
43
44
|
- GantMan@gmail.com
|
44
45
|
executables: []
|
@@ -70,5 +71,5 @@ rubyforge_project:
|
|
70
71
|
rubygems_version: 2.2.2
|
71
72
|
signing_key:
|
72
73
|
specification_version: 4
|
73
|
-
summary:
|
74
|
+
summary: rake task to rebuild entire rubymotion project
|
74
75
|
test_files: []
|