dev_commands 0.0.3 → 0.0.4
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 +32 -1
- data/lib/dev_commands.rb +1 -0
- data/lib/{Timer.rb → timer.rb} +0 -0
- 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: 5226ff1702d843827a6fc5bce804abdbac01b836
|
|
4
|
+
data.tar.gz: 6aaf1e5b468a99edf293dc58a7eb3117a6cac0ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63d53a6df6ce5c38dd9f808cf2e79b5ae4e1b86301b997a4c58b3ec33fea33cb9e1ac8de7f85d8c3d240cd450206a86ee5f06d9e34fbdebf06cd04a4046fa546
|
|
7
|
+
data.tar.gz: b487b239f86e742b70248be2bb332391c624ee6926ff77e3dbde35fbfa062fdd935367b287ae7cbfbfdff1ed95f98ff2028bfab9653fa82fee4a6c54c4461f70
|
data/README.md
CHANGED
|
@@ -1 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
## dev_commands <img src="https://badge.fury.io/rb/dev_commands.png" alt="Gem Version" />
|
|
2
|
+
|
|
3
|
+
A ruby gem to aid in the definition and execution of system commands
|
|
4
|
+
|
|
5
|
+
### Installation
|
|
6
|
+
|
|
7
|
+
The gem can be installed by the single command
|
|
8
|
+
```
|
|
9
|
+
gem install dev_commands
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
### Usage
|
|
13
|
+
|
|
14
|
+
This is an example of a simple usage
|
|
15
|
+
```
|
|
16
|
+
require 'dev_commands'
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### License
|
|
20
|
+
Copyright 2014-2015 Lou Parslow
|
|
21
|
+
|
|
22
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
23
|
+
you may not use this file except in compliance with the License.
|
|
24
|
+
You may obtain a copy of the License at
|
|
25
|
+
|
|
26
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
27
|
+
|
|
28
|
+
Unless required by applicable law or agreed to in writing, software
|
|
29
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
30
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
31
|
+
See the License for the specific language governing permissions and
|
|
32
|
+
limitations under the License.
|
data/lib/dev_commands.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require_relative('command.rb')
|
data/lib/{Timer.rb → timer.rb}
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dev_commands
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lou Parslow
|
|
@@ -59,7 +59,8 @@ extensions: []
|
|
|
59
59
|
extra_rdoc_files: []
|
|
60
60
|
files:
|
|
61
61
|
- lib/command.rb
|
|
62
|
-
- lib/
|
|
62
|
+
- lib/dev_commands.rb
|
|
63
|
+
- lib/timer.rb
|
|
63
64
|
- spec/command_spec.rb
|
|
64
65
|
- LICENSE
|
|
65
66
|
- README.md
|