oauth2 1.4.1 → 1.4.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +67 -10
  3. data/CODE_OF_CONDUCT.md +105 -46
  4. data/LICENSE +1 -1
  5. data/README.md +290 -98
  6. data/lib/oauth2/access_token.rb +15 -5
  7. data/lib/oauth2/authenticator.rb +13 -1
  8. data/lib/oauth2/client.rb +133 -51
  9. data/lib/oauth2/error.rb +3 -1
  10. data/lib/oauth2/mac_token.rb +18 -10
  11. data/lib/oauth2/response.rb +7 -3
  12. data/lib/oauth2/strategy/assertion.rb +6 -4
  13. data/lib/oauth2/strategy/auth_code.rb +3 -1
  14. data/lib/oauth2/strategy/base.rb +2 -0
  15. data/lib/oauth2/strategy/client_credentials.rb +3 -1
  16. data/lib/oauth2/strategy/implicit.rb +3 -1
  17. data/lib/oauth2/strategy/password.rb +5 -3
  18. data/lib/oauth2/version.rb +14 -8
  19. data/lib/oauth2.rb +2 -0
  20. data/spec/fixtures/README.md +11 -0
  21. data/spec/fixtures/RS256/jwtRS256.key +51 -0
  22. data/spec/fixtures/RS256/jwtRS256.key.pub +14 -0
  23. data/spec/helper.rb +33 -0
  24. data/spec/oauth2/access_token_spec.rb +218 -0
  25. data/spec/oauth2/authenticator_spec.rb +86 -0
  26. data/spec/oauth2/client_spec.rb +556 -0
  27. data/spec/oauth2/mac_token_spec.rb +122 -0
  28. data/spec/oauth2/response_spec.rb +96 -0
  29. data/spec/oauth2/strategy/assertion_spec.rb +113 -0
  30. data/spec/oauth2/strategy/auth_code_spec.rb +108 -0
  31. data/spec/oauth2/strategy/base_spec.rb +7 -0
  32. data/spec/oauth2/strategy/client_credentials_spec.rb +71 -0
  33. data/spec/oauth2/strategy/implicit_spec.rb +28 -0
  34. data/spec/oauth2/strategy/password_spec.rb +58 -0
  35. data/spec/oauth2/version_spec.rb +23 -0
  36. metadata +86 -77
  37. data/.document +0 -5
  38. data/.gitignore +0 -12
  39. data/.jrubyrc +0 -1
  40. data/.rspec +0 -2
  41. data/.rubocop.yml +0 -80
  42. data/.rubocop_rspec.yml +0 -26
  43. data/.rubocop_todo.yml +0 -15
  44. data/.travis.yml +0 -49
  45. data/CONTRIBUTING.md +0 -18
  46. data/Gemfile +0 -41
  47. data/Rakefile +0 -45
  48. data/gemfiles/jruby_1.7.gemfile +0 -11
  49. data/gemfiles/jruby_1.7.gemfile.lock +0 -81
  50. data/gemfiles/jruby_9.0.gemfile +0 -13
  51. data/gemfiles/jruby_9.1.gemfile +0 -17
  52. data/gemfiles/jruby_9.1.gemfile.lock +0 -112
  53. data/gemfiles/jruby_9.2.gemfile +0 -17
  54. data/gemfiles/jruby_9.2.gemfile.lock +0 -112
  55. data/gemfiles/jruby_head.gemfile +0 -17
  56. data/gemfiles/ruby_1.9.gemfile +0 -16
  57. data/gemfiles/ruby_1.9.gemfile.lock +0 -85
  58. data/gemfiles/ruby_2.0.gemfile +0 -17
  59. data/gemfiles/ruby_2.0.gemfile.lock +0 -90
  60. data/gemfiles/ruby_2.1.gemfile +0 -19
  61. data/gemfiles/ruby_2.1.gemfile.lock +0 -109
  62. data/gemfiles/ruby_2.2.gemfile +0 -17
  63. data/gemfiles/ruby_2.2.gemfile.lock +0 -108
  64. data/gemfiles/ruby_2.3.gemfile +0 -17
  65. data/gemfiles/ruby_2.3.gemfile.lock +0 -108
  66. data/gemfiles/ruby_2.4.gemfile +0 -17
  67. data/gemfiles/ruby_2.4.gemfile.lock +0 -108
  68. data/gemfiles/ruby_2.5.gemfile +0 -17
  69. data/gemfiles/ruby_2.5.gemfile.lock +0 -108
  70. data/gemfiles/ruby_head.gemfile +0 -17
  71. data/gemfiles/ruby_head.gemfile.lock +0 -108
  72. data/oauth2.gemspec +0 -40
