ruby-srp 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/lib/srp/client.rb CHANGED
@@ -1,9 +1,7 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/util')
2
-
3
1
  module SRP
4
2
  class Client
5
3
 
6
- include Util
4
+ include SRP::Util
7
5
 
8
6
  attr_reader :salt, :verifier, :username
9
7
 
data/lib/srp/session.rb CHANGED
@@ -1,8 +1,6 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/util')
2
-
3
1
  module SRP
4
2
  class Session
5
- include Util
3
+ include SRP::Util
6
4
  attr_accessor :user, :aa, :bb
7
5
 
8
6
  def initialize(user, aa=nil)
data/ruby-srp.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ruby-srp"
3
- s.version = "0.1.1"
3
+ s.version = "0.1.2"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.authors = ["Azul"]
6
6
  s.email = ["azul@leap.se"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-srp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Azul
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-10-05 00:00:00 Z
18
+ date: 2012-10-11 00:00:00 Z
19
19
  dependencies: []
20
20
 
21
21
  description: SRP client and server based on version 6 of the standard