Doa 0.1.1 → 0.1.2
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.
- data/Doa.gemspec +1 -1
- data/README.rdoc +14 -2
- data/VERSION +1 -1
- metadata +1 -1
data/Doa.gemspec
CHANGED
data/README.rdoc
CHANGED
|
@@ -8,13 +8,25 @@ the params to be used in a given context, and the means to easily call the
|
|
|
8
8
|
action using those params.
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
== Installation
|
|
12
|
+
|
|
13
|
+
From Gemcutter.org:
|
|
14
|
+
|
|
15
|
+
gem tumble # for Gemcutter
|
|
16
|
+
sudo gem install Doa
|
|
17
|
+
|
|
18
|
+
Locally:
|
|
19
|
+
|
|
20
|
+
rake build
|
|
21
|
+
sudo gem install pkg/*.gem
|
|
22
|
+
|
|
23
|
+
|
|
11
24
|
== Usage
|
|
12
25
|
|
|
13
26
|
Use `rake rdoc` to generate the RDocs which provides a complete example in the
|
|
14
27
|
Doa module. You can run the specs, which are by example, with `rake spec`.
|
|
15
28
|
|
|
16
|
-
|
|
17
|
-
== Example
|
|
29
|
+
=== Example
|
|
18
30
|
|
|
19
31
|
require 'doa'
|
|
20
32
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|