Skip to content

Commit

Permalink
chore(deps): update dependencies + silence deprecation warnings in specs
Browse files Browse the repository at this point in the history
  • Loading branch information
booleanbetrayal committed Jul 11, 2016
1 parent 4175042 commit 21f601d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
27 changes: 14 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ PATH
remote: .
specs:
devise_token_auth (0.1.37)
devise (> 3.5.2, < 4.1)
devise (> 3.5.2, <= 4.2)
rails (< 6)

GEM
Expand Down Expand Up @@ -81,21 +81,20 @@ GEM
arel (6.0.3)
attr_encrypted (1.3.5)
encryptor (~> 1.3.0)
bcrypt (3.1.10)
bcrypt (3.1.11)
builder (3.2.2)
codeclimate-test-reporter (0.4.8)
simplecov (>= 0.7.1, < 1.0.0)
coderay (1.1.0)
colorize (0.7.7)
concurrent-ruby (1.0.0)
concurrent-ruby (1.0.2)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (3.5.5)
devise (4.2.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
railties (>= 4.1.0, < 5.1)
responders
thread_safe (~> 0.1)
warden (~> 1.2.3)
docile (1.1.5)
encryptor (1.3.0)
Expand Down Expand Up @@ -142,11 +141,13 @@ GEM
loofah (2.0.3)
nokogiri (>= 1.5.9)
lumberjack (1.0.10)
mail (2.6.3)
mime-types (>= 1.16, < 3)
mail (2.6.4)
mime-types (>= 1.16, < 4)
metaclass (0.0.4)
method_source (0.8.2)
mime-types (2.99)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
mini_portile2 (2.0.0)
minitest (5.8.4)
minitest-focus (1.1.2)
Expand Down Expand Up @@ -224,7 +225,7 @@ GEM
rb-fsevent (0.9.7)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
responders (2.1.1)
responders (2.2.0)
railties (>= 4.2.0, < 5.1)
ruby-progressbar (1.7.5)
shellany (0.0.1)
Expand All @@ -234,10 +235,10 @@ GEM
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
slop (3.6.0)
sprockets (3.5.2)
sprockets (3.6.3)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.0.0)
sprockets-rails (3.1.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
Expand All @@ -246,7 +247,7 @@ GEM
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
warden (1.2.4)
warden (1.2.6)
rack (>= 1.0)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion devise_token_auth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.test_files.reject! { |file| file.match(/[.log|.sqlite3]$/) }

s.add_dependency "rails", "< 6"
s.add_dependency "devise", "> 3.5.2", "<= 4.1.1"
s.add_dependency "devise", "> 3.5.2", "<= 4.2"

s.add_development_dependency "sqlite3", "~> 1.3"
s.add_development_dependency 'pg'
Expand Down
2 changes: 2 additions & 0 deletions test/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@ class Application < Rails::Application
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
config.autoload_paths << Rails.root.join('lib')

config.active_record.raise_in_transactional_callbacks = true
end
end
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def expire_token(user, client_id)
end

class ActionController::TestCase
include Devise::TestHelpers
include Devise::Test::ControllerHelpers

setup do
@routes = Dummy::Application.routes
Expand Down

0 comments on commit 21f601d

Please sign in to comment.