ipizza-omniauth-provider 0.1.0 → 0.1.1
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/Gemfile +3 -0
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/ipizza-omniauth-provider.gemspec +48 -0
- metadata +22 -5
data/Gemfile
ADDED
data/Rakefile
CHANGED
|
@@ -14,6 +14,7 @@ begin
|
|
|
14
14
|
gemspec.email = 'priit@fraktal.ee'
|
|
15
15
|
gemspec.homepage = 'http://github.com/priithaamer/ipizza-omniauth-provider'
|
|
16
16
|
gemspec.authors = ['Priit Haamer']
|
|
17
|
+
gemspec.add_dependency 'ipizza', '0.4.0'
|
|
17
18
|
end
|
|
18
19
|
rescue LoadError
|
|
19
20
|
puts 'Jeweler not available. Install it with: gem install jeweler'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{ipizza-omniauth-provider}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Priit Haamer"]
|
|
12
|
+
s.date = %q{2010-12-04}
|
|
13
|
+
s.description = %q{ Integrates iPizza authentication to your rails app almost effortlessly.
|
|
14
|
+
}
|
|
15
|
+
s.email = %q{priit@fraktal.ee}
|
|
16
|
+
s.extra_rdoc_files = [
|
|
17
|
+
"README.markdown"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
"Gemfile",
|
|
21
|
+
"README.markdown",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"init.rb",
|
|
25
|
+
"ipizza-omniauth-provider.gemspec",
|
|
26
|
+
"lib/ipizza_omniauth_provider.rb",
|
|
27
|
+
"lib/omniauth/strategies/ipizza.rb"
|
|
28
|
+
]
|
|
29
|
+
s.homepage = %q{http://github.com/priithaamer/ipizza-omniauth-provider}
|
|
30
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
31
|
+
s.require_paths = ["lib"]
|
|
32
|
+
s.rubygems_version = %q{1.3.7}
|
|
33
|
+
s.summary = %q{iPizza authentication strategy provider for Omniauth}
|
|
34
|
+
|
|
35
|
+
if s.respond_to? :specification_version then
|
|
36
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
37
|
+
s.specification_version = 3
|
|
38
|
+
|
|
39
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
40
|
+
s.add_runtime_dependency(%q<ipizza>, ["= 0.4.0"])
|
|
41
|
+
else
|
|
42
|
+
s.add_dependency(%q<ipizza>, ["= 0.4.0"])
|
|
43
|
+
end
|
|
44
|
+
else
|
|
45
|
+
s.add_dependency(%q<ipizza>, ["= 0.4.0"])
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ipizza-omniauth-provider
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Priit Haamer
|
|
@@ -17,8 +17,23 @@ cert_chain: []
|
|
|
17
17
|
|
|
18
18
|
date: 2010-12-04 00:00:00 +02:00
|
|
19
19
|
default_executable:
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: ipizza
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - "="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 15
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
- 4
|
|
33
|
+
- 0
|
|
34
|
+
version: 0.4.0
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
22
37
|
description: " Integrates iPizza authentication to your rails app almost effortlessly.\n"
|
|
23
38
|
email: priit@fraktal.ee
|
|
24
39
|
executables: []
|
|
@@ -28,10 +43,12 @@ extensions: []
|
|
|
28
43
|
extra_rdoc_files:
|
|
29
44
|
- README.markdown
|
|
30
45
|
files:
|
|
46
|
+
- Gemfile
|
|
31
47
|
- README.markdown
|
|
32
48
|
- Rakefile
|
|
33
49
|
- VERSION
|
|
34
50
|
- init.rb
|
|
51
|
+
- ipizza-omniauth-provider.gemspec
|
|
35
52
|
- lib/ipizza_omniauth_provider.rb
|
|
36
53
|
- lib/omniauth/strategies/ipizza.rb
|
|
37
54
|
has_rdoc: true
|