omniauth-sberbank 1.0.4

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.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +21 -0
  3. data/LICENSE +21 -0
  4. data/README.md +84 -0
  5. data/examples/README.md +3 -0
  6. data/examples/blog/.gitignore +23 -0
  7. data/examples/blog/Gemfile +62 -0
  8. data/examples/blog/Gemfile.lock +247 -0
  9. data/examples/blog/README.md +24 -0
  10. data/examples/blog/Rakefile +6 -0
  11. data/examples/blog/app/assets/config/manifest.js +3 -0
  12. data/examples/blog/app/assets/images/.keep +0 -0
  13. data/examples/blog/app/assets/javascripts/application.js +15 -0
  14. data/examples/blog/app/assets/javascripts/cable.js +13 -0
  15. data/examples/blog/app/assets/javascripts/channels/.keep +0 -0
  16. data/examples/blog/app/assets/javascripts/session.coffee +3 -0
  17. data/examples/blog/app/assets/javascripts/welcome.coffee +3 -0
  18. data/examples/blog/app/assets/stylesheets/application.css +15 -0
  19. data/examples/blog/app/assets/stylesheets/session.scss +3 -0
  20. data/examples/blog/app/assets/stylesheets/welcome.scss +3 -0
  21. data/examples/blog/app/channels/application_cable/channel.rb +4 -0
  22. data/examples/blog/app/channels/application_cable/connection.rb +4 -0
  23. data/examples/blog/app/controllers/application_controller.rb +3 -0
  24. data/examples/blog/app/controllers/concerns/.keep +0 -0
  25. data/examples/blog/app/controllers/sessions_controller.rb +22 -0
  26. data/examples/blog/app/controllers/welcome_controller.rb +26 -0
  27. data/examples/blog/app/helpers/application_helper.rb +2 -0
  28. data/examples/blog/app/helpers/session_helper.rb +2 -0
  29. data/examples/blog/app/helpers/welcome_helper.rb +2 -0
  30. data/examples/blog/app/jobs/application_job.rb +2 -0
  31. data/examples/blog/app/mailers/application_mailer.rb +4 -0
  32. data/examples/blog/app/models/application_record.rb +3 -0
  33. data/examples/blog/app/models/concerns/.keep +0 -0
  34. data/examples/blog/app/views/layouts/application.html.erb +14 -0
  35. data/examples/blog/app/views/layouts/mailer.html.erb +13 -0
  36. data/examples/blog/app/views/layouts/mailer.text.erb +1 -0
  37. data/examples/blog/app/views/session/create.html.erb +2 -0
  38. data/examples/blog/app/views/welcome/index.html.erb +7 -0
  39. data/examples/blog/bin/bundle +3 -0
  40. data/examples/blog/bin/rails +9 -0
  41. data/examples/blog/bin/rake +9 -0
  42. data/examples/blog/bin/setup +38 -0
  43. data/examples/blog/bin/spring +17 -0
  44. data/examples/blog/bin/update +29 -0
  45. data/examples/blog/bin/yarn +11 -0
  46. data/examples/blog/config.ru +5 -0
  47. data/examples/blog/config/application.rb +18 -0
  48. data/examples/blog/config/boot.rb +3 -0
  49. data/examples/blog/config/cable.yml +10 -0
  50. data/examples/blog/config/database.yml +25 -0
  51. data/examples/blog/config/environment.rb +5 -0
  52. data/examples/blog/config/environments/development.rb +54 -0
  53. data/examples/blog/config/environments/production.rb +91 -0
  54. data/examples/blog/config/environments/test.rb +42 -0
  55. data/examples/blog/config/initializers/application_controller_renderer.rb +6 -0
  56. data/examples/blog/config/initializers/assets.rb +14 -0
  57. data/examples/blog/config/initializers/backtrace_silencers.rb +7 -0
  58. data/examples/blog/config/initializers/cookies_serializer.rb +5 -0
  59. data/examples/blog/config/initializers/filter_parameter_logging.rb +4 -0
  60. data/examples/blog/config/initializers/inflections.rb +16 -0
  61. data/examples/blog/config/initializers/mime_types.rb +4 -0
  62. data/examples/blog/config/initializers/omniauth.rb +33 -0
  63. data/examples/blog/config/initializers/wrap_parameters.rb +14 -0
  64. data/examples/blog/config/locales/en.yml +33 -0
  65. data/examples/blog/config/puma.rb +56 -0
  66. data/examples/blog/config/routes.rb +14 -0
  67. data/examples/blog/config/secrets.yml +63 -0
  68. data/examples/blog/config/spring.rb +6 -0
  69. data/examples/blog/db/seeds.rb +7 -0
  70. data/examples/blog/lib/assets/.keep +0 -0
  71. data/examples/blog/lib/tasks/.keep +0 -0
  72. data/examples/blog/log/.keep +0 -0
  73. data/examples/blog/package.json +5 -0
  74. data/examples/blog/public/404.html +67 -0
  75. data/examples/blog/public/422.html +67 -0
  76. data/examples/blog/public/500.html +66 -0
  77. data/examples/blog/public/apple-touch-icon-precomposed.png +0 -0
  78. data/examples/blog/public/apple-touch-icon.png +0 -0
  79. data/examples/blog/public/favicon.ico +0 -0
  80. data/examples/blog/public/robots.txt +1 -0
  81. data/examples/blog/test/application_system_test_case.rb +5 -0
  82. data/examples/blog/test/controllers/.keep +0 -0
  83. data/examples/blog/test/controllers/session_controller_test.rb +9 -0
  84. data/examples/blog/test/controllers/welcome_controller_test.rb +9 -0
  85. data/examples/blog/test/fixtures/.keep +0 -0
  86. data/examples/blog/test/fixtures/files/.keep +0 -0
  87. data/examples/blog/test/helpers/.keep +0 -0
  88. data/examples/blog/test/integration/.keep +0 -0
  89. data/examples/blog/test/mailers/.keep +0 -0
  90. data/examples/blog/test/models/.keep +0 -0
  91. data/examples/blog/test/system/.keep +0 -0
  92. data/examples/blog/test/test_helper.rb +9 -0
  93. data/examples/blog/tmp/.keep +0 -0
  94. data/examples/blog/vendor/.keep +0 -0
  95. data/lib/omniauth-sberbank.rb +14 -0
  96. data/lib/omniauth/sberbank/version.rb +7 -0
  97. data/lib/omniauth/strategies/sberbank.rb +193 -0
  98. data/omniauth-sberbank.gemspec +20 -0
  99. metadata +160 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 645f29b8f8a6caf1db8ce7bea82d793b9b68e56b2fc326cc748ae1f0245c5918
