api_user_auth 0.1.2 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api_user_auth/auth_controller.rb +5 -2
- data/app/models/api_user_auth/auth_user.rb +2 -1
- data/app/models/api_user_auth/provider_token.rb +9 -5
- data/lib/api_user_auth/version.rb +1 -1
- data/spec/controllers/api_user_auth/auth_controller_spec.rb +6 -0
- data/spec/dummy/log/test.log +4600 -0
- data/spec/rails_helper.rb +1 -0
- metadata +1 -1
data/spec/rails_helper.rb
CHANGED
@@ -9,6 +9,7 @@ abort("The Rails environment is running in production mode!") if Rails.env.produ
|
|
9
9
|
require 'rspec/rails'
|
10
10
|
# Add additional requires below this line. Rails is not loaded until this point!
|
11
11
|
Dir[File.expand_path('../support/**/*.rb', __FILE__)].each { |f| require f }
|
12
|
+
Dir[File.expand_path('../stubs/**/*.rb', __FILE__)].each { |f| require f }
|
12
13
|
|
13
14
|
# Requires supporting ruby files with custom matchers and macros, etc, in
|
14
15
|
# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
|