ipizza-omniauth-provider 0.1.4 → 0.1.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.
- data/.gitignore +3 -0
- data/Gemfile +1 -1
- data/Rakefile +2 -21
- data/ipizza-omniauth-provider.gemspec +18 -44
- data/lib/{ipizza_omniauth_provider.rb → ipizza-omniauth-provider.rb} +0 -0
- data/lib/ipizza-omniauth-provider/version.rb +7 -0
- metadata +18 -16
- data/VERSION +0 -1
data/.gitignore
ADDED
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
require '
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
begin
|
|
5
|
-
require 'jeweler'
|
|
6
|
-
Jeweler::Tasks.new do |gemspec|
|
|
7
|
-
gemspec.name = 'ipizza-omniauth-provider'
|
|
8
|
-
|
|
9
|
-
gemspec.summary = 'iPizza authentication strategy provider for Omniauth'
|
|
10
|
-
gemspec.description = <<-DESC
|
|
11
|
-
Integrates iPizza authentication to your rails app almost effortlessly.
|
|
12
|
-
DESC
|
|
13
|
-
|
|
14
|
-
gemspec.email = 'priit@fraktal.ee'
|
|
15
|
-
gemspec.homepage = 'http://github.com/priithaamer/ipizza-omniauth-provider'
|
|
16
|
-
gemspec.authors = ['Priit Haamer']
|
|
17
|
-
gemspec.add_dependency 'ipizza', '0.4.2'
|
|
18
|
-
end
|
|
19
|
-
rescue LoadError
|
|
20
|
-
puts 'Jeweler not available. Install it with: gem install jeweler'
|
|
21
|
-
end
|
|
1
|
+
require 'bundler'
|
|
2
|
+
Bundler::GemHelper.install_tasks
|
|
@@ -1,48 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
-
# -*- encoding: utf-8 -*-
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
require 'ipizza-omniauth-provider/version'
|
|
5
3
|
|
|
6
4
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name
|
|
8
|
-
s.version
|
|
5
|
+
s.name = 'ipizza-omniauth-provider'
|
|
6
|
+
s.version = Ipizza::Omniauth::Provider::VERSION
|
|
7
|
+
s.platform = Gem::Platform::RUBY
|
|
8
|
+
s.authors = ['Priit Haamer']
|
|
9
|
+
s.email = ['priit@fraktal.ee']
|
|
10
|
+
s.homepage = 'http://github.com/priithaamer/ipizza-omniauth-provider'
|
|
11
|
+
s.summary = %q{iPizza authentication strategy for OmniAuth}
|
|
12
|
+
s.description = %q{Integrates iPizza authentication to your rails app almost effortlessly}
|
|
9
13
|
|
|
10
|
-
s.
|
|
11
|
-
|
|
12
|
-
s.
|
|
13
|
-
s.
|
|
14
|
-
}
|
|
15
|
-
s.
|
|
16
|
-
|
|
17
|
-
|
|
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.2"])
|
|
41
|
-
else
|
|
42
|
-
s.add_dependency(%q<ipizza>, ["= 0.4.2"])
|
|
43
|
-
end
|
|
44
|
-
else
|
|
45
|
-
s.add_dependency(%q<ipizza>, ["= 0.4.2"])
|
|
46
|
-
end
|
|
14
|
+
s.rubyforge_project = 'ipizza-omniauth-provider'
|
|
15
|
+
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
+
s.require_paths = ['lib']
|
|
20
|
+
|
|
21
|
+
s.add_dependency(%q<ipizza>, ['= 0.4.4'])
|
|
47
22
|
end
|
|
48
|
-
|
|
File without changes
|
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: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.1.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Priit Haamer
|
|
@@ -26,38 +26,40 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - "="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 7
|
|
30
30
|
segments:
|
|
31
31
|
- 0
|
|
32
32
|
- 4
|
|
33
|
-
-
|
|
34
|
-
version: 0.4.
|
|
33
|
+
- 4
|
|
34
|
+
version: 0.4.4
|
|
35
35
|
type: :runtime
|
|
36
36
|
version_requirements: *id001
|
|
37
|
-
description:
|
|
38
|
-
email:
|
|
37
|
+
description: Integrates iPizza authentication to your rails app almost effortlessly
|
|
38
|
+
email:
|
|
39
|
+
- priit@fraktal.ee
|
|
39
40
|
executables: []
|
|
40
41
|
|
|
41
42
|
extensions: []
|
|
42
43
|
|
|
43
|
-
extra_rdoc_files:
|
|
44
|
-
|
|
44
|
+
extra_rdoc_files: []
|
|
45
|
+
|
|
45
46
|
files:
|
|
47
|
+
- .gitignore
|
|
46
48
|
- Gemfile
|
|
47
49
|
- README.markdown
|
|
48
50
|
- Rakefile
|
|
49
|
-
- VERSION
|
|
50
51
|
- init.rb
|
|
51
52
|
- ipizza-omniauth-provider.gemspec
|
|
52
|
-
- lib/
|
|
53
|
+
- lib/ipizza-omniauth-provider.rb
|
|
54
|
+
- lib/ipizza-omniauth-provider/version.rb
|
|
53
55
|
- lib/omniauth/strategies/ipizza.rb
|
|
54
56
|
has_rdoc: true
|
|
55
57
|
homepage: http://github.com/priithaamer/ipizza-omniauth-provider
|
|
56
58
|
licenses: []
|
|
57
59
|
|
|
58
60
|
post_install_message:
|
|
59
|
-
rdoc_options:
|
|
60
|
-
|
|
61
|
+
rdoc_options: []
|
|
62
|
+
|
|
61
63
|
require_paths:
|
|
62
64
|
- lib
|
|
63
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -80,10 +82,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
82
|
version: "0"
|
|
81
83
|
requirements: []
|
|
82
84
|
|
|
83
|
-
rubyforge_project:
|
|
85
|
+
rubyforge_project: ipizza-omniauth-provider
|
|
84
86
|
rubygems_version: 1.3.7
|
|
85
87
|
signing_key:
|
|
86
88
|
specification_version: 3
|
|
87
|
-
summary: iPizza authentication strategy
|
|
89
|
+
summary: iPizza authentication strategy for OmniAuth
|
|
88
90
|
test_files: []
|
|
89
91
|
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.1.4
|