purevolume 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.txt +9 -3
  2. data/lib/purevolume.rb +1 -1
  3. metadata +1 -1
data/README.txt CHANGED
@@ -32,7 +32,13 @@ The Purevolume gem enables posting to Purevolume.com using your email/login-name
32
32
 
33
33
  account = Purevolume::Client.new( 'glue', 'password' )
34
34
 
35
- 2. Get more info about the user's account & check if they are a valid user
35
+ 2. Authenticate the account
36
+
37
+ * Connect up to PureVolume
38
+
39
+ account.authenticate
40
+
41
+ 3. Get more info about the user's account & check if they are a valid user
36
42
 
37
43
  * Check if the user is valid
38
44
 
@@ -44,13 +50,13 @@ The Purevolume gem enables posting to Purevolume.com using your email/login-name
44
50
 
45
51
  response #=> {"rsp"=>{"site"=>{"name"=>"Glue Artist", "profile"=>"http://www.purevolume.com/GlueArtist", "type"=>:artist, "blog"=>"http://www.purevolume.com/GlueArtist/posts"}, "stat"=>"ok"}}
46
52
 
47
- 3. Post your Content
53
+ 4. Post your Content
48
54
 
49
55
  * Both Title and Body are required - Set to a variable to check the response
50
56
 
51
57
  response = account.post("My Title", "My Body")
52
58
 
53
- 4. Get a success or error hash back
59
+ 5. Get a success or error hash back
54
60
 
55
61
  * A Successful response would look like this
56
62
 
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'mechanize'
3
3
 
4
4
  module Purevolume
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
 
7
7
  class Client
8
8
  SITE = 'http://www.purevolume.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purevolume
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordan Dobson