4
+ data.tar.gz: e5b0ea606ff2bbaa7d0222bee88acf9b385c80c841ca8a7a037b09b3f1d31f55
5
+ SHA512:
6
+ metadata.gz: ac81d85944eef8bbf201078a3a410467ffd268a2de3d7f07d24b96411d5b2b06db0ff76df42b84c28d2c176c17aa862ddf12be9e9f4f5ef23c61d394f82286c2
7
+ data.tar.gz: b5f6a6002b54a49edd29fff08984544264d194dd07ecf5f8391894886e036b044a0921408b40a006eeaec10bcc21bcc5f75798c18e99192e46fa7084c51f50d6
data/Gemfile ADDED
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ group :development do
8
+ gem 'rubocop', require: false
9
+ end
10
+
11
+ group :pry do
12
+ gem 'pry'
13
+ gem 'pry-byebug'
14
+ gem 'pry-rails'
15
+ end
16
+
17
+ group :test do
18
+ gem 'rspec'
19
+ gem 'simplecov'
20
+ gem 'webmock'
21
+ end
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021-2021 Sergei Baksheev
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 ADDED
@@ -0,0 +1,84 @@
1
+ # OmniAuth Sberbank
2
+
3
+ This is the unofficial [OmniAuth](https://github.com/intridea/omniauth) strategy for authenticating to SberID via OAuth.
4
+ To use it, you'll need to sign up for an OAuth2 Application ID and Secret
5
+ on the [Sberbank Developers Page](https://developer.sberbank.ru/).
6
+
7
+ ## Installing
8
+
9
+ Add to your `Gemfile`:
10
+
11
+ ```ruby
12
+ gem 'omniauth-sberbank'
13
+ ```
14
+
15
+ Then `bundle install`
16
+
17
+ ## Usage
18
+
19
+ `OmniAuth::Strategies::Sberbank` is simply a Rack middleware.
20
+
21
+ Here's a quick example, adding the middleware to a Rails app in `config/initializers/omniauth.rb`:
22
+
23
+ ```ruby
24
+ provider :sberbank,
25
+ client_id: '11111111-1111-1111-1111-1111111111111111',
26
+ client_secret: 'YOURSECRET',
27
+ response_type: 'code',
28
+ client_type: 'PRIVATE',
29
+ client_options: { ssl: { client_key: client_key, client_cert: client_cert } },
30
+ scope: 'openid name email mobile',
31
+ callback_path: '/callback',
32
+ grant_type: 'client_credentials'
33
+ ```
34
+
35
+ [See the example Rails app](https://github.com/insales/omniauth-sberbank/blob/master/examples).
36
+
37
+ ## Configuring
38
+
39
+ You can configure several options, which you pass in to the `provider` method via a `Hash`
40
+ All variants see in [Sber documentation](https://developer.sberbank.ru/doc/v1/sberbank-id/info)
41
+
42
+
43
+ ## Authentication Hash
44
+
45
+ Here's an example *Auth Hash* available in `request.env['omniauth.auth']`:
46
+
47
+ ```ruby
48
+ {"provider"=>"sberbank",
49
+ "uid"=>"1",
50
+ "info"=>
51
+ { "name": "Ivanov Ivan Ivanovich",
52
+ "phone_number": "+7 (800) 2223535",
53
+ "email": "DEMO@DEMO.COM",
54
+ "first_name": "IVAN",
55
+ "last_name": "Ivanov",
56
+ "middle_name": "Ivanovich",
57
+ "id": "1111-1111111111"},
58
+ "credentials"=>
59
+ {"token"=>
60
+ "187041a618229fdaf16613e96e1caabc1e86e46bbfad228de41520e63fe45873684c365a14417289599f3",
61
+ "expires_at"=>1381826003,
62
+ "expires"=>true},
63
+ "extra"=>
64
+ {"raw_info"=>
65
+ {}}
66
+ ```
67
+
68
+ The precise information available may depend on the permissions which you request.
69
+
70
+ ## Supported Rubies
71
+
72
+ Tested with the following Ruby versions:
73
+
74
+ - Ruby MRI (2.6.6+)
75
+
76
+ ## Contributing to omniauth-sberbank
77
+
78
+ * Fork, fix, then send me a pull request.
79
+
80
+ ## License
81
+
82
+ Copyright: 2021-2021 Sergei Baksheev (sergbaksheev825@gmail.com)
83
+
84
+ This library is distributed under the MIT license. Please see the LICENSE file.
@@ -0,0 +1,3 @@
1
+ It's simply rails app to test sberbank authorization
2
+
3
+ You can just run it by 'bin/rails s'. And than put it to web by ['ngrok'](https://ngrok.com/) (for example)
@@ -0,0 +1,23 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+
20
+ /node_modules
21
+ /yarn-error.log
22
+
23
+ .byebug_history
@@ -0,0 +1,62 @@
1
+ source 'https://rubygems.org'
2
+
3
+ git_source(:github) do |repo_name|
4
+ repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5
+ "https://github.com/#{repo_name}.git"
6
+ end
7
+
8
+ gem 'omniauth'
9
+ gem 'omniauth-sberbank'
10
+ gem 'omniauth-vkontakte', '~> 1.6.1'
11
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
12
+ gem 'rails', '~> 5.1.0'
13
+ # Use sqlite3 as the database for Active Record
14
+ gem 'sqlite3'
15
+ # Use Puma as the app server
16
+ gem 'puma', '~> 3.7'
17
+ # Use SCSS for stylesheets
18
+ gem 'sass-rails', '~> 5.0'
19
+ # Use Uglifier as compressor for JavaScript assets
20
+ gem 'uglifier', '>= 1.3.0'
21
+ # See https://github.com/rails/execjs#readme for more supported runtimes
22
+ # gem 'therubyracer', platforms: :ruby
23
+
24
+ # Use CoffeeScript for .coffee assets and views
25
+ gem 'coffee-rails', '~> 4.2'
26
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
27
+ gem 'turbolinks', '~> 5'
28
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
29
+ gem 'jbuilder', '~> 2.5'
30
+ # Use Redis adapter to run Action Cable in production
31
+ # gem 'redis', '~> 3.0'
32
+ # Use ActiveModel has_secure_password
33
+ # gem 'bcrypt', '~> 3.1.7'
34
+
35
+ # Use Capistrano for deployment
36
+ # gem 'capistrano-rails', group: :development
37
+
38
+ group :development, :test do
39
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
40
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
41
+ # Adds support for Capybara system testing and selenium driver
42
+ gem 'capybara', '~> 2.13.0'
43
+ gem 'selenium-webdriver'
44
+ end
45
+
46
+ group :development do
47
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
48
+ gem 'web-console', '>= 3.3.0'
49
+ gem 'listen', '>= 3.0.5', '< 3.2'
50
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
51
+ gem 'spring'
52
+ gem 'spring-watcher-listen', '~> 2.0.0'
53
+ end
54
+
55
+ group :pry do
56
+ gem 'pry'
57
+ gem 'pry-byebug'
58
+ gem 'pry-rails'
59
+ end
60
+
61
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
62
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
@@ -0,0 +1,247 @@
1
+ PATH
2
+ remote: ../omniauth-sberbank
3
+ specs:
4
+ omniauth-sberbank (0.0.0)
5
+ omniauth-oauth2 (>= 1.5, <= 1.7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (5.1.7)
11
+ actionpack (= 5.1.7)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (~> 0.6.1)
14
+ actionmailer (5.1.7)
15
+ actionpack (= 5.1.7)
16
+ actionview (= 5.1.7)
17
+ activejob (= 5.1.7)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ rails-dom-testing (~> 2.0)
20
+ actionpack (5.1.7)
21
+ actionview (= 5.1.7)
22
+ activesupport (= 5.1.7)
23
+ rack (~> 2.0)
24
+ rack-test (>= 0.6.3)
25
+ rails-dom-testing (~> 2.0)
26
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
+ actionview (5.1.7)
28
+ activesupport (= 5.1.7)
29
+ builder (~> 3.1)
30
+ erubi (~> 1.4)
31
+ rails-dom-testing (~> 2.0)
32
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
+ activejob (5.1.7)
34
+ activesupport (= 5.1.7)
35
+ globalid (>= 0.3.6)
36
+ activemodel (5.1.7)
37
+ activesupport (= 5.1.7)
38
+ activerecord (5.1.7)
39
+ activemodel (= 5.1.7)
40
+ activesupport (= 5.1.7)
41
+ arel (~> 8.0)
42
+ activesupport (5.1.7)
43
+ concurrent-ruby (~> 1.0, >= 1.0.2)
44
+ i18n (>= 0.7, < 2)
45
+ minitest (~> 5.1)
46
+ tzinfo (~> 1.1)
47
+ addressable (2.7.0)
48
+ public_suffix (>= 2.0.2, < 5.0)
49
+ arel (8.0.0)
50
+ bindex (0.8.1)
51
+ builder (3.2.4)
52
+ byebug (11.1.3)
53
+ capybara (2.13.0)
54
+ addressable
55
+ mime-types (>= 1.16)
56
+ nokogiri (>= 1.3.3)
57
+ rack (>= 1.0.0)
58
+ rack-test (>= 0.5.4)
59
+ xpath (~> 2.0)
60
+ childprocess (3.0.0)
61
+ coderay (1.1.3)
62
+ coffee-rails (4.2.2)
63
+ coffee-script (>= 2.2.0)
64
+ railties (>= 4.0.0)
65
+ coffee-script (2.4.1)
66
+ coffee-script-source
67
+ execjs
68
+ coffee-script-source (1.12.2)
69
+ concurrent-ruby (1.1.8)
70
+ crass (1.0.6)
71
+ erubi (1.10.0)
72
+ execjs (2.7.0)
73
+ faraday (1.4.1)
74
+ faraday-excon (~> 1.1)
75
+ faraday-net_http (~> 1.0)
76
+ faraday-net_http_persistent (~> 1.1)
77
+ multipart-post (>= 1.2, < 3)
78
+ ruby2_keywords (>= 0.0.4)
79
+ faraday-excon (1.1.0)
80
+ faraday-net_http (1.0.1)
81
+ faraday-net_http_persistent (1.1.0)
82
+ ffi (1.15.0)
83
+ globalid (0.4.2)
84
+ activesupport (>= 4.2.0)
85
+ hashie (4.1.0)
86
+ i18n (1.8.9)
87
+ concurrent-ruby (~> 1.0)
88
+ jbuilder (2.11.2)
89
+ activesupport (>= 5.0.0)
90
+ jwt (2.2.3)
91
+ listen (3.1.5)
92
+ rb-fsevent (~> 0.9, >= 0.9.4)
93
+ rb-inotify (~> 0.9, >= 0.9.7)
94
+ ruby_dep (~> 1.2)
95
+ loofah (2.9.0)
96
+ crass (~> 1.0.2)
97
+ nokogiri (>= 1.5.9)
98
+ mail (2.7.1)
99
+ mini_mime (>= 0.1.1)
100
+ method_source (1.0.0)
101
+ mime-types (3.3.1)
102
+ mime-types-data (~> 3.2015)
103
+ mime-types-data (3.2021.0225)
104
+ mini_mime (1.0.2)
105
+ mini_portile2 (2.5.0)
106
+ minitest (5.14.4)
107
+ multi_json (1.15.0)
108
+ multi_xml (0.6.0)
109
+ multipart-post (2.1.1)
110
+ nio4r (2.5.7)
111
+ nokogiri (1.11.1)
112
+ mini_portile2 (~> 2.5.0)
113
+ racc (~> 1.4)
114
+ oauth2 (1.4.7)
115
+ faraday (>= 0.8, < 2.0)
116
+ jwt (>= 1.0, < 3.0)
117
+ multi_json (~> 1.3)
118
+ multi_xml (~> 0.5)
119
+ rack (>= 1.2, < 3)
120
+ omniauth (1.9.1)
121
+ hashie (>= 3.4.6)
122
+ rack (>= 1.6.2, < 3)
123
+ omniauth-oauth2 (1.7.0)
124
+ oauth2 (~> 1.4)
125
+ omniauth (~> 1.9)
126
+ omniauth-vkontakte (1.6.1)
127
+ omniauth-oauth2 (>= 1.5, <= 1.7.0)
128
+ pry (0.13.1)
129
+ coderay (~> 1.1)
130
+ method_source (~> 1.0)
131
+ pry-byebug (3.9.0)
132
+ byebug (~> 11.0)
133
+ pry (~> 0.13.0)
134
+ pry-rails (0.3.9)
135
+ pry (>= 0.10.4)
136
+ public_suffix (4.0.6)
137
+ puma (3.12.6)
138
+ racc (1.5.2)
139
+ rack (2.2.3)
140
+ rack-test (1.1.0)
141
+ rack (>= 1.0, < 3)
142
+ rails (5.1.7)
143
+ actioncable (= 5.1.7)
144
+ actionmailer (= 5.1.7)
145
+ actionpack (= 5.1.7)
146
+ actionview (= 5.1.7)
147
+ activejob (= 5.1.7)
148
+ activemodel (= 5.1.7)
149
+ activerecord (= 5.1.7)
150
+ activesupport (= 5.1.7)
151
+ bundler (>= 1.3.0)
152
+ railties (= 5.1.7)
153
+ sprockets-rails (>= 2.0.0)
154
+ rails-dom-testing (2.0.3)
155
+ activesupport (>= 4.2.0)
156
+ nokogiri (>= 1.6)
157
+ rails-html-sanitizer (1.3.0)
158
+ loofah (~> 2.3)
159
+ railties (5.1.7)
160
+ actionpack (= 5.1.7)
161
+ activesupport (= 5.1.7)
162
+ method_source
163
+ rake (>= 0.8.7)
164
+ thor (>= 0.18.1, < 2.0)
165
+ rake (13.0.3)
166
+ rb-fsevent (0.10.4)
167
+ rb-inotify (0.10.1)
168
+ ffi (~> 1.0)
169
+ ruby2_keywords (0.0.4)
170
+ ruby_dep (1.5.0)
171
+ rubyzip (2.3.0)
172
+ sass (3.7.4)
173
+ sass-listen (~> 4.0.0)
174
+ sass-listen (4.0.0)
175
+ rb-fsevent (~> 0.9, >= 0.9.4)
176
+ rb-inotify (~> 0.9, >= 0.9.7)
177
+ sass-rails (5.0.7)
178
+ railties (>= 4.0.0, < 6)
179
+ sass (~> 3.1)
180
+ sprockets (>= 2.8, < 4.0)
181
+ sprockets-rails (>= 2.0, < 4.0)
182
+ tilt (>= 1.1, < 3)
183
+ selenium-webdriver (3.142.7)
184
+ childprocess (>= 0.5, < 4.0)
185
+ rubyzip (>= 1.2.2)
186
+ spring (2.1.1)
187
+ spring-watcher-listen (2.0.1)
188
+ listen (>= 2.7, < 4.0)
189
+ spring (>= 1.2, < 3.0)
190
+ sprockets (3.7.2)
191
+ concurrent-ruby (~> 1.0)
192
+ rack (> 1, < 3)
193
+ sprockets-rails (3.2.2)
194
+ actionpack (>= 4.0)
195
+ activesupport (>= 4.0)
196
+ sprockets (>= 3.0.0)
197
+ sqlite3 (1.4.2)
198
+ thor (1.1.0)
199
+ thread_safe (0.3.6)
200
+ tilt (2.0.10)
201
+ turbolinks (5.2.1)
202
+ turbolinks-source (~> 5.2)
203
+ turbolinks-source (5.2.0)
204
+ tzinfo (1.2.9)
205
+ thread_safe (~> 0.1)
206
+ uglifier (4.2.0)
207
+ execjs (>= 0.3.0, < 3)
208
+ web-console (3.7.0)
209
+ actionview (>= 5.0)
210
+ activemodel (>= 5.0)
211
+ bindex (>= 0.4.0)
212
+ railties (>= 5.0)
213
+ websocket-driver (0.6.5)
214
+ websocket-extensions (>= 0.1.0)
215
+ websocket-extensions (0.1.5)
216
+ xpath (2.1.0)
217
+ nokogiri (~> 1.3)
218
+
219
+ PLATFORMS
220
+ ruby
221
+
222
+ DEPENDENCIES
223
+ byebug
224
+ capybara (~> 2.13.0)
225
+ coffee-rails (~> 4.2)
226
+ jbuilder (~> 2.5)
227
+ listen (>= 3.0.5, < 3.2)
228
+ omniauth
229
+ omniauth-sberbank!
230
+ omniauth-vkontakte (~> 1.6.1)
231
+ pry
232
+ pry-byebug
233
+ pry-rails
234
+ puma (~> 3.7)
235
+ rails (~> 5.1.0)
236
+ sass-rails (~> 5.0)
237
+ selenium-webdriver
238
+ spring
239
+ spring-watcher-listen (~> 2.0.0)
240
+ sqlite3
241
+ turbolinks (~> 5)
242
+ tzinfo-data
243
+ uglifier (>= 1.3.0)
244
+ web-console (>= 3.3.0)
245
+
246
+ BUNDLED WITH
247
+ 1.17.3