1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #22789 from prathamesh-sonpatki/fix-thor-default-type-error

Changed default value of `:rc` option to `nil`
This commit is contained in:
Yves Senn 2015-12-25 13:04:47 +01:00
commit 0c973c3920

View file

@ -75,7 +75,7 @@ module Rails
class_option :edge, type: :boolean, default: false,
desc: "Setup the #{name} with Gemfile pointing to Rails repository"
class_option :rc, type: :string, default: false,
class_option :rc, type: :string, default: nil,
desc: "Path to file containing extra configuration options for rails command"
class_option :no_rc, type: :boolean, default: false,