omniauth-beatport 0.0.1 → 0.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b79da3d52efd389551782856bc312bbcf4cd3662
4
- data.tar.gz: a2e272743c3a13b4d0912760aacce37fea36d473
3
+ metadata.gz: 7f0efcaa2b452353482fdecff5cc33c9f685b1e4
4
+ data.tar.gz: 194e161a79c04afff3cf854031a6b9953c117599
5
5
  SHA512:
6
- metadata.gz: 0006adf2fe9237d0137027afe0f6d750ac369f2afe79136622aacfb529f7449973d8bd45a3a6d24bd65b4befc587b78315d1ea93c9c8e626953154c65c7e7920
7
- data.tar.gz: a8a87e3dd742cc0612dd2e34a2f205ec5597d829a9dd0882c6a174642b396ea086ac00d136776cac119e5381f39b882dd6b762f7e8c7184a408fe759a946982f
6
+ metadata.gz: 5bf68b8a395b679dd9ebc3e2acfaeaa364060b7f95dba7f69c4aa0a03b013384187b95ce5ee96002ff7e90a1510b2b996a8513775bcfa61e4c0c841040e2334b
7
+ data.tar.gz: 5756d480e5fb763628d244ef6b52b08852b7c64c0a8d834621cc09e42e9354879d1c467848fa029d8eb458670c218d26a9bfd87c40579a9338af2db656b87ca3
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module Beatport
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -20,18 +20,17 @@ module OmniAuth
20
20
 
21
21
  info do
22
22
  {
23
+ 'name' => "#{raw_info['first_name']} #{raw_info['last_name']}",
24
+ 'email' => raw_info['register_email_address'],
23
25
  'nickname' => raw_info['username'],
24
26
  'first_name' => raw_info['first_name'],
25
- 'last_name' => raw_info["last_name"],
26
- 'email_address' => raw_info['register_email_address'],
27
- 'paypal_email_address' => raw_info['paypal_email_address'],
28
- 'beta_features' => raw_info['betaFeatures']
27
+ 'last_name' => raw_info["last_name"]
29
28
  }
30
29
  end
31
30
 
32
31
  extra do
33
32
  {
34
- :raw_info => raw_info
33
+ 'raw_info' => raw_info
35
34
  }
36
35
  end
37
36
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-beatport
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateo Murphy