yieldmanager 0.2.2 → 0.2.3
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/README.rdoc +14 -0
- data/VERSION +1 -1
- data/yieldmanager.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -7,6 +7,20 @@ Currently it generates a fresh wsdl from the api.yieldmanager.com site the
|
|
|
7
7
|
first time you use a service (in the future it will use locally-cached
|
|
8
8
|
copies) and re-uses that wsdl for the life of the Yieldmanager::Client object.
|
|
9
9
|
|
|
10
|
+
=== Installation
|
|
11
|
+
|
|
12
|
+
Yieldmanager is available as a gem on gemcutter.org.
|
|
13
|
+
|
|
14
|
+
sudo gem install yieldmanager
|
|
15
|
+
|
|
16
|
+
The project is available for review/forking on github.com
|
|
17
|
+
|
|
18
|
+
git clone git://github.com/billgathen/yieldmanager.git
|
|
19
|
+
|
|
20
|
+
To use in a Rails project, add this to config/environment.rb:
|
|
21
|
+
|
|
22
|
+
config.gem 'yieldmanager'
|
|
23
|
+
|
|
10
24
|
=== Creating a Yieldmanager::Client
|
|
11
25
|
|
|
12
26
|
@ym = Yieldmanager::Client.new(
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
data/yieldmanager.gemspec
CHANGED