omniauth-mailru-oauth2 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.drone.yml +33 -0
- data/.gitignore +49 -9
- data/CHANGELOG.md +8 -0
- data/Gemfile +1 -1
- data/LICENSE +21 -0
- data/README.md +1 -1
- data/lib/omniauth/mailru_oauth2/version.rb +1 -1
- data/omniauth-mailru-oath2.gemspec +1 -1
- metadata +7 -5
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1b3c258bdf784570f7167883c7fdeb7990da4363
|
4
|
+
data.tar.gz: 3d88177f3923916abf0b7081b7f2f284ea86c45d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 487d45781353647d4179307dc82123106d2c80f5412d6e9df8cec0972a0f36936be343ed1e77a83275045f90ae6d64f985618a56608a328b3be984d34f9e44d5
|
7
|
+
data.tar.gz: e39c78b2b0d3b8f62b739e19daf3ae804d3e1be0825c7c6efa650ad91d25c119e385e1dc5f260776c7da5d47e1dcf269a6c353db506a2b858c8aee78c1b3a563
|
data/.drone.yml
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
build:
|
2
|
+
test:
|
3
|
+
image: abakpress/dind-testing
|
4
|
+
pull: true
|
5
|
+
privileged: true
|
6
|
+
volumes:
|
7
|
+
- /home/data/drone/images:/images
|
8
|
+
- /home/data/drone/gems:/bundle
|
9
|
+
- /home/data/drone/key_cache:/ssh_keys
|
10
|
+
environment:
|
11
|
+
- COMPOSE_FILE_EXT=drone
|
12
|
+
- RUBY_IMAGE_TAG=2.2-latest
|
13
|
+
commands:
|
14
|
+
- wrapdocker docker -v
|
15
|
+
|
16
|
+
- fetch-images
|
17
|
+
--image whilp/ssh-agent
|
18
|
+
--image abakpress/ruby-app:$RUBY_IMAGE_TAG
|
19
|
+
|
20
|
+
- dip ssh add -T -v /ssh_keys -k /ssh_keys/id_rsa
|
21
|
+
- dip provision
|
22
|
+
- dip rspec
|
23
|
+
|
24
|
+
release:
|
25
|
+
image: abakpress/gem-publication
|
26
|
+
pull: true
|
27
|
+
when:
|
28
|
+
event: push
|
29
|
+
branch: master
|
30
|
+
volumes:
|
31
|
+
- /home/data/drone/rubygems:/root/.gem
|
32
|
+
commands:
|
33
|
+
- release-gem --public
|
data/.gitignore
CHANGED
@@ -1,11 +1,51 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
6
12
|
|
7
|
-
|
8
|
-
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
# .env
|
9
15
|
|
10
|
-
|
11
|
-
|
16
|
+
## Specific to RubyMotion:
|
17
|
+
.dat*
|
18
|
+
.repl_history
|
19
|
+
build/
|
20
|
+
*.bridgesupport
|
21
|
+
build-iPhoneOS/
|
22
|
+
build-iPhoneSimulator/
|
23
|
+
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
25
|
+
#
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
29
|
+
#
|
30
|
+
# vendor/Pods/
|
31
|
+
|
32
|
+
## Documentation cache and generated files:
|
33
|
+
/.yardoc/
|
34
|
+
/_yardoc/
|
35
|
+
/doc/
|
36
|
+
/rdoc/
|
37
|
+
|
38
|
+
## Environment normalization:
|
39
|
+
/.bundle/
|
40
|
+
/vendor/bundle
|
41
|
+
/lib/bundler/man/
|
42
|
+
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
45
|
+
# Gemfile.lock
|
46
|
+
# .ruby-version
|
47
|
+
# .ruby-gemset
|
48
|
+
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
|
+
.rvmrc
|
51
|
+
Gemfile.lock
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
# v0.2.0
|
2
|
+
|
3
|
+
* 2018-08-17 [b92ab07](../../commit/b92ab07) - __(Andrew N. Shalaev)__ fix: missing mounting of rubygems in drone
|
4
|
+
* 2018-08-17 [0da2b40](../../commit/0da2b40) - __(Andrew N. Shalaev)__ feature: add autoreleases and drone cfg
|
5
|
+
* 2018-08-16 [29f322c](../../commit/29f322c) - __(Andrew N. Shalaev)__ feature: release of worked version of mailru oauth2 strategy
|
6
|
+
https://jira.railsc.ru/browse/BPC-12836
|
7
|
+
|
8
|
+
* 2018-08-16 [0c29b72](../../commit/0c29b72) - __(Simeon Movchan)__ Initial commit
|
data/Gemfile
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 Abak Press
|
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/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# OmniAuth strategy for Mail.ru
|
2
2
|
|
3
|
-
[![Build Status](https://
|
3
|
+
[![Build Status](https://drone.railsc.ru/api/badges/abak-press/omniauth-mailru-oauth2/status.svg)](https://drone.railsc.ru/abak-press/omniauth-mailru-oauth2)
|
4
4
|
|
5
5
|
OmniAuth strategy for Mail.ru
|
6
6
|
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.version = OmniAuth::MailruOauth2::VERSION
|
10
10
|
spec.authors = ['Andrew Shalaev']
|
11
11
|
spec.email = ['isqad88@gmail.com']
|
12
|
-
spec.homepage = 'https://github.com/
|
12
|
+
spec.homepage = 'https://github.com/abak-press/omniauth-mailru-oauth2'
|
13
13
|
spec.summary = 'OmniAuth strategy for Mail.ru'
|
14
14
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-mailru-oauth2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Shalaev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth
|
@@ -129,10 +129,12 @@ executables: []
|
|
129
129
|
extensions: []
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
|
+
- ".drone.yml"
|
132
133
|
- ".gitignore"
|
133
134
|
- ".rspec"
|
134
|
-
-
|
135
|
+
- CHANGELOG.md
|
135
136
|
- Gemfile
|
137
|
+
- LICENSE
|
136
138
|
- README.md
|
137
139
|
- Rakefile
|
138
140
|
- dip.yml
|
@@ -146,7 +148,7 @@ files:
|
|
146
148
|
- omniauth-mailru-oath2.gemspec
|
147
149
|
- spec/omniauth/strategies/mailru_oauth2_spec.rb
|
148
150
|
- spec/spec_helper.rb
|
149
|
-
homepage: https://github.com/
|
151
|
+
homepage: https://github.com/abak-press/omniauth-mailru-oauth2
|
150
152
|
licenses:
|
151
153
|
- MIT
|
152
154
|
metadata: {}
|
@@ -166,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
168
|
version: '0'
|
167
169
|
requirements: []
|
168
170
|
rubyforge_project:
|
169
|
-
rubygems_version: 2.
|
171
|
+
rubygems_version: 2.6.1
|
170
172
|
signing_key:
|
171
173
|
specification_version: 4
|
172
174
|
summary: OmniAuth strategy for Mail.ru
|