dev_tasks 0.0.23 → 0.0.24
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 +10 -4
- data/lib/spec.json +1 -1
- 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: af61d0ac3dacf7119a34aff79ac3aafe7f3bf7cf
|
4
|
+
data.tar.gz: 6feadc7522384e080385678690773e433fc0f9c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c2278fcbd9fbad09d8c4db21e0c8d3ec9f8b1534d744a9a31f6ef072b7899b93903e4785f06a13bd8483a6c05b52547f506c360aea54519236e78fb5076dd41
|
7
|
+
data.tar.gz: 8d102a97add095147e5a09aecd243bd50c7092d96bd1ca05b78ce4b64868d0b49417e26c2456bb6dcc3a6ecb594b9d7f4d730aeaa42a5c85d7627417857cc8e3
|
data/README
CHANGED
@@ -1,16 +1,22 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
=dev_tasks {<img src="https://badge.fury.io/rb/dev_tasks.png" alt="Gem Version" />}[http://badge.fury.io/rb/dev_tasks]
|
2
|
+
A gem that defines a set of tasks to aid in development of ruby and C# projects.
|
3
|
+
|
3
4
|
==Installation
|
4
5
|
The gem can be installed by the single command
|
5
6
|
gem install dev_task
|
6
7
|
|
7
8
|
==Usage
|
8
|
-
|
9
|
+
This is an example of a simple usage
|
9
10
|
require 'dev_tasks'
|
10
|
-
|
11
11
|
task :default => [:dev_tasks_default] do
|
12
12
|
end
|
13
13
|
|
14
|
+
==Tasks
|
15
|
+
dev_tasks performs a discovery step when it is loaded to determine
|
16
|
+
which commands it can define for each potential task. If one or
|
17
|
+
more commands are discovered for a particular command, that task
|
18
|
+
is defined.
|
19
|
+
|
14
20
|
==License
|
15
21
|
Copyright 2014 Lou Parslow
|
16
22
|
|
data/lib/spec.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"dev_tasks","version":"0.0.
|
1
|
+
{"name":"dev_tasks","version":"0.0.24"}
|