cpsn 0.5.1 → 0.5.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.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/bin/cpsn +3 -3
  3. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.1
1
+ 0.5.2
data/bin/cpsn CHANGED
@@ -13,7 +13,7 @@ require 'optparse'
13
13
  require 'logger'
14
14
  require 'set'
15
15
 
16
- @login_url = "https://store.playstation.com/external/index.vm?returnURL=https%3a%2f%2fsecureus.playstation.com%2fRegistration%2fPSNL%2fSignInFrame.aspx"
16
+ $login_url = "https://store.playstation.com/external/index.vm?returnURL=https%3a%2f%2fsecureus.playstation.com%2fRegistration%2fPSNL%2fSignInFrame.aspx"
17
17
  $friend_url = "http://profiles.us.playstation.com/playstation/psn/profile/friends"
18
18
  $json_url = "http://profiles.us.playstation.com/playstation/psn/profile/get_gamer_summary_data?id="
19
19
 
@@ -68,7 +68,7 @@ class Cpsn
68
68
 
69
69
  def get_cookie(username, password)
70
70
  @log.debug("Signing in for new cookie")
71
- page = @agent.get(@login_url)
71
+ page = @agent.get($login_url)
72
72
  login_form = page.forms.first
73
73
  login_form.loginName = username
74
74
  login_form.password = password
@@ -177,7 +177,7 @@ optparse.parse!
177
177
 
178
178
  cpsn = Cpsn.new(options)
179
179
 
180
- if ARGV.length >= 1
180
+ if ARGV.length >= 1 and not ARGV.include? 'all'
181
181
  friend_names = Set.new []
182
182
  args = ARGV[0..-1]
183
183
  for arg in args
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpsn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Bowes
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-22 00:00:00 -05:00
12
+ date: 2009-11-23 00:00:00 -05:00
13
13
  default_executable: cpsn
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency