newclear 0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +38 -0
  3. data/lib/newclear.rb +17 -0
  4. metadata +74 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 346a3e5d53cc37aa4565a6d233b488b2d9309c12
4
+ data.tar.gz: 3ce692d9f46c5bbf64c4d49e4f7592db50896637
5
+ SHA512:
6
+ metadata.gz: f0459a0ff2781d1a0f6210153d2638b2d7b676f95d10ed82765e116217feb634b09310c87d2eff2cf8a6e7691cfa93bbfc5c9340ef465bce1a9787675dc983a8
7
+ data.tar.gz: a919db83e2a9e2383b636e1420646a5cb68e4a30ca3d5f674d40eee579fd8b900a489718ad0a1c95199449c11b0aae12e63551035edb368aa043054523bce5f8
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # newclear
2
+
3
+ *Newclear Gem* - Your one line and walk solution to a ground up rebuild.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'newclear'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install newclear
18
+
19
+ ## Usage
20
+
21
+ ### Run either of these lovely commands and then take a LONG walk.
22
+
23
+ `[bundle exec] rake nuke`
24
+
25
+ `nuke` clears everything. Which actually just runs `rake clean:all && reset-sim && bundle && pod setup && rake pod:install`
26
+
27
+
28
+ `[bundle exec] rake newclear`
29
+
30
+ `newclear` gives you a new and clear run of your build. This runs `nuke` and then `rake`.
31
+
32
+ ## Contributing
33
+
34
+ 1. Fork it
35
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
36
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
37
+ 4. Push to the branch (`git push origin my-new-feature`)
38
+ 5. Create new Pull Request
data/lib/newclear.rb ADDED
@@ -0,0 +1,17 @@
1
+ # encoding: utf-8
2
+
3
+ unless defined?(Motion::Project::Config)
4
+ raise "This file must be required within a RubyMotion project Rakefile."
5
+ end
6
+
7
+
8
+ desc "Completely resets everything for your project"
9
+ task :nuke do
10
+ `rake clean:all && reset-sim && bundle && pod setup && rake pod:install && rake`
11
+ end
12
+
13
+ desc "Completely reset everythin in project and run"
14
+ task :newclear do
15
+ Rake::Task["nuke"].execute
16
+ `rake`
17
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: newclear
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.3'
5
+ platform: ruby
6
+ authors:
7
+ - Gant
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: reset-sim
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Write a gem description
42
+ email:
43
+ - GantMan@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - README.md
49
+ - lib/newclear.rb
50
+ homepage: ''
51
+ licenses:
52
+ - ''
53
+ metadata: {}
54
+ post_install_message:
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ requirements: []
69
+ rubyforge_project:
70
+ rubygems_version: 2.2.2
71
+ signing_key:
72
+ specification_version: 4
73
+ summary: Write a gem summary
74
+ test_files: []