iam 0.3.2 → 0.3.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.
- data/README.md +1 -1
- data/lib/iam.rb +5 -9
- data/lib/iam/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
data/lib/iam.rb
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
require 'rack'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
require 'iam/engine' if defined?(Rails::Engine)
|
|
3
|
+
require 'iam/version'
|
|
4
|
+
require 'iam/configuration'
|
|
5
|
+
require 'iam/engine' if defined?(Rails::Engine)
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
require 'iam/authorization_provider/factory'
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
else
|
|
12
|
-
raise Exception.new("Iam config file does not exist. You may fix it with: rails g iam:initializer")
|
|
13
|
-
end
|
|
9
|
+
require 'rack/assets_middleware'
|
data/lib/iam/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iam
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-02-
|
|
12
|
+
date: 2013-02-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -296,7 +296,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
296
296
|
version: '0'
|
|
297
297
|
requirements: []
|
|
298
298
|
rubyforge_project: iam
|
|
299
|
-
rubygems_version: 1.8.
|
|
299
|
+
rubygems_version: 1.8.23
|
|
300
300
|
signing_key:
|
|
301
301
|
specification_version: 3
|
|
302
302
|
summary: Simple account switcher for Rails.
|