api-auth 1.5.0 → 2.6.0

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 (68) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/main.yml +71 -0
  3. data/.gitignore +13 -44
  4. data/.rubocop.yml +39 -0
  5. data/.rubocop_todo.yml +83 -0
  6. data/Appraisals +12 -36
  7. data/CHANGELOG.md +75 -1
  8. data/README.md +155 -52
  9. data/Rakefile +1 -1
  10. data/VERSION +1 -1
  11. data/api_auth.gemspec +35 -23
  12. data/gemfiles/rails_60.gemfile +9 -0
  13. data/gemfiles/rails_61.gemfile +9 -0
  14. data/gemfiles/rails_70.gemfile +9 -0
  15. data/lib/api-auth.rb +1 -1
  16. data/lib/api_auth/base.rb +41 -35
  17. data/lib/api_auth/errors.rb +4 -3
  18. data/lib/api_auth/headers.rb +38 -42
  19. data/lib/api_auth/helpers.rb +7 -16
  20. data/lib/api_auth/railtie.rb +34 -74
  21. data/lib/api_auth/request_drivers/action_controller.rb +27 -27
  22. data/lib/api_auth/request_drivers/action_dispatch.rb +0 -6
  23. data/lib/api_auth/request_drivers/curb.rb +16 -21
  24. data/lib/api_auth/request_drivers/faraday.rb +25 -34
  25. data/lib/api_auth/request_drivers/faraday_env.rb +102 -0
  26. data/lib/api_auth/request_drivers/grape_request.rb +87 -0
  27. data/lib/api_auth/request_drivers/http.rb +96 -0
  28. data/lib/api_auth/request_drivers/httpi.rb +22 -27
  29. data/lib/api_auth/request_drivers/net_http.rb +21 -26
  30. data/lib/api_auth/request_drivers/rack.rb +23 -28
  31. data/lib/api_auth/request_drivers/rest_client.rb +24 -29
  32. data/lib/api_auth.rb +4 -0
  33. data/lib/faraday/api_auth/middleware.rb +35 -0
  34. data/lib/faraday/api_auth.rb +8 -0
  35. data/spec/api_auth_spec.rb +135 -96
  36. data/spec/faraday_middleware_spec.rb +17 -0
  37. data/spec/headers_spec.rb +148 -108
  38. data/spec/helpers_spec.rb +8 -10
  39. data/spec/railtie_spec.rb +80 -99
  40. data/spec/request_drivers/action_controller_spec.rb +122 -79
  41. data/spec/request_drivers/action_dispatch_spec.rb +212 -85
  42. data/spec/request_drivers/curb_spec.rb +36 -33
  43. data/spec/request_drivers/faraday_env_spec.rb +188 -0
  44. data/spec/request_drivers/faraday_spec.rb +87 -83
  45. data/spec/request_drivers/grape_request_spec.rb +280 -0
  46. data/spec/request_drivers/http_spec.rb +190 -0
  47. data/spec/request_drivers/httpi_spec.rb +59 -59
  48. data/spec/request_drivers/net_http_spec.rb +70 -66
  49. data/spec/request_drivers/rack_spec.rb +101 -97
  50. data/spec/request_drivers/rest_client_spec.rb +218 -144
  51. data/spec/spec_helper.rb +15 -12
  52. metadata +144 -83
  53. data/.travis.yml +0 -40
  54. data/Gemfile.lock +0 -115
  55. data/gemfiles/rails_23.gemfile +0 -9
  56. data/gemfiles/rails_23.gemfile.lock +0 -70
  57. data/gemfiles/rails_30.gemfile +0 -9
  58. data/gemfiles/rails_30.gemfile.lock +0 -92
  59. data/gemfiles/rails_31.gemfile +0 -9
  60. data/gemfiles/rails_31.gemfile.lock +0 -98
  61. data/gemfiles/rails_32.gemfile +0 -9
  62. data/gemfiles/rails_32.gemfile.lock +0 -97
  63. data/gemfiles/rails_4.gemfile +0 -9
  64. data/gemfiles/rails_4.gemfile.lock +0 -94
  65. data/gemfiles/rails_41.gemfile +0 -9
  66. data/gemfiles/rails_41.gemfile.lock +0 -98
  67. data/gemfiles/rails_42.gemfile +0 -9
  68. data/gemfiles/rails_42.gemfile.lock +0 -115
