omniauth-jobindex 0.1.0 → 0.1.2

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
  SHA256:
3
- metadata.gz: 90dc2733d0a892359d6545983b793e17bdd409727a8db267e7303e96e6bf9621
4
- data.tar.gz: 5ca7fb60d126a259caf825e5725a6eb32c821f8a2be81744f8810220ad479751
3
+ metadata.gz: 906a112cc914d8c43d8e20f7eda193be9ccc527bf6ccf15237a5ac34ff332a5b
4
+ data.tar.gz: ea4bbb664917b3006338da358217e3b877eafa1928d6a680c05dc82f40c07af5
5
5
  SHA512:
6
- metadata.gz: 1d3c484167c9210d6b19b3bae9abb158ecdfb89accf49cdc4ce4a1dcba5d58381fed73602bb8b4ab7c71429f3f6b857ce3df11be37d613482dc0818796853f4e
7
- data.tar.gz: dd0de9f4b5ff2d50d23ef30acfedfb41cb185a1a4cc1dc4a57bd3de351f65c3fad883b02a3abb21131131e613602bd6629f03ef29e052c16d231c6abaa9c4238
6
+ metadata.gz: d79b702db76bdf893225b0e93894bffae08e5f0b4c0ff3135df0dc996800b04b26b689095b41610728f4e952197853e57909722bf5ed982816f62c5e9becd21f
7
+ data.tar.gz: 4e588743221b686bfea13b16aa8f52837c13f7dad3d9bcd6da21da1b16949b6cfe21b97ad638d2e136dae8db60ddcd157d04ba85baa95ab36e29ca4b1f145013
data/.overcommit.yml ADDED
@@ -0,0 +1,59 @@
1
+ gemfile: ".overgems.rb"
2
+
3
+ concurrency: '%{processors}'
4
+
5
+ PreCommit:
6
+ ALL:
7
+ problem_on_unmodified_line: warn
8
+
9
+ AuthorName:
10
+ enabled: false
11
+
12
+ BerksfileCheck:
13
+ enabled: true
14
+
15
+ BundleCheck:
16
+ enabled: true
17
+
18
+ HardTabs:
19
+ enabled: true
20
+ exclude:
21
+ - vendor/assets/**/*
22
+
23
+ JsonSyntax:
24
+ enabled: true
25
+
26
+ LocalPathsInGemfile:
27
+ enabled: true
28
+
29
+ MergeConflicts:
30
+ enabled: true
31
+
32
+ PryBinding:
33
+ enabled: true
34
+
35
+ RuboCop: &rubocop
36
+ enabled: true
37
+
38
+ # overcommit used 'Rubocop' hook name before 0.25.0 version
39
+ Rubocop:
40
+ <<: *rubocop
41
+
42
+ ShellCheck:
43
+ enabled: true
44
+
45
+ TrailingWhitespace:
46
+ enabled: true
47
+ exclude:
48
+ - vendor/assets/**/*
49
+ - test/fixtures/vcr_cassettes/**/*.yml
50
+ - '**/*.md'
51
+
52
+ TravisLint:
53
+ enabled: true
54
+
55
+ XmlLint:
56
+ enabled: true
57
+
58
+ YamlSyntax:
59
+ enabled: true
data/.overgems.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+ ruby File.read(File.expand_path('.ruby-version', __dir__)).chomp
5
+
6
+ gem 'overcommit'
7
+ gem 'rubocop', '= 0.54'
8
+ gem 'rubocop-rspec'
data/.overgems.rb.lock ADDED
@@ -0,0 +1,41 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ ast (2.4.0)
5
+ childprocess (0.9.0)
6
+ ffi (~> 1.0, >= 1.0.11)
7
+ ffi (1.9.23)
8
+ iniparse (1.4.4)
9
+ overcommit (0.45.0)
10
+ childprocess (~> 0.6, >= 0.6.3)
11
+ iniparse (~> 1.4)
12
+ parallel (1.12.1)
13
+ parser (2.5.1.0)
14
+ ast (~> 2.4.0)
15
+ powerpack (0.1.1)
16
+ rainbow (3.0.0)
17
+ rubocop (0.54.0)
18
+ parallel (~> 1.10)
19
+ parser (>= 2.5)
20
+ powerpack (~> 0.1)
21
+ rainbow (>= 2.2.2, < 4.0)
22
+ ruby-progressbar (~> 1.7)
23
+ unicode-display_width (~> 1.0, >= 1.0.1)
24
+ rubocop-rspec (1.25.1)
25
+ rubocop (>= 0.53.0)
26
+ ruby-progressbar (1.9.0)
27
+ unicode-display_width (1.3.0)
28
+
29
+ PLATFORMS
30
+ ruby
31
+
32
+ DEPENDENCIES
33
+ overcommit
34
+ rubocop (= 0.54)
35
+ rubocop-rspec
36
+
37
+ RUBY VERSION
38
+ ruby 2.5.1p57
39
+
40
+ BUNDLED WITH
41
+ 1.16.1
data/.rubocop.yml ADDED
@@ -0,0 +1,113 @@
1
+ require: rubocop-rspec
2
+
3
+ AllCops:
4
+ Exclude:
5
+ - bin/*
6
+ - config/**/*
7
+ - coverage/**/*
8
+ - db/**/*
9
+ - doc/**/*
10
+ - log/**/*
11
+ - public/**/*
12
+ - script/**/*
13
+ - tmp/**/*
14
+ - vendor/**/*
15
+
16
+ Documentation:
17
+ Exclude:
18
+ - app/api/**/*
19
+ - app/controllers/**/*
20
+ - app/helpers/**/*
21
+
22
+ ClassAndModuleChildren:
23
+ Enabled: false
24
+
25
+ Layout/AlignParameters:
26
+ Enabled: false
27
+ Layout/AlignHash:
28
+ Enabled: false
29
+ Layout/AccessModifierIndentation:
30
+ Enabled: false
31
+ Layout/CommentIndentation:
32
+ Enabled: false
33
+ Layout/MultilineMethodCallIndentation:
34
+ Enabled: indented
35
+ Layout/MultilineMethodCallBraceLayout:
36
+ Enabled: false
37
+ Layout/EmptyLinesAroundClassBody:
38
+ Enabled: false
39
+ Layout/DotPosition:
40
+ EnforcedStyle: trailing
41
+
42
+ Lint/RescueException:
43
+ Exclude:
44
+ - 'lib/tasks/*.rake'
45
+ Lint/AmbiguousBlockAssociation:
46
+ Exclude:
47
+ - 'spec/**/*'
48
+
49
+ Metrics/BlockLength:
50
+ Exclude:
51
+ - 'db/migrate/**/*'
52
+ - 'config/**/*'
53
+ - 'spec/**/*'
54
+ - '**/*.rake'
55
+ Metrics/LineLength:
56
+ Max: 100
57
+ Exclude:
58
+ - 'spec/**/*'
59
+ Metrics/AbcSize:
60
+ Exclude:
61
+ - 'db/migrate/**/*'
62
+ Metrics/MethodLength:
63
+ Enabled: false
64
+
65
+ MethodCalledOnDoEndBlock:
66
+ Enabled: true
67
+ Exclude:
68
+ - 'spec/**/*'
69
+
70
+ Naming/PredicateName:
71
+ Enabled: false
72
+
73
+ Rails:
74
+ Enabled: true
75
+ Rails/HttpPositionalArguments:
76
+ Enabled: false
77
+ Rails/SkipsModelValidations:
78
+ Enabled: false
79
+
80
+ RSpec/AnyInstance:
81
+ Enabled: false
82
+ RSpec/DescribedClass:
83
+ EnforcedStyle: explicit
84
+ RSpec/ExampleLength:
85
+ Enabled: false
86
+ RSpec/ExpectInHook:
87
+ Exclude:
88
+ - 'spec/features/**/*'
89
+ RSpec/HookArgument:
90
+ EnforcedStyle: each
91
+ RSpec/LetSetup:
92
+ Enabled: false
93
+ RSpec/MultipleExpectations:
94
+ Enabled: false
95
+ RSpec/ImplicitExpect:
96
+ EnforcedStyle: is_expected
97
+ RSpec/MessageSpies:
98
+ EnforcedStyle: receive
99
+ RSpec/NestedGroups:
100
+ Enabled: false
101
+ RSpec/NotToNot:
102
+ EnforcedStyle: not_to
103
+ RSpec/VerifiedDoubles:
104
+ Enabled: false
105
+
106
+ Style/FormatStringToken:
107
+ EnforcedStyle: template
108
+ Style/Lambda:
109
+ Enabled: false
110
+ Style/NestedParenthesizedCalls:
111
+ Enabled: false
112
+ Style/GuardClause:
113
+ Severity: warning
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at maciej@litwiniuk.net. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
+
7
+ # Specify your gem's dependencies in omniauth-jobindex.gemspec
8
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,73 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ omniauth-jobindex (0.1.2)
5
+ omniauth (>= 1.1.1)
6
+ omniauth-oauth2 (>= 1.5)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.0)
12
+ diff-lcs (1.3)
13
+ faraday (0.12.2)
14
+ multipart-post (>= 1.2, < 3)
15
+ hashie (3.5.7)
16
+ jwt (1.5.6)
17
+ multi_json (1.13.1)
18
+ multi_xml (0.6.0)
19
+ multipart-post (2.0.0)
20
+ oauth2 (1.4.0)
21
+ faraday (>= 0.8, < 0.13)
22
+ jwt (~> 1.0)
23
+ multi_json (~> 1.3)
24
+ multi_xml (~> 0.5)
25
+ rack (>= 1.2, < 3)
26
+ omniauth (1.8.1)
27
+ hashie (>= 3.4.6, < 3.6.0)
28
+ rack (>= 1.6.2, < 3)
29
+ omniauth-oauth2 (1.5.0)
30
+ oauth2 (~> 1.1)
31
+ omniauth (~> 1.2)
32
+ parallel (1.12.1)
33
+ parser (2.5.1.0)
34
+ ast (~> 2.4.0)
35
+ powerpack (0.1.1)
36
+ rack (2.0.4)
37
+ rainbow (3.0.0)
38
+ rake (10.5.0)
39
+ rspec (3.7.0)
40
+ rspec-core (~> 3.7.0)
41
+ rspec-expectations (~> 3.7.0)
42
+ rspec-mocks (~> 3.7.0)
43
+ rspec-core (3.7.1)
44
+ rspec-support (~> 3.7.0)
45
+ rspec-expectations (3.7.0)
46
+ diff-lcs (>= 1.2.0, < 2.0)
47
+ rspec-support (~> 3.7.0)
48
+ rspec-mocks (3.7.0)
49
+ diff-lcs (>= 1.2.0, < 2.0)
50
+ rspec-support (~> 3.7.0)
51
+ rspec-support (3.7.1)
52
+ rubocop (0.54.0)
53
+ parallel (~> 1.10)
54
+ parser (>= 2.5)
55
+ powerpack (~> 0.1)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ ruby-progressbar (~> 1.7)
58
+ unicode-display_width (~> 1.0, >= 1.0.1)
59
+ ruby-progressbar (1.9.0)
60
+ unicode-display_width (1.3.0)
61
+
62
+ PLATFORMS
63
+ ruby
64
+
65
+ DEPENDENCIES
66
+ bundler (~> 1.16)
67
+ omniauth-jobindex!
68
+ rake (~> 10.0)
69
+ rspec (~> 3.0)
70
+ rubocop (= 0.54)
71
+
72
+ BUNDLED WITH
73
+ 1.16.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Maciej Litwiniuk
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Omniauth Jobindex.dk Strategy
2
+
3
+ Strategy to authenticate with Jobindex.dk via OAuth2 in OmniAuth
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'omniauth-jobindex'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ ## Usage
18
+
19
+ Add following in `config/initializers/omniauth.rb`:
20
+
21
+ ```ruby
22
+ Rails.application.config.middleware.use OmniAuth::Builder do
23
+ provider :jobindex, ENV['JOBINDEX_CLIENT_ID'], ENV['JOBINDEX_CLIENT_SECRET'],
24
+ scope: 'get_oca_cv'
25
+ end
26
+ ```
27
+
28
+ ## Contributing
29
+
30
+ Bug reports and pull requests are welcome on GitHub at https://github.com/RubyOnSaas-wiki/omniauth-jobindex. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
31
+
32
+ ## License
33
+
34
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
35
+
36
+ ## Code of Conduct
37
+
38
+ Everyone interacting in the omniauth-jobindex project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/RubyOnSaas-wiki/omniauth-jobindex/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "omniauth/jobindex"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module OmniAuth
4
+ module Jobindex
5
+ VERSION = '0.1.2'
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # fronzen_string_literal: true
2
+
3
+ require 'omniauth/strategies/jobindex'
4
+
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'omniauth/strategies/oauth2'
4
+ #require 'uri'
5
+
6
+ module OmniAuth
7
+ module Strategies
8
+
9
+ # Jobindex OAuth2 strategy
10
+ class Jobindex < OmniAuth::Strategies::OAuth2
11
+ option :name, 'jobindex'
12
+ option :scope, 'get_oca_cv'
13
+
14
+ option :client_options,
15
+ site: 'https://www.jobindex.dk/',
16
+ authorize_url: '/api/OCA/v1/authorize',
17
+ token_url: '/api/OCA/v1/token'
18
+
19
+ uid { raw_info['email'] }
20
+
21
+ info do
22
+ {
23
+ first_name: raw_info['first_name'],
24
+ middle_name: raw_info['middle_name'],
25
+ last_name: raw_info['last_name'],
26
+ email: raw_info['email'],
27
+ address: raw_info['address'],
28
+ zipcode: raw_info['zipcode'],
29
+ city: raw_info['city'],
30
+ phonenumber: raw_info['phonenumber'],
31
+ sex: raw_info['sex'],
32
+ birthdate: raw_info['birthdate'],
33
+ latest_company: raw_info['latest_company'],
34
+ education_title: raw_info['education_title'],
35
+ education_level: raw_info['education_level'],
36
+ handicap: raw_info['handicap'],
37
+ cv: {
38
+ filename: raw_info.dig('cv', 'filename'),
39
+ filetype: raw_info.dig('cv', 'filetype'),
40
+ content: raw_info.dig('cv', 'content'),
41
+ }
42
+ }
43
+ end
44
+
45
+ extra do
46
+ {
47
+ raw_info: raw_info
48
+ }
49
+ end
50
+
51
+ def build_access_token
52
+ verifier = request.params['code']
53
+ state = request.params['state']
54
+ client.auth_code.get_token(verifier,
55
+ {redirect_uri: callback_url.to_s.split('?').first,
56
+ state: state}.merge(token_params.to_hash(symbolize_keys: true)),
57
+ deep_symbolize(options.auth_token_params))
58
+ end
59
+
60
+ def raw_info
61
+ return @raw_info if @raw_info.present?
62
+ raw_response = client.request(:post, 'https://www.jobindex.dk/api/OCA/v1/get_userdata',
63
+ params: { access_token: access_token.token }).parsed
64
+ @raw_info = raw_response
65
+ end
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'omniauth/jobindex'
4
+
Binary file
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require File.expand_path(
4
+ File.join('..', 'lib', 'omniauth', 'jobindex', 'version'),
5
+ __FILE__
6
+ )
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = 'omniauth-jobindex'
10
+ spec.version = OmniAuth::Jobindex::VERSION
11
+ spec.authors = ['Maciej Litwiniuk']
12
+ spec.email = ['maciej@litwiniuk.net']
13
+
14
+ spec.summary = 'Omniauth Jobindex.dk Strategy'
15
+ spec.homepage = 'https://github.com/RubyOnSaas-wiki/omniauth-jobindex'
16
+ spec.license = 'MIT'
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
+ f.match(%r{^(test|spec|features)/})
20
+ end
21
+ spec.bindir = 'exe'
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ['lib']
24
+
25
+ spec.add_runtime_dependency 'omniauth', '>= 1.1.1'
26
+ spec.add_runtime_dependency 'omniauth-oauth2', '>= 1.5'
27
+
28
+ spec.add_development_dependency 'bundler', '~> 1.16'
29
+ spec.add_development_dependency 'rake', '~> 10.0'
30
+ spec.add_development_dependency 'rspec', '~> 3.0'
31
+ spec.add_development_dependency 'rubocop', '= 0.54'
32
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-jobindex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Litwiniuk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-11 00:00:00.000000000 Z
11
+ date: 2022-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth
@@ -100,8 +100,26 @@ email:
100
100
  executables: []
101
101
  extensions: []
102
102
  extra_rdoc_files: []
103
- files: []
104
- homepage: https://github.com/prograils/omniauth-jobindex
103
+ files:
104
+ - ".overcommit.yml"
105
+ - ".overgems.rb"
106
+ - ".overgems.rb.lock"
107
+ - ".rubocop.yml"
108
+ - CODE_OF_CONDUCT.md
109
+ - Gemfile
110
+ - Gemfile.lock
111
+ - LICENSE.txt
112
+ - README.md
113
+ - Rakefile
114
+ - bin/console
115
+ - bin/setup
116
+ - lib/omniauth-jobindex.rb
117
+ - lib/omniauth/jobindex.rb
118
+ - lib/omniauth/jobindex/version.rb
119
+ - lib/omniauth/strategies/jobindex.rb
120
+ - omniauth-jobindex-0.1.0.gem
121
+ - omniauth-jobindex.gemspec
122
+ homepage: https://github.com/RubyOnSaas-wiki/omniauth-jobindex
105
123
  licenses:
106
124
  - MIT
107
125
  metadata: {}