dryrun 0.7.6 → 0.7.7
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.
- checksums.yaml +4 -4
- data/README.md +26 -7
- data/bin/dryrun +1 -1
- data/dryrun.gemspec +1 -1
- data/extras/logo.png +0 -0
- data/lib/dryrun.rb +6 -2
- data/lib/dryrun/android_project.rb +1 -1
- data/lib/dryrun/dryrun_utils.rb +2 -2
- data/lib/dryrun/github.rb +4 -1
- data/lib/dryrun/version.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef39c132c19a33f06d8d992f7f5251ef14438f46
|
4
|
+
data.tar.gz: a35b7ef2671d0ff103983b188e69dc6736c2413d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e5e8ab11d9b32335729cd4f7ae2de261707820c69bb9bdcec27b0838e11302d55258ad29864bdbb9ddfc72af3f7fa1917febc40b16e0f4cbd0b07198251fee8
|
7
|
+
data.tar.gz: 985c0370b9d06cab670bfba1f0e1b0b549a2c4176df068553025d786f2e77836b1bd5489d457720f2d8cc9cdf724fa32f4b768727692d4904c4e16c9bf526824
|
data/README.md
CHANGED
@@ -1,16 +1,27 @@
|
|
1
|
-
|
2
|
-
[](https://travis-ci.org/cesarferreira/dryrun) [](http://badge.fury.io/rb/dryrun)
|
1
|
+

|
3
2
|
|
4
3
|
**Try** any **android library** hosted online **directly** from the **command line**
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
|
6
|
+
### Specs
|
7
|
+
[](https://travis-ci.org/cesarferreira/dryrun) [](http://badge.fury.io/rb/dryrun)
|
8
|
+
|
9
|
+
### Featured in
|
10
|
+
[](http://android-arsenal.com/details/1/2361)
|
11
|
+
[](http://androidweekly.net/issues/issue-200)
|
12
|
+
|
13
|
+
### Show some :heart:
|
14
|
+
[](https://github.com/cesarferreira/dryrun) [](https://github.com/cesarferreira/dryrun/fork) [](https://github.com/cesarferreira/dryrun) [](https://github.com/cesarferreira/dryrun)
|
15
|
+
[](https://twitter.com/cesarmcferreira)
|
16
|
+
|
9
17
|
|
10
18
|
## Usage
|
11
19
|
```bash
|
12
20
|
dryrun https://github.com/cesarferreira/android-helloworld
|
13
21
|
```
|
22
|
+
<p align="center">
|
23
|
+
<img src="extras/usage_v4.gif" width="100%" />
|
24
|
+
</p>
|
14
25
|
|
15
26
|
Wait a few seconds and the app is now opened on your phone :smiley:
|
16
27
|
|
@@ -58,5 +69,13 @@ Options
|
|
58
69
|
10. Delete the `project folder` and the `zip file` when you don't want it anymore
|
59
70
|
|
60
71
|
## Contributing
|
61
|
-
|
62
|
-
|
72
|
+
I welcome and encourage all pull requests. It usually will take me within 24-48 hours to respond to any issue or request. Here are some basic rules to follow to ensure timely addition of your request:
|
73
|
+
1. Match coding style (braces, spacing, etc.) This is best achieved using `CMD`+`Option`+`L` (Reformat code) on Mac (not sure for Windows) with Android Studio defaults.
|
74
|
+
2. If its a feature, bugfix, or anything please only change code to what you specify.
|
75
|
+
3. Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :)
|
76
|
+
4. Pull requests _must_ be made against `develop` branch. Any other branch (unless specified by the maintainers) will get rejected.
|
77
|
+
5. Check for existing [issues](https://github.com/cesarferreira/dryrun/issues) first, before filing an issue.
|
78
|
+
6. Have fun!
|
79
|
+
|
80
|
+
### Created & Maintained By
|
81
|
+
[Cesar Ferreira](https://github.com/cesarferreira) ([@cesarmcferreira](https://www.twitter.com/cesarmcferreira))
|
data/bin/dryrun
CHANGED
data/dryrun.gemspec
CHANGED
data/extras/logo.png
ADDED
Binary file
|
data/lib/dryrun.rb
CHANGED
@@ -9,10 +9,12 @@ require 'dryrun/android_project'
|
|
9
9
|
require "highline/import"
|
10
10
|
require 'openssl'
|
11
11
|
|
12
|
-
module
|
12
|
+
module Dryrun
|
13
13
|
class MainApp
|
14
14
|
def initialize(arguments)
|
15
|
+
|
15
16
|
outdated_verification
|
17
|
+
|
16
18
|
@url = ['-h', '--help', '-v', '--version'].include?(arguments.first) ? nil : arguments.shift
|
17
19
|
|
18
20
|
# defaults
|
@@ -59,7 +61,7 @@ module DryRun
|
|
59
61
|
end
|
60
62
|
|
61
63
|
opts.on('-v', '--version', 'Displays the version') do
|
62
|
-
puts
|
64
|
+
puts Dryrun::VERSION
|
63
65
|
exit
|
64
66
|
end
|
65
67
|
|
@@ -145,6 +147,8 @@ module DryRun
|
|
145
147
|
end
|
146
148
|
|
147
149
|
@url = @url.split("?").first
|
150
|
+
@url.chop! if @url.end_with? '/'
|
151
|
+
|
148
152
|
|
149
153
|
pick_device()
|
150
154
|
|
data/lib/dryrun/dryrun_utils.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'open-uri'
|
2
2
|
require 'dryrun/version'
|
3
3
|
|
4
|
-
module
|
4
|
+
module Dryrun
|
5
5
|
class DryrunUtils
|
6
6
|
|
7
7
|
def self.execute(command)
|
@@ -34,7 +34,7 @@ module DryRun
|
|
34
34
|
|
35
35
|
def self.is_up_to_date
|
36
36
|
latest = get_latest_version
|
37
|
-
latest.to_s <=
|
37
|
+
latest.to_s <= Dryrun::VERSION.to_s
|
38
38
|
end
|
39
39
|
end
|
40
40
|
end
|
data/lib/dryrun/github.rb
CHANGED
@@ -4,10 +4,13 @@ require 'uri'
|
|
4
4
|
require_relative 'dryrun_utils'
|
5
5
|
require 'digest'
|
6
6
|
|
7
|
-
module
|
7
|
+
module Dryrun
|
8
8
|
|
9
9
|
class Github
|
10
10
|
def initialize(url)
|
11
|
+
url = url.split("?").first
|
12
|
+
url.chop! if url.end_with? '/'
|
13
|
+
|
11
14
|
@base_url = url
|
12
15
|
@destination = get_destination
|
13
16
|
end
|
data/lib/dryrun/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = '0.7.
|
1
|
+
module Dryrun
|
2
|
+
VERSION = '0.7.7'
|
3
3
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dryrun
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- cesar ferreira
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -154,6 +154,7 @@ files:
|
|
154
154
|
- Rakefile
|
155
155
|
- bin/dryrun
|
156
156
|
- dryrun.gemspec
|
157
|
+
- extras/logo.png
|
157
158
|
- extras/thumb.png
|
158
159
|
- extras/usage.gif
|
159
160
|
- extras/usage_v2.gif
|