exvo-auth 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.2
1
+ 0.9.3
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{exvo-auth}
8
- s.version = "0.9.2"
8
+ s.version = "0.9.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jacek Becela"]
12
- s.date = %q{2010-09-03}
12
+ s.date = %q{2010-09-06}
13
13
  s.description = %q{Sign in with Exvo account}
14
14
  s.email = %q{jacek.becela@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -20,7 +20,7 @@ module ExvoAuth::Config
20
20
  end
21
21
 
22
22
  def self.client_id
23
- @@client_id
23
+ @@client_id ||= nil
24
24
  end
25
25
 
26
26
  def self.client_secret=(client_secret)
@@ -28,7 +28,7 @@ module ExvoAuth::Config
28
28
  end
29
29
 
30
30
  def self.client_secret
31
- @@client_secret
31
+ @@client_secret ||= nil
32
32
  end
33
33
 
34
34
  # Set this to false during development ONLY!
@@ -37,10 +37,7 @@ module ExvoAuth::Config
37
37
  end
38
38
 
39
39
  def self.require_ssl
40
- if @@require_ssl.nil?
41
- @@require_ssl = true
42
- else
43
- @@require_ssl
44
- end
40
+ @@require_ssl = true unless defined?(@@require_ssl)
41
+ @@require_ssl
45
42
  end
46
43
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exvo-auth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
4
+ hash: 61
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 2
10
- version: 0.9.2
9
+ - 3
10
+ version: 0.9.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jacek Becela
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-09-03 00:00:00 +02:00
18
+ date: 2010-09-06 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency