omniauth-visma 0.0.4 → 0.0.5
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 +4 -4
- data/README.md +1 -1
- data/lib/omniauth-visma/version.rb +1 -1
- data/lib/omniauth/strategies/visma.rb +4 -0
- data/spec/omniauth/strategies/visma_spec.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6275d75a6bc6192d047c6cdaf044b49734faf2e4545acc23025c995d720dc9b
|
|
4
|
+
data.tar.gz: a400dafc034f3330993549f13e9510bcac57737c9468bb5396834616d2b848b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca93ecab3eeee34515c6153c962492e802c0ec507573943b3c711f09d9f1fc5af3f3aa9cfd9741298a5ec8cda679b0cf9eabacff1bc816895ebc5981893b3a9f
|
|
7
|
+
data.tar.gz: d64a2f218a7384e30e603d52b2a2e2e65068019c2164220d19d22eab1baef05715b125e865ba0825984eae856a2627378f228250fcf885b918f033a5cb8b378d
|
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@ For more information about the API see https://developer.vismaonline.com/.
|
|
|
12
12
|
provider "visma", ENV['VISMA_CLIENT_ID'], ENV['VISMA_CLIENT_SECRET'], scope: 'offline_access ea:api'
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
The default environment is ```:production```. For testing you can use the sandbox environment by specifying ```:sandbox``` as ```environment``` in the provider setup.
|
|
15
|
+
The default environment is ```:production```. For testing you can use the sandbox environment by specifying ```:sandbox``` as ```environment``` in the provider setup. If changing environment after initalizing then call ```change_environment```.
|
|
16
16
|
|
|
17
17
|
## Credits
|
|
18
18
|
|
|
@@ -49,6 +49,12 @@ describe OmniAuth::Strategies::Visma do
|
|
|
49
49
|
subject.client.authorize_url.should eq("https://identity-sandbox.test.vismaonline.com/connect/authorize")
|
|
50
50
|
end
|
|
51
51
|
|
|
52
|
+
it 'should set environment after init' do
|
|
53
|
+
subject.options.environment = :sandbox
|
|
54
|
+
subject.change_environment
|
|
55
|
+
subject.client.authorize_url.should eq("https://identity-sandbox.test.vismaonline.com/connect/authorize")
|
|
56
|
+
end
|
|
57
|
+
|
|
52
58
|
end
|
|
53
59
|
|
|
54
60
|
end
|