@@ -1,92 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- api-auth (1.5.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- abstract (1.0.0)
10
- actionpack (3.0.20)
11
- activemodel (= 3.0.20)
12
- activesupport (= 3.0.20)
13
- builder (~> 2.1.2)
14
- erubis (~> 2.6.6)
15
- i18n (~> 0.5.0)
16
- rack (~> 1.2.5)
17
- rack-mount (~> 0.6.14)
18
- rack-test (~> 0.5.7)
19
- tzinfo (~> 0.3.23)
20
- activemodel (3.0.20)
21
- activesupport (= 3.0.20)
22
- builder (~> 2.1.2)
23
- i18n (~> 0.5.0)
24
- activeresource (3.0.20)
25
- activemodel (= 3.0.20)
26
- activesupport (= 3.0.20)
27
- activesupport (3.0.20)
28
- amatch (0.3.0)
29
- tins (~> 1.0)
30
- appraisal (1.0.0)
31
- bundler
32
- rake
33
- thor (>= 0.14.0)
34
- builder (2.1.2)
35
- curb (0.8.6)
36
- diff-lcs (1.2.5)
37
- erubis (2.6.6)
38
- abstract (>= 1.0.0)
39
- faraday (0.9.1)
40
- multipart-post (>= 1.2, < 3)
41
- httpi (2.1.0)
42
- rack
43
- rubyntlm (~> 0.3.2)
44
- i18n (0.5.3)
45
- mime-types (1.25.1)
46
- multipart-post (2.0.0)
47
- rack (1.2.8)
48
- rack-mount (0.6.14)
49
- rack (>= 1.0.0)
50
- rack-test (0.5.7)
51
- rack (>= 1.0)
52
- rake (10.3.1)
53
- rest-client (1.6.7)
54
- mime-types (>= 1.16)
55
- rspec (3.4.0)
56
- rspec-core (~> 3.4.0)
57
- rspec-expectations (~> 3.4.0)
58
- rspec-mocks (~> 3.4.0)
59
- rspec-core (3.4.0)
60
- rspec-support (~> 3.4.0)
61
- rspec-expectations (3.4.0)
62
- diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.4.0)
64
- rspec-mocks (3.4.0)
65
- diff-lcs (>= 1.2.0, < 2.0)
66
- rspec-support (~> 3.4.0)
67
- rspec-support (3.4.0)
68
- rubyntlm (0.3.4)
69
- thor (0.19.1)
70
- tins (1.3.0)
71
- tzinfo (0.3.39)
72
-
73
- PLATFORMS
74
- ruby
75
-
76
- DEPENDENCIES
77
- actionpack (~> 3.0.20)
78
- activeresource (~> 3.0.20)
79
- activesupport (~> 3.0.20)
80
- amatch
81
- api-auth!
82
- appraisal
83
- curb (~> 0.8.1)
84
- faraday
85
- httpi
86
- multipart-post (~> 2.0)
87
- rake
88
- rest-client (~> 1.6.0)
89
- rspec (~> 3.4)
90
-
91
- BUNDLED WITH
92
- 1.10.6
@@ -1,9 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "actionpack", "~> 3.1.0"
6
- gem "activeresource", "~> 3.1.0"
7
- gem "activesupport", "~> 3.1.0"
8
-
9
- gemspec :path => "../"
@@ -1,98 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- api-auth (1.5.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionpack (3.1.12)
10
- activemodel (= 3.1.12)
11
- activesupport (= 3.1.12)
12
- builder (~> 3.0.0)
13
- erubis (~> 2.7.0)
14
- i18n (~> 0.6)
15
- rack (~> 1.3.6)
16
- rack-cache (~> 1.2)
17
- rack-mount (~> 0.8.2)
18
- rack-test (~> 0.6.1)
19
- sprockets (~> 2.0.4)
20
- activemodel (3.1.12)
21
- activesupport (= 3.1.12)
22
- builder (~> 3.0.0)
23
- i18n (~> 0.6)
24
- activeresource (3.1.12)
25
- activemodel (= 3.1.12)
26
- activesupport (= 3.1.12)
27
- activesupport (3.1.12)
28
- multi_json (~> 1.0)
29
- amatch (0.2.11)
30
- tins (~> 0.3)
31
- appraisal (0.5.2)
32
- bundler
33
- rake
34
- builder (3.0.4)
35
- curb (0.8.6)
36
- diff-lcs (1.2.5)
37
- erubis (2.7.0)
38
- faraday (0.9.1)
39
- multipart-post (>= 1.2, < 3)
40
- hike (1.2.3)
41
- httpi (2.1.0)
42
- rack
43
- rubyntlm (~> 0.3.2)
44
- i18n (0.6.9)
45
- mime-types (1.25.1)
46
- multi_json (1.9.2)
47
- multipart-post (2.0.0)
48
- rack (1.3.10)
49
- rack-cache (1.2)
50
- rack (>= 0.4)
51
- rack-mount (0.8.3)
52
- rack (>= 1.0.0)
53
- rack-test (0.6.2)
54
- rack (>= 1.0)
55
- rake (10.1.1)
56
- rest-client (1.6.7)
57
- mime-types (>= 1.16)
58
- rspec (3.4.0)
59
- rspec-core (~> 3.4.0)
60
- rspec-expectations (~> 3.4.0)
61
- rspec-mocks (~> 3.4.0)
62
- rspec-core (3.4.0)
63
- rspec-support (~> 3.4.0)
64
- rspec-expectations (3.4.0)
65
- diff-lcs (>= 1.2.0, < 2.0)
66
- rspec-support (~> 3.4.0)
67
- rspec-mocks (3.4.0)
68
- diff-lcs (>= 1.2.0, < 2.0)
69
- rspec-support (~> 3.4.0)
70
- rspec-support (3.4.0)
71
- rubyntlm (0.3.4)
72
- sprockets (2.0.4)
73
- hike (~> 1.2)
74
- rack (~> 1.0)
75
- tilt (~> 1.1, != 1.3.0)
76
- tilt (1.4.1)
77
- tins (0.13.2)
78
-
79
- PLATFORMS
80
- ruby
81
-
82
- DEPENDENCIES
83
- actionpack (~> 3.1.0)
84
- activeresource (~> 3.1.0)
85
- activesupport (~> 3.1.0)
86
- amatch
87
- api-auth!
88
- appraisal
89
- curb (~> 0.8.1)
90
- faraday
91
- httpi
92
- multipart-post (~> 2.0)
93
- rake
94
- rest-client (~> 1.6.0)
95
- rspec (~> 3.4)
96
-
97
- BUNDLED WITH
98
- 1.10.6
@@ -1,9 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "actionpack", "~> 3.2.17"
6
- gem "activeresource", "~> 3.2.17"
7
- gem "activesupport", "~> 3.2.17"
8
-
9
- gemspec :path => "../"
@@ -1,97 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- api-auth (1.5.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionpack (3.2.17)
10
- activemodel (= 3.2.17)
11
- activesupport (= 3.2.17)
12
- builder (~> 3.0.0)
13
- erubis (~> 2.7.0)
14
- journey (~> 1.0.4)
15
- rack (~> 1.4.5)
16
- rack-cache (~> 1.2)
17
- rack-test (~> 0.6.1)
18
- sprockets (~> 2.2.1)
19
- activemodel (3.2.17)
20
- activesupport (= 3.2.17)
21
- builder (~> 3.0.0)
22
- activeresource (3.2.17)
23
- activemodel (= 3.2.17)
24
- activesupport (= 3.2.17)
25
- activesupport (3.2.17)
26
- i18n (~> 0.6, >= 0.6.4)
27
- multi_json (~> 1.0)
28
- amatch (0.2.11)
29
- tins (~> 0.3)
30
- appraisal (0.5.2)
31
- bundler
32
- rake
33
- builder (3.0.4)
34
- curb (0.8.6)
35
- diff-lcs (1.2.5)
36
- erubis (2.7.0)
37
- faraday (0.9.1)
38
- multipart-post (>= 1.2, < 3)
39
- hike (1.2.3)
40
- httpi (2.1.0)
41
- rack
42
- rubyntlm (~> 0.3.2)
43
- i18n (0.6.9)
44
- journey (1.0.4)
45
- mime-types (1.25.1)
46
- multi_json (1.9.2)
47
- multipart-post (2.0.0)
48
- rack (1.4.5)
49
- rack-cache (1.2)
50
- rack (>= 0.4)
51
- rack-test (0.6.2)
52
- rack (>= 1.0)
53
- rake (10.1.1)
54
- rest-client (1.6.7)
55
- mime-types (>= 1.16)
56
- rspec (3.4.0)
57
- rspec-core (~> 3.4.0)
58
- rspec-expectations (~> 3.4.0)
59
- rspec-mocks (~> 3.4.0)
60
- rspec-core (3.4.0)
61
- rspec-support (~> 3.4.0)
62
- rspec-expectations (3.4.0)
63
- diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.4.0)
65
- rspec-mocks (3.4.0)
66
- diff-lcs (>= 1.2.0, < 2.0)
67
- rspec-support (~> 3.4.0)
68
- rspec-support (3.4.0)
69
- rubyntlm (0.3.4)
70
- sprockets (2.2.2)
71
- hike (~> 1.2)
72
- multi_json (~> 1.0)
73
- rack (~> 1.0)
74
- tilt (~> 1.1, != 1.3.0)
75
- tilt (1.4.1)
76
- tins (0.13.2)
77
-
78
- PLATFORMS
79
- ruby
80
-
81
- DEPENDENCIES
82
- actionpack (~> 3.2.17)
83
- activeresource (~> 3.2.17)
84
- activesupport (~> 3.2.17)
85
- amatch
86
- api-auth!
87
- appraisal
88
- curb (~> 0.8.1)
89
- faraday
90
- httpi
91
- multipart-post (~> 2.0)
92
- rake
93
- rest-client (~> 1.6.0)
94
- rspec (~> 3.4)
95
-
96
- BUNDLED WITH
97
- 1.10.6
@@ -1,9 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "actionpack", "~> 4.0.4"
6
- gem "activeresource", "~> 4.0.0"
7
- gem "activesupport", "~> 4.0.4"
8
-
9
- gemspec :path => "../"
@@ -1,94 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- api-auth (1.5.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionpack (4.0.4)
10
- activesupport (= 4.0.4)
11
- builder (~> 3.1.0)
12
- erubis (~> 2.7.0)
13
- rack (~> 1.5.2)
14
- rack-test (~> 0.6.2)
15
- activemodel (4.0.4)
16
- activesupport (= 4.0.4)
17
- builder (~> 3.1.0)
18
- activeresource (4.0.0)
19
- activemodel (~> 4.0)
20
- activesupport (~> 4.0)
21
- rails-observers (~> 0.1.1)
22
- activesupport (4.0.4)
23
- i18n (~> 0.6, >= 0.6.9)
24
- minitest (~> 4.2)
25
- multi_json (~> 1.3)
26
- thread_safe (~> 0.1)
27
- tzinfo (~> 0.3.37)
28
- amatch (0.2.11)
29
- tins (~> 0.3)
30
- appraisal (0.5.2)
31
- bundler
32
- rake
33
- atomic (1.1.16)
34
- builder (3.1.4)
35
- curb (0.8.6)
36
- diff-lcs (1.2.5)
37
- erubis (2.7.0)
38
- faraday (0.9.1)
39
- multipart-post (>= 1.2, < 3)
40
- httpi (2.1.0)
41
- rack
42
- rubyntlm (~> 0.3.2)
43
- i18n (0.6.9)
44
- mime-types (2.2)
45
- minitest (4.7.5)
46
- multi_json (1.9.2)
47
- multipart-post (2.0.0)
48
- rack (1.5.2)
49
- rack-test (0.6.2)
50
- rack (>= 1.0)
51
- rails-observers (0.1.2)
52
- activemodel (~> 4.0)
53
- rake (10.1.1)
54
- rest-client (1.6.7)
55
- mime-types (>= 1.16)
56
- rspec (3.4.0)
57
- rspec-core (~> 3.4.0)
58
- rspec-expectations (~> 3.4.0)
59
- rspec-mocks (~> 3.4.0)
60
- rspec-core (3.4.0)
61
- rspec-support (~> 3.4.0)
62
- rspec-expectations (3.4.0)
63
- diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.4.0)
65
- rspec-mocks (3.4.0)
66
- diff-lcs (>= 1.2.0, < 2.0)
67
- rspec-support (~> 3.4.0)
68
- rspec-support (3.4.0)
69
- rubyntlm (0.3.4)
70
- thread_safe (0.2.0)
71
- atomic (>= 1.1.7, < 2)
72
- tins (0.13.2)
73
- tzinfo (0.3.39)
74
-
75
- PLATFORMS
76
- ruby
77
-
78
- DEPENDENCIES
79
- actionpack (~> 4.0.4)
80
- activeresource (~> 4.0.0)
81
- activesupport (~> 4.0.4)
82
- amatch
83
- api-auth!
84
- appraisal
85
- curb (~> 0.8.1)
86
- faraday
87
- httpi
88
- multipart-post (~> 2.0)
89
- rake
90
- rest-client (~> 1.6.0)
91
- rspec (~> 3.4)
92
-
93
- BUNDLED WITH
94
- 1.10.6
@@ -1,9 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "actionpack", "~> 4.1.0"
6
- gem "activeresource", "~> 4.0.0"
7
- gem "activesupport", "~> 4.1.0"
8
-
9
- gemspec :path => "../"
@@ -1,98 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- api-auth (1.5.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionpack (4.1.1)
10
- actionview (= 4.1.1)
11
- activesupport (= 4.1.1)
12
- rack (~> 1.5.2)
13
- rack-test (~> 0.6.2)
14
- actionview (4.1.1)
15
- activesupport (= 4.1.1)
16
- builder (~> 3.1)
17
- erubis (~> 2.7.0)
18
- activemodel (4.1.1)
19
- activesupport (= 4.1.1)
20
- builder (~> 3.1)
21
- activeresource (4.0.0)
22
- activemodel (~> 4.0)
23
- activesupport (~> 4.0)
24
- rails-observers (~> 0.1.1)
25
- activesupport (4.1.1)
26
- i18n (~> 0.6, >= 0.6.9)
27
- json (~> 1.7, >= 1.7.7)
28
- minitest (~> 5.1)
29
- thread_safe (~> 0.1)
30
- tzinfo (~> 1.1)
31
- amatch (0.3.0)
32
- tins (~> 1.0)
33
- appraisal (1.0.0)
34
- bundler
35
- rake
36
- thor (>= 0.14.0)
37
- builder (3.2.2)
38
- curb (0.8.6)
39
- diff-lcs (1.2.5)
40
- erubis (2.7.0)
41
- faraday (0.9.1)
42
- multipart-post (>= 1.2, < 3)
43
- httpi (2.1.0)
44
- rack
45
- rubyntlm (~> 0.3.2)
46
- i18n (0.6.9)
47
- json (1.8.1)
48
- mime-types (2.2)
49
- minitest (5.3.4)
50
- multipart-post (2.0.0)
51
- rack (1.5.2)
52
- rack-test (0.6.2)
53
- rack (>= 1.0)
54
- rails-observers (0.1.2)
55
- activemodel (~> 4.0)
56
- rake (10.3.2)
57
- rest-client (1.6.7)
58
- mime-types (>= 1.16)
59
- rspec (3.4.0)
60
- rspec-core (~> 3.4.0)
61
- rspec-expectations (~> 3.4.0)
62
- rspec-mocks (~> 3.4.0)
63
- rspec-core (3.4.0)
64
- rspec-support (~> 3.4.0)
65
- rspec-expectations (3.4.0)
66
- diff-lcs (>= 1.2.0, < 2.0)
67
- rspec-support (~> 3.4.0)
68
- rspec-mocks (3.4.0)
69
- diff-lcs (>= 1.2.0, < 2.0)
70
- rspec-support (~> 3.4.0)
71
- rspec-support (3.4.0)
72
- rubyntlm (0.3.4)
73
- thor (0.19.1)
74
- thread_safe (0.3.3)
75
- tins (1.3.0)
76
- tzinfo (1.1.0)
77
- thread_safe (~> 0.1)
78
-
79
- PLATFORMS
80
- ruby
81
-
82
- DEPENDENCIES
83
- actionpack (~> 4.1.0)
84
- activeresource (~> 4.0.0)
85
- activesupport (~> 4.1.0)
86
- amatch
87
- api-auth!
88
- appraisal
89
- curb (~> 0.8.1)
90
- faraday
91
- httpi
92
- multipart-post (~> 2.0)
93
- rake
94
- rest-client (~> 1.6.0)
95
- rspec (~> 3.4)
96
-
97
- BUNDLED WITH
98
- 1.10.6
@@ -1,9 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "actionpack", "~> 4.2.0"
6
- gem "activeresource", "~> 4.0.0"
7
- gem "activesupport", "~> 4.2.0"
8
-
9
- gemspec :path => "../"
@@ -1,115 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- api-auth (1.5.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionpack (4.2.5)
10
- actionview (= 4.2.5)
11
- activesupport (= 4.2.5)
12
- rack (~> 1.6)
13
- rack-test (~> 0.6.2)
14
- rails-dom-testing (~> 1.0, >= 1.0.5)
15
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
16
- actionview (4.2.5)
17
- activesupport (= 4.2.5)
18
- builder (~> 3.1)
19
- erubis (~> 2.7.0)
20
- rails-dom-testing (~> 1.0, >= 1.0.5)
21
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
22
- activemodel (4.2.5)
23
- activesupport (= 4.2.5)
24
- builder (~> 3.1)
25
- activeresource (4.0.0)
26
- activemodel (~> 4.0)
27
- activesupport (~> 4.0)
28
- rails-observers (~> 0.1.1)
29
- activesupport (4.2.5)
30
- i18n (~> 0.7)
31
- json (~> 1.7, >= 1.7.7)
32
- minitest (~> 5.1)
33
- thread_safe (~> 0.3, >= 0.3.4)
34
- tzinfo (~> 1.1)
35
- amatch (0.3.0)
36
- tins (~> 1.0)
37
- appraisal (1.0.0)
38
- bundler
39
- rake
40
- thor (>= 0.14.0)
41
- builder (3.2.2)
42
- curb (0.8.6)
43
- diff-lcs (1.2.5)
44
- erubis (2.7.0)
45
- faraday (0.9.1)
46
- multipart-post (>= 1.2, < 3)
47
- httpi (2.1.0)
48
- rack
49
- rubyntlm (~> 0.3.2)
50
- i18n (0.7.0)
51
- json (1.8.3)
52
- loofah (2.0.3)
53
- nokogiri (>= 1.5.9)
54
- mime-types (2.6.2)
55
- mini_portile (0.6.2)
56
- minitest (5.8.2)
57
- multipart-post (2.0.0)
58
- nokogiri (1.6.6.2)
59
- mini_portile (~> 0.6.0)
60
- rack (1.6.4)
61
- rack-test (0.6.3)
62
- rack (>= 1.0)
63
- rails-deprecated_sanitizer (1.0.3)
64
- activesupport (>= 4.2.0.alpha)
65
- rails-dom-testing (1.0.7)
66
- activesupport (>= 4.2.0.beta, < 5.0)
67
- nokogiri (~> 1.6.0)
68
- rails-deprecated_sanitizer (>= 1.0.1)
69
- rails-html-sanitizer (1.0.2)
70
- loofah (~> 2.0)
71
- rails-observers (0.1.2)
72
- activemodel (~> 4.0)
73
- rake (10.4.2)
74
- rest-client (1.6.7)
75
- mime-types (>= 1.16)
76
- rspec (3.4.0)
77
- rspec-core (~> 3.4.0)
78
- rspec-expectations (~> 3.4.0)
79
- rspec-mocks (~> 3.4.0)
80
- rspec-core (3.4.0)
81
- rspec-support (~> 3.4.0)
82
- rspec-expectations (3.4.0)
83
- diff-lcs (>= 1.2.0, < 2.0)
84
- rspec-support (~> 3.4.0)
85
- rspec-mocks (3.4.0)
86
- diff-lcs (>= 1.2.0, < 2.0)
87
- rspec-support (~> 3.4.0)
88
- rspec-support (3.4.0)
89
- rubyntlm (0.3.4)
90
- thor (0.19.1)
91
- thread_safe (0.3.5)
92
- tins (1.6.0)
93
- tzinfo (1.2.2)
94
- thread_safe (~> 0.1)
95
-
96
- PLATFORMS
97
- ruby
98
-
99
- DEPENDENCIES
100
- actionpack (~> 4.2.0)
101
- activeresource (~> 4.0.0)
102
- activesupport (~> 4.2.0)
103
- amatch
104
- api-auth!
105
- appraisal
106
- curb (~> 0.8.1)
107
- faraday
108
- httpi
109
- multipart-post (~> 2.0)
110
- rake
111
- rest-client (~> 1.6.0)
112
- rspec (~> 3.4)
113
-
114
- BUNDLED WITH
115
- 1.10.6