Pin thor to prevent accidental upgrades
Thor was upgraded again in #7345, but there are still "warnings" looking like errors when using "db:migrate" for example. So lets pin it until it is safe to upgrade. closes #7351
This commit is contained in:
parent
8e4261100b
commit
10935d623b
2 changed files with 8 additions and 1 deletions
6
Gemfile
6
Gemfile
|
|
@ -203,6 +203,12 @@ gem "minitest"
|
||||||
|
|
||||||
gem "versionist", "1.5.0"
|
gem "versionist", "1.5.0"
|
||||||
|
|
||||||
|
# Prevent accidental upgrades of thor
|
||||||
|
# TODO: remove this when either all gems depending on thor have fixed the warnings
|
||||||
|
# or thor released a version where they are clearly marked as warnings
|
||||||
|
# see: https://github.com/erikhuda/thor/issues/538
|
||||||
|
gem "thor", "0.19.1"
|
||||||
|
|
||||||
# Windows and OSX have an execjs compatible runtime built-in, Linux users should
|
# Windows and OSX have an execjs compatible runtime built-in, Linux users should
|
||||||
# install Node.js or use "therubyracer".
|
# install Node.js or use "therubyracer".
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -715,7 +715,7 @@ GEM
|
||||||
unicode-display_width (~> 1.1.1)
|
unicode-display_width (~> 1.1.1)
|
||||||
test_after_commit (1.1.0)
|
test_after_commit (1.1.0)
|
||||||
activerecord (>= 3.2)
|
activerecord (>= 3.2)
|
||||||
thor (0.19.4)
|
thor (0.19.1)
|
||||||
thread_safe (0.3.6)
|
thread_safe (0.3.6)
|
||||||
tilt (1.4.1)
|
tilt (1.4.1)
|
||||||
timecop (0.8.1)
|
timecop (0.8.1)
|
||||||
|
|
@ -913,6 +913,7 @@ DEPENDENCIES
|
||||||
spring-commands-rspec (= 1.0.4)
|
spring-commands-rspec (= 1.0.4)
|
||||||
string-direction (= 1.2.0)
|
string-direction (= 1.2.0)
|
||||||
test_after_commit (= 1.1.0)
|
test_after_commit (= 1.1.0)
|
||||||
|
thor (= 0.19.1)
|
||||||
timecop (= 0.8.1)
|
timecop (= 0.8.1)
|
||||||
turbo_dev_assets (= 0.0.2)
|
turbo_dev_assets (= 0.0.2)
|
||||||
twitter (= 6.1.0)
|
twitter (= 6.1.0)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue