omniauth-bonofa 0.0.2 → 0.0.3

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: 8c35073abbbad090d538bdc8b5774ebec46e3534
4
- data.tar.gz: 477b84a5b4a90c82efc52396a6d0b7f7bf6d77e6
3
+ metadata.gz: 8cf607a941447f8b045d0665fc5eb8b7f2edaab3
4
+ data.tar.gz: 4d89989e33f3b1f50d4f45db8f8b76ee2f25a23e
5
5
  SHA512:
6
- metadata.gz: 98ab71185b57aac6a36359ae302ea31a0af50a51cceae7d64aeecbd7e287d84d01cc223d74ddbf775da47fef52546f05fae0c39a3db585571e074cbb628188f9
7
- data.tar.gz: 1306115fb6bf145affd287a6195eb9c428b3315ac4ea8c9e555580bc35226d8ce5951a9054f748cab265d0427825a941a92652e0d91ca970faf51c63f9382dfa
6
+ metadata.gz: 66f02ab326c5b565c3a805ac50005db476f11df40881b1d163b590b556f8b257c5d6a1a0e966fddffa3280e87c7166aafef313c179264215553f96037b48db9a
7
+ data.tar.gz: 5042d6daa23301ac925ba022fa8a20a409044ed14d4303ecee642e00157b6b75c648cfacd340d7cde52e7e94aa9cf78fc60c4de94857a9780c91a1c8fa14cc64
data/README.md CHANGED
@@ -63,9 +63,11 @@ An example auth hash available in `request.env['omniauth.auth']`:
63
63
  "email" => "info@bonofa.com",
64
64
  "first_name" => "Alexander",
65
65
  "last_name" => "Bierbrauer",
66
+ "birthday" => "1980-01-01",
66
67
  "promotion_code" => "bonofa",
67
68
  "profile_image_url" => "http://www.opportunity-2014.com/assets/profile_image_thumb.png",
68
69
  "language" => "en",
70
+ "baio_package" => "vip_package",
69
71
  },
70
72
  "credentials"=>
71
73
  {
@@ -80,9 +82,21 @@ An example auth hash available in `request.env['omniauth.auth']`:
80
82
  "email" => "info@bonofa.com",
81
83
  "first_name" => "Alexander",
82
84
  "second_name" => "Bierbrauer",
85
+ "birthday" => "1980-01-01",
83
86
  "promotion_code" => "bonofa",
84
87
  "profile_image_url" => "http://www.opportunity-2014.com/assets/profile_image_thumb.png",
85
- "language" => "en",
88
+ "shop_language" => "en",
89
+ "address" => "",
90
+ "address_2" => "",
91
+ "state" => "",
92
+ "city" => "",
93
+ "zip" => "",
94
+ "country" => "de",
95
+ "phone" => "",
96
+ "fax" => "",
97
+ "company" => "Bonofa",
98
+ "title" => "Dev Header",
99
+ "baio_package" => "vip_package",
86
100
  }
87
101
  }
88
102
  }
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module Bonofa
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
@@ -16,6 +16,7 @@ module OmniAuth
16
16
  :birthday => raw_info["birthday"],
17
17
  :language => raw_info["shop_language"],
18
18
  :promotion_code => raw_info["promotion_code"],
19
+ :baio_package => raw_info["baio_package"],
19
20
  :profile_image_url => raw_info["profile_image_url"],
20
21
  }
21
22
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-bonofa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-16 00:00:00.000000000 Z
11
+ date: 2014-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-oauth2
@@ -98,6 +98,7 @@ files:
98
98
  - lib/omniauth/bonofa/configuration.rb
99
99
  - lib/omniauth/bonofa/version.rb
100
100
  - lib/omniauth/strategies/bonofa.rb
101
+ - omniauth-bonofa-0.0.2.gem
101
102
  - omniauth-bonofa.gemspec
102
103
  - tests/bonofa_test.rb
103
104
  - tests/configuration_test.rb