azure_auth 0.0.1 → 0.1.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d79de60821a02f230f1001a89b5a09a1ec1c524
|
|
4
|
+
data.tar.gz: db8c32c221e55750fbfcacfee2430e28c573b5d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a909bec2268a9b653434e72cb84a3d7be842812550ccb16851bed2bc8d42b4da3a1089517568daa5cf7b3e52bc235d59891923eb0627a325d6acba9040c49478
|
|
7
|
+
data.tar.gz: 9136820e4a05a304b64bfa519685b74321dfb309ce3c0378da937cedd3fbd91454c40eb0af4e3f897ed7a14a4fc5beaf6d9f94e5cd5b664dc26c00d9253152db
|
data/azure_auth.gemspec
CHANGED
data/lib/azure_auth.rb
CHANGED
data/lib/azure_auth/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module AzureAuth
|
|
2
|
-
VERSION = "0.0
|
|
3
|
-
end
|
|
2
|
+
VERSION = "0.1.0"
|
|
3
|
+
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
require 'rails/generators'
|
|
2
|
+
|
|
3
|
+
module AzureAuth
|
|
4
|
+
class StepsGenerator < Rails::Generators::Base
|
|
5
|
+
def generate
|
|
6
|
+
copy_file 'auth_controller.rb', 'app/controllers/auth_controller.rb'
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def self.source_root
|
|
10
|
+
File.join(File.dirname(__FILE__), 'templates')
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azure_auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ahmed Ali
|
|
@@ -38,6 +38,20 @@ dependencies:
|
|
|
38
38
|
- - '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rails
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
41
55
|
description: omniauth-azure-ad uses 'Peerialism authentication HUB' web site that
|
|
42
56
|
manages token exchanges with the Azure ACS, encryption etc.
|
|
43
57
|
email:
|
|
@@ -53,9 +67,10 @@ files:
|
|
|
53
67
|
- README.md
|
|
54
68
|
- Rakefile
|
|
55
69
|
- azure_auth.gemspec
|
|
56
|
-
- lib/auth_controller.rb
|
|
57
70
|
- lib/azure_auth.rb
|
|
58
71
|
- lib/azure_auth/version.rb
|
|
72
|
+
- lib/generators/azure_auth/steps/steps_generator.rb
|
|
73
|
+
- lib/generators/azure_auth/steps/templates/auth_controller.rb
|
|
59
74
|
homepage: ''
|
|
60
75
|
licenses:
|
|
61
76
|
- MIT
|