We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df7e841 commit 79faeb9Copy full SHA for 79faeb9
Gemfile.lock
@@ -5,8 +5,9 @@ PATH
5
activesupport (>= 3.0.0)
6
coderay (>= 1.0.7.rc1)
7
i18n (>= 0.1.0)
8
- json (>= 1.4.0)
9
- mustache (>= 0.99.0)
+ json (>= 1.4.6)
+ mustache (>= 0.99.4)
10
+ rack-oauth2 (>= 0.14.4)
11
rspec (>= 2.6.0)
12
webmock (>= 1.7.0)
13
@@ -102,7 +103,6 @@ DEPENDENCIES
102
103
aruba
104
capybara
105
fakefs
- rack-oauth2
106
rake
107
rspec_api_documentation!
108
sinatra
lib/rspec_api_documentation/oauth2_mac_client.rb
@@ -1,4 +1,8 @@
1
-require "active_support/secure_random"
+begin
2
+ require "active_support/secure_random"
3
+rescue LoadError
4
+ # ActiveSupport::SecureRandom not provided in activesupport >= 3.2
+end
require "rack/oauth2"
module RspecApiDocumentation
0 commit comments