omniauth-procore 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/lib/omniauth/procore/version.rb +1 -1
- data/omniauth-procore.gemspec +4 -3
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ed52219ecf3b58a767b10eece1b924296ee2796
|
4
|
+
data.tar.gz: 1d3b968e20ca5ed301d324d50515c73d75f6125c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64b509b50fe98ff1ab9c3bfcb56527a74d39fa8a7687bf3c639ed9f41aa5bff7005ed1847c7a5658d20b118f54e740b7bc424c313e0dc2a105b68bbe4adfcbde
|
7
|
+
data.tar.gz: fbabe07e43f24e72532502e65c8cd06dd6a39489f483e0773ec12de34e45ba0708f885e519c4c98fcc81d1ad2df7b018a2e0a42d9bfe095da35589b3a04de18c
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2017 Procore Technologies, Inc.
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/omniauth-procore.gemspec
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
lib = File.expand_path(
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
4
|
+
require "omniauth/procore/version"
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "omniauth-procore"
|
8
|
+
spec.licenses = ["MIT"]
|
8
9
|
spec.version = OmniAuth::Procore::VERSION
|
9
10
|
spec.authors = ["Procore Engineering"]
|
10
11
|
spec.email = ["dev@procore.com"]
|
@@ -20,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
20
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
22
|
spec.require_paths = ["lib"]
|
22
23
|
|
23
|
-
spec.add_dependency
|
24
|
+
spec.add_dependency "omniauth-oauth2", ">= 1.1.1", "< 2.0"
|
24
25
|
|
25
26
|
spec.add_development_dependency "bundler", "~> 1.13"
|
26
27
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-procore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Procore Engineering
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth-oauth2
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- ".rspec"
|
84
84
|
- CODE_OF_CONDUCT.md
|
85
85
|
- Gemfile
|
86
|
+
- LICENSE.txt
|
86
87
|
- README.md
|
87
88
|
- Rakefile
|
88
89
|
- bin/console
|
@@ -92,7 +93,8 @@ files:
|
|
92
93
|
- lib/omniauth/strategies/procore.rb
|
93
94
|
- omniauth-procore.gemspec
|
94
95
|
homepage: https://procore.com
|
95
|
-
licenses:
|
96
|
+
licenses:
|
97
|
+
- MIT
|
96
98
|
metadata: {}
|
97
99
|
post_install_message:
|
98
100
|
rdoc_options: []
|
@@ -110,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
112
|
version: '0'
|
111
113
|
requirements: []
|
112
114
|
rubyforge_project:
|
113
|
-
rubygems_version: 2.
|
115
|
+
rubygems_version: 2.6.8
|
114
116
|
signing_key:
|
115
117
|
specification_version: 4
|
116
118
|
summary: Official OmniAuth strategy for Procore.
|