dieselup 1.0.0 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +28 -21
- data/lib/dieselup/base.rb +1 -1
- data/lib/dieselup/version.rb +1 -1
- data/lib/dieselup.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52be0c78bd191755e1db7b2fd627f4b72055162f
|
4
|
+
data.tar.gz: cfc96478c4b6d3e32e95587ce048545ba9392954
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afb107d0284da6b0755325b2ecfe32e419f3ccec93c8aa2c2213fa713dbae8ca7132e19d8cf2d4282cdf4b2d63ba0f847dba4bc7333e1114127ef45aad1d30d5
|
7
|
+
data.tar.gz: f686d900163f222416e59bdeff5c13434ecff22c2a8f184606a3e81316f5b9e53c51ee065c37daa1662ff3fd8a249f6f8ce7b40fea5b4cc7a842d071cb6b0e7f
|
data/README.md
CHANGED
@@ -1,36 +1,43 @@
|
|
1
|
-
|
1
|
+
DIESELUP [](https://travis-ci.org/xcopy/dieselup-ruby) [](https://badge.fury.io/rb/dieselup)
|
2
|
+
========
|
2
3
|
|
3
|
-
|
4
|
+
System requirements
|
5
|
+
-------------------
|
4
6
|
|
5
|
-
|
7
|
+
* *nix
|
8
|
+
* Git
|
9
|
+
* RVM
|
6
10
|
|
7
|
-
|
11
|
+
Usage
|
12
|
+
-----
|
8
13
|
|
9
|
-
|
14
|
+
Developers:
|
10
15
|
|
11
|
-
```
|
12
|
-
|
16
|
+
```shell
|
17
|
+
$ cd
|
18
|
+
$ git clone git@github.com:xcopy/dieselup-ruby.git dieselup
|
19
|
+
$ cd dieselup
|
20
|
+
$ bundle
|
21
|
+
$ USERNAME=your-username PASSWORD=your-password bundle exec bin/dieselup <your-topic-ID>
|
13
22
|
```
|
14
23
|
|
15
|
-
|
24
|
+
Common users:
|
16
25
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
$ gem install dieselup
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
+
```shell
|
27
|
+
$ gem install dieselup --no-ri --no-rdoc
|
28
|
+
$ USERNAME=your-username PASSWORD=your-password dieselup <your-topic-ID>
|
29
|
+
```
|
26
30
|
|
27
|
-
|
31
|
+
Cron task example:
|
28
32
|
|
29
|
-
|
33
|
+
```shell
|
34
|
+
*/1 * * * * USERNAME=your-username PASSWORD=your-password dieselup <your-topic-ID> > /dev/null 2>&1
|
35
|
+
```
|
30
36
|
|
31
|
-
|
37
|
+
That's it!
|
32
38
|
|
33
|
-
|
39
|
+
Contributing
|
40
|
+
------------
|
34
41
|
|
35
42
|
1. Fork it ( https://github.com/[my-github-username]/dieselup/fork )
|
36
43
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
data/lib/dieselup/base.rb
CHANGED
data/lib/dieselup/version.rb
CHANGED
data/lib/dieselup.rb
CHANGED