dev_commands 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5048dbb5f7e214b65aacd57317dd1e4a7cf3741
4
- data.tar.gz: 175d80e8f514196e03d4badafd9fa636a2128c83
3
+ metadata.gz: 5226ff1702d843827a6fc5bce804abdbac01b836
4
+ data.tar.gz: 6aaf1e5b468a99edf293dc58a7eb3117a6cac0ec
5
5
  SHA512:
6
- metadata.gz: cdd92cba4948928bc92ac36ea53b1159640bc59e1fdda5d00fd21ab3a6e52ba93a6cb96aaabb59487ea364cbdfba1ea4ffdcd2f0f59f198149cb25ae01ce8b3e
7
- data.tar.gz: 5fdfae402328d1e406ce261cdea3471814995df54def6386c55b1435402cc4027c781805e87dcdc68d1c78e2056485f48b08c563817134f83d7c57f241face5b
6
+ metadata.gz: 63d53a6df6ce5c38dd9f808cf2e79b5ae4e1b86301b997a4c58b3ec33fea33cb9e1ac8de7f85d8c3d240cd450206a86ee5f06d9e34fbdebf06cd04a4046fa546
7
+ data.tar.gz: b487b239f86e742b70248be2bb332391c624ee6926ff77e3dbde35fbfa062fdd935367b287ae7cbfbfdff1ed95f98ff2028bfab9653fa82fee4a6c54c4461f70
data/README.md CHANGED
@@ -1 +1,32 @@
1
- # dev_commands.gem
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.
@@ -0,0 +1 @@
1
+ require_relative('command.rb')
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.3
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/Timer.rb
62
+ - lib/dev_commands.rb
63
+ - lib/timer.rb
63
64
  - spec/command_spec.rb
64
65
  - LICENSE
65
66
  - README.md