@@ -1,13 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- group :test do
6
- gem 'rake'
7
- gem 'rspec'
8
- gem 'rspec-pending_for'
9
- gem 'rubocop', '~> 0.53.0'
10
- gem 'rubocop-rspec', '~> 1.24.0'
11
- end
12
-
13
- gemspec :path => '../'
@@ -1,17 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- group :development do
6
- gem 'pry'
7
- end
8
-
9
- group :test do
10
- gem 'rake'
11
- gem 'rspec'
12
- gem 'rspec-pending_for'
13
- gem 'rubocop', '~> 0.53.0'
14
- gem 'rubocop-rspec', '~> 1.24.0'
15
- end
16
-
17
- gemspec :path => '../'
@@ -1,112 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- oauth2 (1.4.0)
5
- faraday (>= 0.8, < 0.16.0)
6
- jwt (>= 1.0, < 3.0)
7
- multi_json (~> 1.3)
8
- multi_xml (~> 0.5)
9
- rack (>= 1.2, < 3)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- addressable (2.5.2)
15
- public_suffix (>= 2.0.2, < 4.0)
16
- ast (2.4.0)
17
- backports (3.11.4)
18
- coderay (1.1.2)
19
- coveralls (0.8.22)
20
- json (>= 1.8, < 3)
21
- simplecov (~> 0.16.1)
22
- term-ansicolor (~> 1.3)
23
- thor (~> 0.19.4)
24
- tins (~> 1.6)
25
- diff-lcs (1.3)
26
- docile (1.3.1)
27
- faraday (0.9.2)
28
- multipart-post (>= 1.2, < 3)
29
- ffi (1.9.25-java)
30
- json (2.1.0-java)
31
- jwt (2.1.0)
32
- method_source (0.9.0)
33
- multi_json (1.13.1)
34
- multi_xml (0.6.0)
35
- multipart-post (2.0.0)
36
- parallel (1.12.1)
37
- parser (2.5.1.2)
38
- ast (~> 2.4.0)
39
- powerpack (0.1.2)
40
- pry (0.11.3-java)
41
- coderay (~> 1.1.0)
42
- method_source (~> 0.9.0)
43
- spoon (~> 0.0)
44
- public_suffix (3.0.3)
45
- rack (2.0.5)
46
- rainbow (3.0.0)
47
- rake (12.3.1)
48
- rdoc (6.0.4)
49
- rspec (3.8.0)
50
- rspec-core (~> 3.8.0)
51
- rspec-expectations (~> 3.8.0)
52
- rspec-mocks (~> 3.8.0)
53
- rspec-core (3.8.0)
54
- rspec-support (~> 3.8.0)
55
- rspec-expectations (3.8.2)
56
- diff-lcs (>= 1.2.0, < 2.0)
57
- rspec-support (~> 3.8.0)
58
- rspec-mocks (3.8.0)
59
- diff-lcs (>= 1.2.0, < 2.0)
60
- rspec-support (~> 3.8.0)
61
- rspec-pending_for (0.1.13)
62
- rspec-core
63
- ruby_engine (~> 1.0)
64
- ruby_version (~> 1.0)
65
- rspec-support (3.8.0)
66
- rubocop (0.53.0)
67
- parallel (~> 1.10)
68
- parser (>= 2.5)
69
- powerpack (~> 0.1)
70
- rainbow (>= 2.2.2, < 4.0)
71
- ruby-progressbar (~> 1.7)
72
- unicode-display_width (~> 1.0, >= 1.0.1)
73
- rubocop-rspec (1.24.0)
74
- rubocop (>= 0.53.0)
75
- ruby-progressbar (1.10.0)
76
- ruby_engine (1.0.1)
77
- ruby_version (1.0.1)
78
- simplecov (0.16.1)
79
- docile (~> 1.1)
80
- json (>= 1.8, < 3)
81
- simplecov-html (~> 0.10.0)
82
- simplecov-html (0.10.2)
83
- spoon (0.0.6)
84
- ffi
85
- term-ansicolor (1.6.0)
86
- tins (~> 1.0)
87
- thor (0.19.4)
88
- tins (1.16.3)
89
- unicode-display_width (1.4.0)
90
- wwtd (1.3.0)
91
-
92
- PLATFORMS
93
- java
94
-
95
- DEPENDENCIES
96
- addressable (~> 2.3)
97
- backports (~> 3.11)
98
- bundler (~> 1.16)
99
- coveralls (~> 0.8)
100
- faraday (= 0.9.2)
101
- oauth2!
102
- pry
103
- rake
104
- rdoc (>= 5.0, < 7)
105
- rspec
106
- rspec-pending_for
107
- rubocop (~> 0.53.0)
108
- rubocop-rspec (~> 1.24.0)
109
- wwtd
110
-
111
- BUNDLED WITH
112
- 1.16.4
@@ -1,17 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- group :development do
6
- gem 'pry'
7
- end
8
-
9
- group :test do
10
- gem 'rake'
11
- gem 'rspec'
12
- gem 'rspec-pending_for'
13
- gem 'rubocop', '~> 0.53.0'
14
- gem 'rubocop-rspec', '~> 1.24.0'
15
- end
16
-
17
- gemspec :path => '../'
@@ -1,112 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- oauth2 (1.4.0)
5
- faraday (>= 0.8, < 0.16.0)
6
- jwt (>= 1.0, < 3.0)
7
- multi_json (~> 1.3)
8
- multi_xml (~> 0.5)
9
- rack (>= 1.2, < 3)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- addressable (2.5.2)
15
- public_suffix (>= 2.0.2, < 4.0)
16
- ast (2.4.0)
17
- backports (3.11.4)
18
- coderay (1.1.2)
19
- coveralls (0.8.22)
20
- json (>= 1.8, < 3)
21
- simplecov (~> 0.16.1)
22
- term-ansicolor (~> 1.3)
23
- thor (~> 0.19.4)
24
- tins (~> 1.6)
25
- diff-lcs (1.3)
26
- docile (1.3.1)
27
- faraday (0.9.2)
28
- multipart-post (>= 1.2, < 3)
29
- ffi (1.9.25-java)
30
- json (2.1.0-java)
31
- jwt (2.1.0)
32
- method_source (0.9.0)
33
- multi_json (1.13.1)
34
- multi_xml (0.6.0)
35
- multipart-post (2.0.0)
36
- parallel (1.12.1)
37
- parser (2.5.1.2)
38
- ast (~> 2.4.0)
39
- powerpack (0.1.2)
40
- pry (0.11.3-java)
41
- coderay (~> 1.1.0)
42
- method_source (~> 0.9.0)
43
- spoon (~> 0.0)
44
- public_suffix (3.0.3)
45
- rack (2.0.5)
46
- rainbow (3.0.0)
47
- rake (12.3.1)
48
- rdoc (6.0.4)
49
- rspec (3.8.0)
50
- rspec-core (~> 3.8.0)
51
- rspec-expectations (~> 3.8.0)
52
- rspec-mocks (~> 3.8.0)
53
- rspec-core (3.8.0)
54
- rspec-support (~> 3.8.0)
55
- rspec-expectations (3.8.2)
56
- diff-lcs (>= 1.2.0, < 2.0)
57
- rspec-support (~> 3.8.0)
58
- rspec-mocks (3.8.0)
59
- diff-lcs (>= 1.2.0, < 2.0)
60
- rspec-support (~> 3.8.0)
61
- rspec-pending_for (0.1.13)
62
- rspec-core
63
- ruby_engine (~> 1.0)
64
- ruby_version (~> 1.0)
65
- rspec-support (3.8.0)
66
- rubocop (0.53.0)
67
- parallel (~> 1.10)
68
- parser (>= 2.5)
69
- powerpack (~> 0.1)
70
- rainbow (>= 2.2.2, < 4.0)
71
- ruby-progressbar (~> 1.7)
72
- unicode-display_width (~> 1.0, >= 1.0.1)
73
- rubocop-rspec (1.24.0)
74
- rubocop (>= 0.53.0)
75
- ruby-progressbar (1.10.0)
76
- ruby_engine (1.0.1)
77
- ruby_version (1.0.1)
78
- simplecov (0.16.1)
79
- docile (~> 1.1)
80
- json (>= 1.8, < 3)
81
- simplecov-html (~> 0.10.0)
82
- simplecov-html (0.10.2)
83
- spoon (0.0.6)
84
- ffi
85
- term-ansicolor (1.6.0)
86
- tins (~> 1.0)
87
- thor (0.19.4)
88
- tins (1.16.3)
89
- unicode-display_width (1.4.0)
90
- wwtd (1.3.0)
91
-
92
- PLATFORMS
93
- java
94
-
95
- DEPENDENCIES
96
- addressable (~> 2.3)
97
- backports (~> 3.11)
98
- bundler (~> 1.16)
99
- coveralls (~> 0.8)
100
- faraday (= 0.9.2)
101
- oauth2!
102
- pry
103
- rake
104
- rdoc (>= 5.0, < 7)
105
- rspec
106
- rspec-pending_for
107
- rubocop (~> 0.53.0)
108
- rubocop-rspec (~> 1.24.0)
109
- wwtd
110
-
111
- BUNDLED WITH
112
- 1.16.4
@@ -1,17 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- group :development do
6
- gem 'pry'
7
- end
8
-
9
- group :test do
10
- gem 'rake'
11
- gem 'rspec'
12
- gem 'rspec-pending_for'
13
- gem 'rubocop', '~> 0.53.0'
14
- gem 'rubocop-rspec', '~> 1.24.0'
15
- end
16
-
17
- gemspec :path => '../'
@@ -1,16 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- gem 'json', '< 2.0'
6
- gem 'rack', '~> 1.2'
7
- gem 'term-ansicolor', '< 1.4.0'
8
- gem 'tins', '< 1.7'
9
-
10
- group :test do
11
- gem 'rake'
12
- gem 'rspec'
13
- gem 'rspec-pending_for'
14
- end
15
-
16
- gemspec :path => '../'
@@ -1,85 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- oauth2 (1.4.0)
5
- faraday (>= 0.8, < 0.16.0)
6
- jwt (>= 1.0, < 3.0)
7
- multi_json (~> 1.3)
8
- multi_xml (~> 0.5)
9
- rack (>= 1.2, < 3)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- addressable (2.4.0)
15
- backports (3.11.4)
16
- coveralls (0.8.22)
17
- json (>= 1.8, < 3)
18
- simplecov (~> 0.16.1)
19
- term-ansicolor (~> 1.3)
20
- thor (~> 0.19.4)
21
- tins (~> 1.6)
22
- diff-lcs (1.3)
23
- docile (1.3.1)
24
- faraday (0.9.2)
25
- multipart-post (>= 1.2, < 3)
26
- json (1.8.6)
27
- jwt (1.5.6)
28
- multi_json (1.13.1)
29
- multi_xml (0.6.0)
30
- multipart-post (2.0.0)
31
- rack (1.6.10)
32
- rake (12.2.1)
33
- rdoc (5.1.0)
34
- rspec (3.8.0)
35
- rspec-core (~> 3.8.0)
36
- rspec-expectations (~> 3.8.0)
37
- rspec-mocks (~> 3.8.0)
38
- rspec-core (3.8.0)
39
- rspec-support (~> 3.8.0)
40
- rspec-expectations (3.8.2)
41
- diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.8.0)
43
- rspec-mocks (3.8.0)
44
- diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.8.0)
46
- rspec-pending_for (0.1.13)
47
- rspec-core
48
- ruby_engine (~> 1.0)
49
- ruby_version (~> 1.0)
50
- rspec-support (3.8.0)
51
- ruby_engine (1.0.1)
52
- ruby_version (1.0.1)
53
- simplecov (0.16.1)
54
- docile (~> 1.1)
55
- json (>= 1.8, < 3)
56
- simplecov-html (~> 0.10.0)
57
- simplecov-html (0.10.2)
58
- term-ansicolor (1.3.2)
59
- tins (~> 1.0)
60
- thor (0.19.4)
61
- tins (1.6.0)
62
- wwtd (1.3.0)
63
-
64
- PLATFORMS
65
- ruby
66
-
67
- DEPENDENCIES
68
- addressable (~> 2.3)
69
- backports (~> 3.11)
70
- bundler (~> 1.16)
71
- coveralls (~> 0.8)
72
- faraday (= 0.9.2)
73
- json (< 2.0)
74
- oauth2!
75
- rack (~> 1.2)
76
- rake
77
- rdoc (>= 5.0, < 7)
78
- rspec
79
- rspec-pending_for
80
- term-ansicolor (< 1.4.0)
81
- tins (< 1.7)
82
- wwtd
83
-
84
- BUNDLED WITH
85
- 1.16.2
@@ -1,17 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- gem 'rack', '~> 1.2'
6
-
7
- group :development do
8
- gem 'pry'
9
- end
10
-
11
- group :test do
12
- gem 'rake'
13
- gem 'rspec'
14
- gem 'rspec-pending_for'
15
- end
16
-
17
- gemspec :path => '../'
@@ -1,90 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- oauth2 (1.4.0)
5
- faraday (>= 0.8, < 0.16.0)
6
- jwt (>= 1.0, < 3.0)
7
- multi_json (~> 1.3)
8
- multi_xml (~> 0.5)
9
- rack (>= 1.2, < 3)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- addressable (2.5.2)
15
- public_suffix (>= 2.0.2, < 4.0)
16
- backports (3.11.4)
17
- coderay (1.1.2)
18
- coveralls (0.8.22)
19
- json (>= 1.8, < 3)
20
- simplecov (~> 0.16.1)
21
- term-ansicolor (~> 1.3)
22
- thor (~> 0.19.4)
23
- tins (~> 1.6)
24
- diff-lcs (1.3)
25
- docile (1.3.1)
26
- faraday (0.9.2)
27
- multipart-post (>= 1.2, < 3)
28
- json (2.1.0)
29
- jwt (1.5.6)
30
- method_source (0.9.0)
31
- multi_json (1.13.1)
32
- multi_xml (0.6.0)
33
- multipart-post (2.0.0)
34
- pry (0.11.3)
35
- coderay (~> 1.1.0)
36
- method_source (~> 0.9.0)
37
- public_suffix (2.0.5)
38
- rack (1.6.10)
39
- rake (12.3.1)
40
- rdoc (5.1.0)
41
- rspec (3.8.0)
42
- rspec-core (~> 3.8.0)
43
- rspec-expectations (~> 3.8.0)
44
- rspec-mocks (~> 3.8.0)
45
- rspec-core (3.8.0)
46
- rspec-support (~> 3.8.0)
47
- rspec-expectations (3.8.2)
48
- diff-lcs (>= 1.2.0, < 2.0)
49
- rspec-support (~> 3.8.0)
50
- rspec-mocks (3.8.0)
51
- diff-lcs (>= 1.2.0, < 2.0)
52
- rspec-support (~> 3.8.0)
53
- rspec-pending_for (0.1.13)
54
- rspec-core
55
- ruby_engine (~> 1.0)
56
- ruby_version (~> 1.0)
57
- rspec-support (3.8.0)
58
- ruby_engine (1.0.1)
59
- ruby_version (1.0.1)
60
- simplecov (0.16.1)
61
- docile (~> 1.1)
62
- json (>= 1.8, < 3)
63
- simplecov-html (~> 0.10.0)
64
- simplecov-html (0.10.2)
65
- term-ansicolor (1.6.0)
66
- tins (~> 1.0)
67
- thor (0.19.4)
68
- tins (1.16.3)
69
- wwtd (1.3.0)
70
-
71
- PLATFORMS
72
- ruby
73
-
74
- DEPENDENCIES
75
- addressable (~> 2.3)
76
- backports (~> 3.11)
77
- bundler (~> 1.16)
78
- coveralls (~> 0.8)
79
- faraday (= 0.9.2)
80
- oauth2!
81
- pry
82
- rack (~> 1.2)
83
- rake
84
- rdoc (>= 5.0, < 7)
85
- rspec
86
- rspec-pending_for
87
- wwtd
88
-
89
- BUNDLED WITH
90
- 1.16.2
@@ -1,19 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- gem 'rack', '~> 1.2'
6
-
7
- group :development do
8
- gem 'pry'
9
- end
10
-
11
- group :test do
12
- gem 'rake'
13
- gem 'rspec'
14
- gem 'rspec-pending_for'
15
- gem 'rubocop', '~> 0.53.0'
16
- gem 'rubocop-rspec', '~> 1.24.0'
17
- end
18
-
19
- gemspec :path => '../'
@@ -1,109 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- oauth2 (1.4.0)
5
- faraday (>= 0.8, < 0.16.0)
6
- jwt (>= 1.0, < 3.0)
7
- multi_json (~> 1.3)
8
- multi_xml (~> 0.5)
9
- rack (>= 1.2, < 3)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- addressable (2.5.2)
15
- public_suffix (>= 2.0.2, < 4.0)
16
- ast (2.4.0)
17
- backports (3.11.4)
18
- coderay (1.1.2)
19
- coveralls (0.8.22)
20
- json (>= 1.8, < 3)
21
- simplecov (~> 0.16.1)
22
- term-ansicolor (~> 1.3)
23
- thor (~> 0.19.4)
24
- tins (~> 1.6)
25
- diff-lcs (1.3)
26
- docile (1.3.1)
27
- faraday (0.9.2)
28
- multipart-post (>= 1.2, < 3)
29
- json (2.1.0)
30
- jwt (2.1.0)
31
- method_source (0.9.0)
32
- multi_json (1.13.1)
33
- multi_xml (0.6.0)
34
- multipart-post (2.0.0)
35
- parallel (1.12.1)
36
- parser (2.5.1.2)
37
- ast (~> 2.4.0)
38
- powerpack (0.1.2)
39
- pry (0.11.3)
40
- coderay (~> 1.1.0)
41
- method_source (~> 0.9.0)
42
- public_suffix (3.0.3)
43
- rack (1.6.10)
44
- rainbow (3.0.0)
45
- rake (12.3.1)
46
- rdoc (5.1.0)
47
- rspec (3.8.0)
48
- rspec-core (~> 3.8.0)
49
- rspec-expectations (~> 3.8.0)
50
- rspec-mocks (~> 3.8.0)
51
- rspec-core (3.8.0)
52
- rspec-support (~> 3.8.0)
53
- rspec-expectations (3.8.2)
54
- diff-lcs (>= 1.2.0, < 2.0)
55
- rspec-support (~> 3.8.0)
56
- rspec-mocks (3.8.0)
57
- diff-lcs (>= 1.2.0, < 2.0)
58
- rspec-support (~> 3.8.0)
59
- rspec-pending_for (0.1.13)
60
- rspec-core
61
- ruby_engine (~> 1.0)
62
- ruby_version (~> 1.0)
63
- rspec-support (3.8.0)
64
- rubocop (0.53.0)
65
- parallel (~> 1.10)
66
- parser (>= 2.5)
67
- powerpack (~> 0.1)
68
- rainbow (>= 2.2.2, < 4.0)
69
- ruby-progressbar (~> 1.7)
70
- unicode-display_width (~> 1.0, >= 1.0.1)
71
- rubocop-rspec (1.24.0)
72
- rubocop (>= 0.53.0)
73
- ruby-progressbar (1.10.0)
74
- ruby_engine (1.0.1)
75
- ruby_version (1.0.1)
76
- simplecov (0.16.1)
77
- docile (~> 1.1)
78
- json (>= 1.8, < 3)
79
- simplecov-html (~> 0.10.0)
80
- simplecov-html (0.10.2)
81
- term-ansicolor (1.6.0)
82
- tins (~> 1.0)
83
- thor (0.19.4)
84
- tins (1.16.3)
85
- unicode-display_width (1.4.0)
86
- wwtd (1.3.0)
87
-
88
- PLATFORMS
89
- ruby
90
-
91
- DEPENDENCIES
92
- addressable (~> 2.3)
93
- backports (~> 3.11)
94
- bundler (~> 1.16)
95
- coveralls (~> 0.8)
96
- faraday (= 0.9.2)
97
- oauth2!
98
- pry
99
- rack (~> 1.2)
100
- rake
101
- rdoc (>= 5.0, < 7)
102
- rspec
103
- rspec-pending_for
104
- rubocop (~> 0.53.0)
105
- rubocop-rspec (~> 1.24.0)
106
- wwtd
107
-
108
- BUNDLED WITH
109
- 1.16.2
@@ -1,17 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'faraday', '0.9.2'
4
-
5
- group :development do
6
- gem 'pry'
7
- end
8
-
9
- group :test do
10
- gem 'rake'
11
- gem 'rspec'
12
- gem 'rspec-pending_for'
13
- gem 'rubocop', '~> 0.53.0'
14
- gem 'rubocop-rspec', '~> 1.24.0'
15
- end
16
-
17
- gemspec :path => '../'